@guideveloper/design-assets 0.1.8 → 0.1.9
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 +3493 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3493 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/animations/AnimationLoadinghourglasspurple.tsx +3491 -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 AnimationLoadinghourglasspurple: React.FC<{
|
|
38
|
+
loop?: boolean;
|
|
39
|
+
autoplay?: boolean;
|
|
40
|
+
className?: string;
|
|
41
|
+
} & Partial<React.ComponentProps<typeof Lottie>>>;
|
|
42
|
+
|
|
37
43
|
declare const AnimationPulse: React.FC<{
|
|
38
44
|
loop?: boolean;
|
|
39
45
|
autoplay?: boolean;
|
|
@@ -94,6 +100,11 @@ declare const animations: readonly [{
|
|
|
94
100
|
readonly frameRate: 30;
|
|
95
101
|
readonly loop: true;
|
|
96
102
|
readonly tags: readonly [];
|
|
103
|
+
}, {
|
|
104
|
+
readonly name: "loadinghourglasspurple";
|
|
105
|
+
readonly frameRate: 30;
|
|
106
|
+
readonly loop: true;
|
|
107
|
+
readonly tags: readonly [];
|
|
97
108
|
}, {
|
|
98
109
|
readonly name: "pulse";
|
|
99
110
|
readonly frameRate: 30;
|
|
@@ -104,4 +115,4 @@ type IconMetadata = typeof icons[number];
|
|
|
104
115
|
type IllustrationMetadata = typeof illustrations[number];
|
|
105
116
|
type AnimationMetadata = typeof animations[number];
|
|
106
117
|
|
|
107
|
-
export { AnimationBounce, AnimationCardordersuccess, AnimationMetadata, AnimationPulse, IconAmbulance, IconAtom, IconCableCar, IconCheeseIcon, IconCheeseIcon2, IconHeartActivity, IconMetadata, IconSearch, IllustrationMetadata, IllustrationRoosterHead, IllustrationSunrise, IllustrationSvgIcon, animations, icons, illustrations };
|
|
118
|
+
export { AnimationBounce, AnimationCardordersuccess, AnimationLoadinghourglasspurple, AnimationMetadata, 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 AnimationLoadinghourglasspurple: React.FC<{
|
|
38
|
+
loop?: boolean;
|
|
39
|
+
autoplay?: boolean;
|
|
40
|
+
className?: string;
|
|
41
|
+
} & Partial<React.ComponentProps<typeof Lottie>>>;
|
|
42
|
+
|
|
37
43
|
declare const AnimationPulse: React.FC<{
|
|
38
44
|
loop?: boolean;
|
|
39
45
|
autoplay?: boolean;
|
|
@@ -94,6 +100,11 @@ declare const animations: readonly [{
|
|
|
94
100
|
readonly frameRate: 30;
|
|
95
101
|
readonly loop: true;
|
|
96
102
|
readonly tags: readonly [];
|
|
103
|
+
}, {
|
|
104
|
+
readonly name: "loadinghourglasspurple";
|
|
105
|
+
readonly frameRate: 30;
|
|
106
|
+
readonly loop: true;
|
|
107
|
+
readonly tags: readonly [];
|
|
97
108
|
}, {
|
|
98
109
|
readonly name: "pulse";
|
|
99
110
|
readonly frameRate: 30;
|
|
@@ -104,4 +115,4 @@ type IconMetadata = typeof icons[number];
|
|
|
104
115
|
type IllustrationMetadata = typeof illustrations[number];
|
|
105
116
|
type AnimationMetadata = typeof animations[number];
|
|
106
117
|
|
|
107
|
-
export { AnimationBounce, AnimationCardordersuccess, AnimationMetadata, AnimationPulse, IconAmbulance, IconAtom, IconCableCar, IconCheeseIcon, IconCheeseIcon2, IconHeartActivity, IconMetadata, IconSearch, IllustrationMetadata, IllustrationRoosterHead, IllustrationSunrise, IllustrationSvgIcon, animations, icons, illustrations };
|
|
118
|
+
export { AnimationBounce, AnimationCardordersuccess, AnimationLoadinghourglasspurple, AnimationMetadata, AnimationPulse, IconAmbulance, IconAtom, IconCableCar, IconCheeseIcon, IconCheeseIcon2, IconHeartActivity, IconMetadata, IconSearch, IllustrationMetadata, IllustrationRoosterHead, IllustrationSunrise, IllustrationSvgIcon, animations, icons, illustrations };
|