@guideveloper/design-assets 0.1.12 → 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 +158 -2
- package/dist/index.d.ts +158 -2
- package/dist/index.js +177 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +176 -12
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
- package/src/components/icons/IconAtom.tsx +1 -1
- package/src/metadata/index.ts +175 -6
package/dist/index.d.ts
CHANGED
|
@@ -58,13 +58,14 @@ declare const AnimationPulse: React.FC<{
|
|
|
58
58
|
className?: string;
|
|
59
59
|
} & Partial<React.ComponentProps<typeof Lottie>>>;
|
|
60
60
|
|
|
61
|
+
declare const packageVersion: "0.1.13";
|
|
61
62
|
declare const icons: readonly [{
|
|
62
63
|
readonly name: "ambulance";
|
|
63
64
|
readonly tags: readonly ["vehicle", "car", "hospital", "ward", "doctor", "rescuer"];
|
|
64
65
|
readonly description: "";
|
|
65
66
|
}, {
|
|
66
67
|
readonly name: "atom";
|
|
67
|
-
readonly tags: readonly [
|
|
68
|
+
readonly tags: readonly [];
|
|
68
69
|
readonly description: "";
|
|
69
70
|
}, {
|
|
70
71
|
readonly name: "cable-car";
|
|
@@ -133,8 +134,163 @@ declare const animations: readonly [{
|
|
|
133
134
|
readonly loop: true;
|
|
134
135
|
readonly tags: readonly ["circle", "pulsing"];
|
|
135
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
|
+
}];
|
|
136
291
|
type IconMetadata = typeof icons[number];
|
|
137
292
|
type IllustrationMetadata = typeof illustrations[number];
|
|
138
293
|
type AnimationMetadata = typeof animations[number];
|
|
294
|
+
type AssetVersionMetadata = typeof assetVersions[number];
|
|
139
295
|
|
|
140
|
-
export { AnimationBounce, AnimationCardOrderSuccess, AnimationCheckEmail, 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 };
|
package/dist/index.js
CHANGED
|
@@ -14,11 +14,7 @@ var IconAmbulance = (props) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { xmlns: "
|
|
|
14
14
|
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 17h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5" }),
|
|
15
15
|
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 10h4m-2 -2v4" })
|
|
16
16
|
] });
|
|
17
|
-
var IconAtom = (props) => /* @__PURE__ */ jsxRuntime.
|
|
18
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 12v.01" }),
|
|
19
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.071 4.929c-1.562 -1.562 -6 .337 -9.9 4.243c-3.905 3.905 -5.804 8.337 -4.242 9.9c1.562 1.561 6 -.338 9.9 -4.244c3.905 -3.905 5.804 -8.337 4.242 -9.9" }),
|
|
20
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.929 4.929c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242c1.561 -1.562 -.338 -6 -4.244 -9.9c-3.905 -3.905 -8.337 -5.804 -9.9 -4.242" })
|
|
21
|
-
] });
|
|
17
|
+
var IconAtom = (props) => /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 640 640", width: "1em", height: "1em", role: "img", ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M320 462.8C308.2 467.9 296.6 472.5 285.1 476.3C301.8 510.1 316.1 512 320 512C323.9 512 338.1 510.1 354.9 476.3C343.5 472.4 331.8 467.9 320 462.8zM510 320C543 365.2 554.3 410.9 533.6 448C513.4 484.3 471.1 497.3 418.4 491.2C396.4 543.3 362.7 576 320 576C277.3 576 243.6 543.3 221.6 491.2C168.9 497.3 126.6 484.3 106.4 448C85.7 410.9 97 365.2 130 320C97 274.8 85.7 229.1 106.4 192C126.6 155.7 168.9 142.7 221.6 148.8C243.6 96.7 277.2 64 320 64C362.8 64 396.4 96.7 418.4 148.8C471.1 142.7 513.4 155.6 533.6 192C554.3 229.1 543 274.8 510 320zM444.2 387.4C442.5 401.6 440.3 415.4 437.5 428.6C469.3 430 476.1 419.9 477.7 416.9C480 412.7 484.7 399 465.8 368.8C459 375.1 451.8 381.3 444.2 387.4zM437.5 211.5C440.3 224.6 442.5 238.4 444.2 252.7C451.8 258.8 459 265 465.8 271.3C484.7 241.1 480 227.3 477.7 223.2C476.1 220.3 469.3 210.2 437.5 211.5zM354.9 163.7C338.1 129.9 323.9 128 320 128C316.1 128 301.9 129.9 285.1 163.7C296.5 167.6 308.2 172.1 320 177.2C331.8 172.1 343.4 167.5 354.9 163.7zM195.9 252.6C197.6 238.3 199.8 224.6 202.6 211.4C170.8 210 164 220.1 162.4 223.1C160.1 227.3 155.4 241 174.3 271.2C181.1 264.9 188.3 258.7 195.9 252.6zM174.2 368.8C155.3 399 160 412.8 162.3 416.9C163.9 419.8 170.7 429.9 202.5 428.6C199.7 415.5 197.5 401.7 195.8 387.4C188.2 381.3 181 375.1 174.2 368.8zM400 320C400 275.8 364.2 240 320 240C275.8 240 240 275.8 240 320C240 364.2 275.8 400 320 400C364.2 400 400 364.2 400 320zM320 288C337.7 288 352 302.3 352 320C352 337.7 337.7 352 320 352C302.3 352 288 337.7 288 320C288 302.3 302.3 288 320 288z" }) });
|
|
22
18
|
var IconCableCar = (props) => /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", stroke: "#000000", strokeWidth: 1.25, strokeLinecap: "round", strokeLinejoin: "round", role: "img", ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 5l16 -2m-8 1v10m-5.106 -6h10.306c2.45 3 2.45 9 -.2 12h-10.106c-2.544 -3 -2.544 -9 0 -12zm-1.894 6h14" }) });
|
|
23
19
|
var IconCheeseIcon2 = (props) => /* @__PURE__ */ jsxRuntime.jsx("svg", { className: "w-6 h-6 text-gray-800 dark:text-white", "aria-hidden": "true", xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "m4 12 6.4267-4.65924c.6372.89667 1.8922 1.10897 2.7888.4718.8967-.63718 1.3493-1.69135.4681-2.80084C13.6373 4.95345 14.9106 4 15 4c.0894 0 5 1 5 8M4 12h16M4 12v8h16v-8M8 15h.01M12 17h.01M16 15h.01" }) });
|
|
24
20
|
var IconCheeseIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx("svg", { className: "w-6 h-6 text-gray-800 dark:text-white", "aria-hidden": "true", xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "m4 12 6.4267-4.65924c.6372.89667 1.8922 1.10897 2.7888.4718.8967-.63718 1.3493-1.69135.4681-2.80084C13.6373 4.95345 14.9106 4 15 4c.0894 0 5 1 5 8M4 12h16M4 12v8h16v-8M8 15h.01M12 17h.01M16 15h.01" }) });
|
|
@@ -35971,6 +35967,7 @@ var AnimationPulse = ({ loop = true, autoplay = true, ...rest }) => {
|
|
|
35971
35967
|
};
|
|
35972
35968
|
|
|
35973
35969
|
// src/metadata/index.ts
|
|
35970
|
+
var packageVersion = "0.1.13";
|
|
35974
35971
|
var icons = [
|
|
35975
35972
|
{
|
|
35976
35973
|
"name": "ambulance",
|
|
@@ -35986,12 +35983,7 @@ var icons = [
|
|
|
35986
35983
|
},
|
|
35987
35984
|
{
|
|
35988
35985
|
"name": "atom",
|
|
35989
|
-
"tags": [
|
|
35990
|
-
"unit",
|
|
35991
|
-
"element",
|
|
35992
|
-
"part",
|
|
35993
|
-
"electrons"
|
|
35994
|
-
],
|
|
35986
|
+
"tags": [],
|
|
35995
35987
|
"description": ""
|
|
35996
35988
|
},
|
|
35997
35989
|
{
|
|
@@ -36116,6 +36108,178 @@ var animations = [
|
|
|
36116
36108
|
]
|
|
36117
36109
|
}
|
|
36118
36110
|
];
|
|
36111
|
+
var assetVersions = [
|
|
36112
|
+
{
|
|
36113
|
+
"type": "icon",
|
|
36114
|
+
"name": "ambulance",
|
|
36115
|
+
"version": 1,
|
|
36116
|
+
"packageVersion": "0.1.13",
|
|
36117
|
+
"extension": "svg",
|
|
36118
|
+
"assetPath": "assets/icons/ambulance.svg",
|
|
36119
|
+
"metaPath": "assets/icons/ambulance.json",
|
|
36120
|
+
"isLatest": true
|
|
36121
|
+
},
|
|
36122
|
+
{
|
|
36123
|
+
"type": "icon",
|
|
36124
|
+
"name": "atom",
|
|
36125
|
+
"version": 2,
|
|
36126
|
+
"packageVersion": "0.1.13",
|
|
36127
|
+
"extension": "svg",
|
|
36128
|
+
"assetPath": "assets/icons/versions/atom/v2.svg",
|
|
36129
|
+
"metaPath": "assets/icons/versions/atom/v2.json",
|
|
36130
|
+
"isLatest": true
|
|
36131
|
+
},
|
|
36132
|
+
{
|
|
36133
|
+
"type": "icon",
|
|
36134
|
+
"name": "atom",
|
|
36135
|
+
"version": 1,
|
|
36136
|
+
"packageVersion": "0.1.13",
|
|
36137
|
+
"extension": "svg",
|
|
36138
|
+
"assetPath": "assets/icons/versions/atom/v1.svg",
|
|
36139
|
+
"metaPath": "assets/icons/versions/atom/v1.json",
|
|
36140
|
+
"isLatest": false
|
|
36141
|
+
},
|
|
36142
|
+
{
|
|
36143
|
+
"type": "icon",
|
|
36144
|
+
"name": "cable-car",
|
|
36145
|
+
"version": 1,
|
|
36146
|
+
"packageVersion": "0.1.13",
|
|
36147
|
+
"extension": "svg",
|
|
36148
|
+
"assetPath": "assets/icons/cable-car.svg",
|
|
36149
|
+
"metaPath": "assets/icons/cable-car.json",
|
|
36150
|
+
"isLatest": true
|
|
36151
|
+
},
|
|
36152
|
+
{
|
|
36153
|
+
"type": "icon",
|
|
36154
|
+
"name": "cheese-icon-2",
|
|
36155
|
+
"version": 1,
|
|
36156
|
+
"packageVersion": "0.1.13",
|
|
36157
|
+
"extension": "svg",
|
|
36158
|
+
"assetPath": "assets/icons/cheese-icon-2.svg",
|
|
36159
|
+
"metaPath": "assets/icons/cheese-icon-2.json",
|
|
36160
|
+
"isLatest": true
|
|
36161
|
+
},
|
|
36162
|
+
{
|
|
36163
|
+
"type": "icon",
|
|
36164
|
+
"name": "cheese-icon",
|
|
36165
|
+
"version": 1,
|
|
36166
|
+
"packageVersion": "0.1.13",
|
|
36167
|
+
"extension": "svg",
|
|
36168
|
+
"assetPath": "assets/icons/cheese-icon.svg",
|
|
36169
|
+
"metaPath": "assets/icons/cheese-icon.json",
|
|
36170
|
+
"isLatest": true
|
|
36171
|
+
},
|
|
36172
|
+
{
|
|
36173
|
+
"type": "icon",
|
|
36174
|
+
"name": "heart-activity",
|
|
36175
|
+
"version": 1,
|
|
36176
|
+
"packageVersion": "0.1.13",
|
|
36177
|
+
"extension": "svg",
|
|
36178
|
+
"assetPath": "assets/icons/heart-activity.svg",
|
|
36179
|
+
"metaPath": "assets/icons/heart-activity.json",
|
|
36180
|
+
"isLatest": true
|
|
36181
|
+
},
|
|
36182
|
+
{
|
|
36183
|
+
"type": "icon",
|
|
36184
|
+
"name": "search",
|
|
36185
|
+
"version": 1,
|
|
36186
|
+
"packageVersion": "0.1.13",
|
|
36187
|
+
"extension": "svg",
|
|
36188
|
+
"assetPath": "assets/icons/search.svg",
|
|
36189
|
+
"metaPath": "assets/icons/search.json",
|
|
36190
|
+
"isLatest": true
|
|
36191
|
+
},
|
|
36192
|
+
{
|
|
36193
|
+
"type": "illustration",
|
|
36194
|
+
"name": "rooster-head",
|
|
36195
|
+
"version": 1,
|
|
36196
|
+
"packageVersion": "0.1.13",
|
|
36197
|
+
"extension": "svg",
|
|
36198
|
+
"assetPath": "assets/illustrations/rooster-head.svg",
|
|
36199
|
+
"metaPath": "assets/illustrations/rooster-head.json",
|
|
36200
|
+
"isLatest": true
|
|
36201
|
+
},
|
|
36202
|
+
{
|
|
36203
|
+
"type": "illustration",
|
|
36204
|
+
"name": "sunrise",
|
|
36205
|
+
"version": 1,
|
|
36206
|
+
"packageVersion": "0.1.13",
|
|
36207
|
+
"extension": "svg",
|
|
36208
|
+
"assetPath": "assets/illustrations/sunrise.svg",
|
|
36209
|
+
"metaPath": "assets/illustrations/sunrise.json",
|
|
36210
|
+
"isLatest": true
|
|
36211
|
+
},
|
|
36212
|
+
{
|
|
36213
|
+
"type": "illustration",
|
|
36214
|
+
"name": "svg-icon",
|
|
36215
|
+
"version": 1,
|
|
36216
|
+
"packageVersion": "0.1.13",
|
|
36217
|
+
"extension": "png",
|
|
36218
|
+
"assetPath": "assets/illustrations/svg-icon.png",
|
|
36219
|
+
"metaPath": "assets/illustrations/svg-icon.json",
|
|
36220
|
+
"isLatest": true
|
|
36221
|
+
},
|
|
36222
|
+
{
|
|
36223
|
+
"type": "animation",
|
|
36224
|
+
"name": "bounce",
|
|
36225
|
+
"version": 1,
|
|
36226
|
+
"packageVersion": "0.1.13",
|
|
36227
|
+
"extension": "json",
|
|
36228
|
+
"assetPath": "assets/animations/bounce.json",
|
|
36229
|
+
"metaPath": "assets/animations/bounce.meta.json",
|
|
36230
|
+
"isLatest": true
|
|
36231
|
+
},
|
|
36232
|
+
{
|
|
36233
|
+
"type": "animation",
|
|
36234
|
+
"name": "card-order-success",
|
|
36235
|
+
"version": 1,
|
|
36236
|
+
"packageVersion": "0.1.13",
|
|
36237
|
+
"extension": "json",
|
|
36238
|
+
"assetPath": "assets/animations/card-order-success.json",
|
|
36239
|
+
"metaPath": "assets/animations/card-order-success.meta.json",
|
|
36240
|
+
"isLatest": true
|
|
36241
|
+
},
|
|
36242
|
+
{
|
|
36243
|
+
"type": "animation",
|
|
36244
|
+
"name": "check-email",
|
|
36245
|
+
"version": 1,
|
|
36246
|
+
"packageVersion": "0.1.13",
|
|
36247
|
+
"extension": "json",
|
|
36248
|
+
"assetPath": "assets/animations/check-email.json",
|
|
36249
|
+
"metaPath": "assets/animations/check-email.meta.json",
|
|
36250
|
+
"isLatest": true
|
|
36251
|
+
},
|
|
36252
|
+
{
|
|
36253
|
+
"type": "animation",
|
|
36254
|
+
"name": "loading-hourglass-purple",
|
|
36255
|
+
"version": 1,
|
|
36256
|
+
"packageVersion": "0.1.13",
|
|
36257
|
+
"extension": "json",
|
|
36258
|
+
"assetPath": "assets/animations/loading-hourglass-purple.json",
|
|
36259
|
+
"metaPath": "assets/animations/loading-hourglass-purple.meta.json",
|
|
36260
|
+
"isLatest": true
|
|
36261
|
+
},
|
|
36262
|
+
{
|
|
36263
|
+
"type": "animation",
|
|
36264
|
+
"name": "pleased-to-meet-you",
|
|
36265
|
+
"version": 1,
|
|
36266
|
+
"packageVersion": "0.1.13",
|
|
36267
|
+
"extension": "json",
|
|
36268
|
+
"assetPath": "assets/animations/pleased-to-meet-you.json",
|
|
36269
|
+
"metaPath": "assets/animations/pleased-to-meet-you.meta.json",
|
|
36270
|
+
"isLatest": true
|
|
36271
|
+
},
|
|
36272
|
+
{
|
|
36273
|
+
"type": "animation",
|
|
36274
|
+
"name": "pulse",
|
|
36275
|
+
"version": 1,
|
|
36276
|
+
"packageVersion": "0.1.13",
|
|
36277
|
+
"extension": "json",
|
|
36278
|
+
"assetPath": "assets/animations/pulse.json",
|
|
36279
|
+
"metaPath": "assets/animations/pulse.meta.json",
|
|
36280
|
+
"isLatest": true
|
|
36281
|
+
}
|
|
36282
|
+
];
|
|
36119
36283
|
|
|
36120
36284
|
exports.AnimationBounce = AnimationBounce;
|
|
36121
36285
|
exports.AnimationCardOrderSuccess = AnimationCardOrderSuccess;
|
|
@@ -36134,7 +36298,9 @@ exports.IllustrationRoosterHead = IllustrationRoosterHead;
|
|
|
36134
36298
|
exports.IllustrationSunrise = IllustrationSunrise;
|
|
36135
36299
|
exports.IllustrationSvgIcon = IllustrationSvgIcon;
|
|
36136
36300
|
exports.animations = animations;
|
|
36301
|
+
exports.assetVersions = assetVersions;
|
|
36137
36302
|
exports.icons = icons;
|
|
36138
36303
|
exports.illustrations = illustrations;
|
|
36304
|
+
exports.packageVersion = packageVersion;
|
|
36139
36305
|
//# sourceMappingURL=out.js.map
|
|
36140
36306
|
//# sourceMappingURL=index.js.map
|