@guideveloper/design-assets 0.1.7 → 0.1.8
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 +13362 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13362 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/animations/AnimationCardordersuccess.tsx +13360 -0
- package/src/components/index.ts +1 -0
- package/src/metadata/index.ts +6 -0
package/dist/index.d.mts
CHANGED
|
@@ -28,6 +28,12 @@ declare const AnimationBounce: React.FC<{
|
|
|
28
28
|
className?: string;
|
|
29
29
|
} & Partial<React.ComponentProps<typeof Lottie>>>;
|
|
30
30
|
|
|
31
|
+
declare const AnimationCardordersuccess: React.FC<{
|
|
32
|
+
loop?: boolean;
|
|
33
|
+
autoplay?: boolean;
|
|
34
|
+
className?: string;
|
|
35
|
+
} & Partial<React.ComponentProps<typeof Lottie>>>;
|
|
36
|
+
|
|
31
37
|
declare const AnimationPulse: React.FC<{
|
|
32
38
|
loop?: boolean;
|
|
33
39
|
autoplay?: boolean;
|
|
@@ -83,6 +89,11 @@ declare const animations: readonly [{
|
|
|
83
89
|
readonly loop: true;
|
|
84
90
|
readonly tags: readonly ["motion", "loop"];
|
|
85
91
|
readonly description: "Simple bouncing ball animation";
|
|
92
|
+
}, {
|
|
93
|
+
readonly name: "cardordersuccess";
|
|
94
|
+
readonly frameRate: 30;
|
|
95
|
+
readonly loop: true;
|
|
96
|
+
readonly tags: readonly [];
|
|
86
97
|
}, {
|
|
87
98
|
readonly name: "pulse";
|
|
88
99
|
readonly frameRate: 30;
|
|
@@ -93,4 +104,4 @@ type IconMetadata = typeof icons[number];
|
|
|
93
104
|
type IllustrationMetadata = typeof illustrations[number];
|
|
94
105
|
type AnimationMetadata = typeof animations[number];
|
|
95
106
|
|
|
96
|
-
export { AnimationBounce, AnimationMetadata, AnimationPulse, IconAmbulance, IconAtom, IconCableCar, IconCheeseIcon, IconCheeseIcon2, IconHeartActivity, IconMetadata, IconSearch, IllustrationMetadata, IllustrationRoosterHead, IllustrationSunrise, IllustrationSvgIcon, animations, icons, illustrations };
|
|
107
|
+
export { AnimationBounce, AnimationCardordersuccess, AnimationMetadata, AnimationPulse, IconAmbulance, IconAtom, IconCableCar, IconCheeseIcon, IconCheeseIcon2, IconHeartActivity, IconMetadata, IconSearch, IllustrationMetadata, IllustrationRoosterHead, IllustrationSunrise, IllustrationSvgIcon, animations, icons, illustrations };
|
package/dist/index.d.ts
CHANGED
|
@@ -28,6 +28,12 @@ declare const AnimationBounce: React.FC<{
|
|
|
28
28
|
className?: string;
|
|
29
29
|
} & Partial<React.ComponentProps<typeof Lottie>>>;
|
|
30
30
|
|
|
31
|
+
declare const AnimationCardordersuccess: React.FC<{
|
|
32
|
+
loop?: boolean;
|
|
33
|
+
autoplay?: boolean;
|
|
34
|
+
className?: string;
|
|
35
|
+
} & Partial<React.ComponentProps<typeof Lottie>>>;
|
|
36
|
+
|
|
31
37
|
declare const AnimationPulse: React.FC<{
|
|
32
38
|
loop?: boolean;
|
|
33
39
|
autoplay?: boolean;
|
|
@@ -83,6 +89,11 @@ declare const animations: readonly [{
|
|
|
83
89
|
readonly loop: true;
|
|
84
90
|
readonly tags: readonly ["motion", "loop"];
|
|
85
91
|
readonly description: "Simple bouncing ball animation";
|
|
92
|
+
}, {
|
|
93
|
+
readonly name: "cardordersuccess";
|
|
94
|
+
readonly frameRate: 30;
|
|
95
|
+
readonly loop: true;
|
|
96
|
+
readonly tags: readonly [];
|
|
86
97
|
}, {
|
|
87
98
|
readonly name: "pulse";
|
|
88
99
|
readonly frameRate: 30;
|
|
@@ -93,4 +104,4 @@ type IconMetadata = typeof icons[number];
|
|
|
93
104
|
type IllustrationMetadata = typeof illustrations[number];
|
|
94
105
|
type AnimationMetadata = typeof animations[number];
|
|
95
106
|
|
|
96
|
-
export { AnimationBounce, AnimationMetadata, AnimationPulse, IconAmbulance, IconAtom, IconCableCar, IconCheeseIcon, IconCheeseIcon2, IconHeartActivity, IconMetadata, IconSearch, IllustrationMetadata, IllustrationRoosterHead, IllustrationSunrise, IllustrationSvgIcon, animations, icons, illustrations };
|
|
107
|
+
export { AnimationBounce, AnimationCardordersuccess, AnimationMetadata, AnimationPulse, IconAmbulance, IconAtom, IconCableCar, IconCheeseIcon, IconCheeseIcon2, IconHeartActivity, IconMetadata, IconSearch, IllustrationMetadata, IllustrationRoosterHead, IllustrationSunrise, IllustrationSvgIcon, animations, icons, illustrations };
|