@guideveloper/design-assets 0.1.11 → 0.1.12
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/dist/index.d.mts +12 -1
- package/dist/index.d.ts +12 -1
- package/dist/index.js +8823 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8823 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/animations/AnimationCheckEmail.tsx +8817 -0
- package/src/components/index.ts +1 -0
- package/src/metadata/index.ts +6 -0
package/dist/index.d.mts
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;
|
|
@@ -106,6 +112,11 @@ declare const animations: readonly [{
|
|
|
106
112
|
readonly frameRate: 30;
|
|
107
113
|
readonly loop: true;
|
|
108
114
|
readonly tags: readonly [];
|
|
115
|
+
}, {
|
|
116
|
+
readonly name: "check-email";
|
|
117
|
+
readonly frameRate: 30;
|
|
118
|
+
readonly loop: true;
|
|
119
|
+
readonly tags: readonly [];
|
|
109
120
|
}, {
|
|
110
121
|
readonly name: "loading-hourglass-purple";
|
|
111
122
|
readonly frameRate: 30;
|
|
@@ -126,4 +137,4 @@ type IconMetadata = typeof icons[number];
|
|
|
126
137
|
type IllustrationMetadata = typeof illustrations[number];
|
|
127
138
|
type AnimationMetadata = typeof animations[number];
|
|
128
139
|
|
|
129
|
-
export { AnimationBounce, AnimationCardOrderSuccess, AnimationLoadingHourglassPurple, AnimationMetadata, AnimationPleasedToMeetYou, AnimationPulse, IconAmbulance, IconAtom, IconCableCar, IconCheeseIcon, IconCheeseIcon2, IconHeartActivity, IconMetadata, IconSearch, IllustrationMetadata, IllustrationRoosterHead, IllustrationSunrise, IllustrationSvgIcon, animations, icons, illustrations };
|
|
140
|
+
export { AnimationBounce, AnimationCardOrderSuccess, AnimationCheckEmail, AnimationLoadingHourglassPurple, AnimationMetadata, AnimationPleasedToMeetYou, AnimationPulse, IconAmbulance, IconAtom, IconCableCar, IconCheeseIcon, IconCheeseIcon2, IconHeartActivity, IconMetadata, IconSearch, IllustrationMetadata, IllustrationRoosterHead, IllustrationSunrise, IllustrationSvgIcon, animations, icons, illustrations };
|
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;
|
|
@@ -106,6 +112,11 @@ declare const animations: readonly [{
|
|
|
106
112
|
readonly frameRate: 30;
|
|
107
113
|
readonly loop: true;
|
|
108
114
|
readonly tags: readonly [];
|
|
115
|
+
}, {
|
|
116
|
+
readonly name: "check-email";
|
|
117
|
+
readonly frameRate: 30;
|
|
118
|
+
readonly loop: true;
|
|
119
|
+
readonly tags: readonly [];
|
|
109
120
|
}, {
|
|
110
121
|
readonly name: "loading-hourglass-purple";
|
|
111
122
|
readonly frameRate: 30;
|
|
@@ -126,4 +137,4 @@ type IconMetadata = typeof icons[number];
|
|
|
126
137
|
type IllustrationMetadata = typeof illustrations[number];
|
|
127
138
|
type AnimationMetadata = typeof animations[number];
|
|
128
139
|
|
|
129
|
-
export { AnimationBounce, AnimationCardOrderSuccess, AnimationLoadingHourglassPurple, AnimationMetadata, AnimationPleasedToMeetYou, AnimationPulse, IconAmbulance, IconAtom, IconCableCar, IconCheeseIcon, IconCheeseIcon2, IconHeartActivity, IconMetadata, IconSearch, IllustrationMetadata, IllustrationRoosterHead, IllustrationSunrise, IllustrationSvgIcon, animations, icons, illustrations };
|
|
140
|
+
export { AnimationBounce, AnimationCardOrderSuccess, AnimationCheckEmail, AnimationLoadingHourglassPurple, AnimationMetadata, AnimationPleasedToMeetYou, AnimationPulse, IconAmbulance, IconAtom, IconCableCar, IconCheeseIcon, IconCheeseIcon2, IconHeartActivity, IconMetadata, IconSearch, IllustrationMetadata, IllustrationRoosterHead, IllustrationSunrise, IllustrationSvgIcon, animations, icons, illustrations };
|