@guideveloper/design-assets 0.1.9 → 0.1.11
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 +7 -11
- package/dist/index.d.mts +16 -5
- package/dist/index.d.ts +16 -5
- package/dist/index.js +9948 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9946 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -14
- package/src/components/animations/AnimationCardOrderSuccess.tsx +13360 -0
- package/src/components/animations/AnimationCardordersuccess.tsx +2 -2
- package/src/components/animations/AnimationLoadingHourglassPurple.tsx +3491 -0
- package/src/components/animations/AnimationLoadinghourglasspurple.tsx +2 -2
- package/src/components/animations/AnimationPleasedToMeetYou.tsx +9940 -0
- package/src/components/animations/AnimationPleasedtomeetyou.tsx +9940 -0
- package/src/components/index.ts +3 -2
- package/src/metadata/index.ts +8 -2
package/src/components/index.ts
CHANGED
|
@@ -10,6 +10,7 @@ export { IllustrationRoosterHead } from './illustrations/IllustrationRoosterHead
|
|
|
10
10
|
export { IllustrationSunrise } from './illustrations/IllustrationSunrise';
|
|
11
11
|
export { IllustrationSvgIcon } from './illustrations/IllustrationSvgIcon';
|
|
12
12
|
export { AnimationBounce } from './animations/AnimationBounce';
|
|
13
|
-
export {
|
|
14
|
-
export {
|
|
13
|
+
export { AnimationCardOrderSuccess } from './animations/AnimationCardOrderSuccess';
|
|
14
|
+
export { AnimationLoadingHourglassPurple } from './animations/AnimationLoadingHourglassPurple';
|
|
15
|
+
export { AnimationPleasedToMeetYou } from './animations/AnimationPleasedToMeetYou';
|
|
15
16
|
export { AnimationPulse } from './animations/AnimationPulse';
|
package/src/metadata/index.ts
CHANGED
|
@@ -111,13 +111,19 @@ export const animations = [
|
|
|
111
111
|
"description": "Simple bouncing ball animation"
|
|
112
112
|
},
|
|
113
113
|
{
|
|
114
|
-
"name": "
|
|
114
|
+
"name": "card-order-success",
|
|
115
115
|
"frameRate": 30,
|
|
116
116
|
"loop": true,
|
|
117
117
|
"tags": []
|
|
118
118
|
},
|
|
119
119
|
{
|
|
120
|
-
"name": "
|
|
120
|
+
"name": "loading-hourglass-purple",
|
|
121
|
+
"frameRate": 30,
|
|
122
|
+
"loop": true,
|
|
123
|
+
"tags": []
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"name": "pleased-to-meet-you",
|
|
121
127
|
"frameRate": 30,
|
|
122
128
|
"loop": true,
|
|
123
129
|
"tags": []
|