@guideveloper/design-assets 0.1.10 → 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 +7 -7
- package/dist/index.d.ts +7 -7
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -7
- 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 +2 -2
- package/src/components/index.ts +3 -3
- package/src/metadata/index.ts +3 -3
|
@@ -9933,8 +9933,8 @@ const animationData = {
|
|
|
9933
9933
|
]
|
|
9934
9934
|
} as const;
|
|
9935
9935
|
|
|
9936
|
-
const
|
|
9936
|
+
const AnimationPleasedToMeetYou: React.FC<{ loop?: boolean; autoplay?: boolean; className?: string } & Partial<React.ComponentProps<typeof Lottie>>> = ({ loop = true, autoplay = true, ...rest }) => {
|
|
9937
9937
|
return <Lottie animationData={animationData} loop={loop} autoplay={autoplay} {...rest} />;
|
|
9938
9938
|
};
|
|
9939
9939
|
|
|
9940
|
-
export {
|
|
9940
|
+
export { AnimationPleasedToMeetYou };
|
package/src/components/index.ts
CHANGED
|
@@ -10,7 +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 {
|
|
15
|
-
export {
|
|
13
|
+
export { AnimationCardOrderSuccess } from './animations/AnimationCardOrderSuccess';
|
|
14
|
+
export { AnimationLoadingHourglassPurple } from './animations/AnimationLoadingHourglassPurple';
|
|
15
|
+
export { AnimationPleasedToMeetYou } from './animations/AnimationPleasedToMeetYou';
|
|
16
16
|
export { AnimationPulse } from './animations/AnimationPulse';
|
package/src/metadata/index.ts
CHANGED
|
@@ -111,19 +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
121
|
"frameRate": 30,
|
|
122
122
|
"loop": true,
|
|
123
123
|
"tags": []
|
|
124
124
|
},
|
|
125
125
|
{
|
|
126
|
-
"name": "
|
|
126
|
+
"name": "pleased-to-meet-you",
|
|
127
127
|
"frameRate": 30,
|
|
128
128
|
"loop": true,
|
|
129
129
|
"tags": []
|