@guideveloper/design-assets 0.1.9 → 0.1.10
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 +9942 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9942 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/animations/AnimationPleasedtomeetyou.tsx +9940 -0
- package/src/components/index.ts +1 -0
- package/src/metadata/index.ts +6 -0
package/dist/index.d.mts
CHANGED
|
@@ -40,6 +40,12 @@ declare const AnimationLoadinghourglasspurple: React.FC<{
|
|
|
40
40
|
className?: string;
|
|
41
41
|
} & Partial<React.ComponentProps<typeof Lottie>>>;
|
|
42
42
|
|
|
43
|
+
declare const AnimationPleasedtomeetyou: React.FC<{
|
|
44
|
+
loop?: boolean;
|
|
45
|
+
autoplay?: boolean;
|
|
46
|
+
className?: string;
|
|
47
|
+
} & Partial<React.ComponentProps<typeof Lottie>>>;
|
|
48
|
+
|
|
43
49
|
declare const AnimationPulse: React.FC<{
|
|
44
50
|
loop?: boolean;
|
|
45
51
|
autoplay?: boolean;
|
|
@@ -105,6 +111,11 @@ declare const animations: readonly [{
|
|
|
105
111
|
readonly frameRate: 30;
|
|
106
112
|
readonly loop: true;
|
|
107
113
|
readonly tags: readonly [];
|
|
114
|
+
}, {
|
|
115
|
+
readonly name: "pleasedtomeetyou";
|
|
116
|
+
readonly frameRate: 30;
|
|
117
|
+
readonly loop: true;
|
|
118
|
+
readonly tags: readonly [];
|
|
108
119
|
}, {
|
|
109
120
|
readonly name: "pulse";
|
|
110
121
|
readonly frameRate: 30;
|
|
@@ -115,4 +126,4 @@ type IconMetadata = typeof icons[number];
|
|
|
115
126
|
type IllustrationMetadata = typeof illustrations[number];
|
|
116
127
|
type AnimationMetadata = typeof animations[number];
|
|
117
128
|
|
|
118
|
-
export { AnimationBounce, AnimationCardordersuccess, AnimationLoadinghourglasspurple, AnimationMetadata, AnimationPulse, IconAmbulance, IconAtom, IconCableCar, IconCheeseIcon, IconCheeseIcon2, IconHeartActivity, IconMetadata, IconSearch, IllustrationMetadata, IllustrationRoosterHead, IllustrationSunrise, IllustrationSvgIcon, animations, icons, illustrations };
|
|
129
|
+
export { AnimationBounce, AnimationCardordersuccess, 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
|
@@ -40,6 +40,12 @@ declare const AnimationLoadinghourglasspurple: React.FC<{
|
|
|
40
40
|
className?: string;
|
|
41
41
|
} & Partial<React.ComponentProps<typeof Lottie>>>;
|
|
42
42
|
|
|
43
|
+
declare const AnimationPleasedtomeetyou: React.FC<{
|
|
44
|
+
loop?: boolean;
|
|
45
|
+
autoplay?: boolean;
|
|
46
|
+
className?: string;
|
|
47
|
+
} & Partial<React.ComponentProps<typeof Lottie>>>;
|
|
48
|
+
|
|
43
49
|
declare const AnimationPulse: React.FC<{
|
|
44
50
|
loop?: boolean;
|
|
45
51
|
autoplay?: boolean;
|
|
@@ -105,6 +111,11 @@ declare const animations: readonly [{
|
|
|
105
111
|
readonly frameRate: 30;
|
|
106
112
|
readonly loop: true;
|
|
107
113
|
readonly tags: readonly [];
|
|
114
|
+
}, {
|
|
115
|
+
readonly name: "pleasedtomeetyou";
|
|
116
|
+
readonly frameRate: 30;
|
|
117
|
+
readonly loop: true;
|
|
118
|
+
readonly tags: readonly [];
|
|
108
119
|
}, {
|
|
109
120
|
readonly name: "pulse";
|
|
110
121
|
readonly frameRate: 30;
|
|
@@ -115,4 +126,4 @@ type IconMetadata = typeof icons[number];
|
|
|
115
126
|
type IllustrationMetadata = typeof illustrations[number];
|
|
116
127
|
type AnimationMetadata = typeof animations[number];
|
|
117
128
|
|
|
118
|
-
export { AnimationBounce, AnimationCardordersuccess, AnimationLoadinghourglasspurple, AnimationMetadata, AnimationPulse, IconAmbulance, IconAtom, IconCableCar, IconCheeseIcon, IconCheeseIcon2, IconHeartActivity, IconMetadata, IconSearch, IllustrationMetadata, IllustrationRoosterHead, IllustrationSunrise, IllustrationSvgIcon, animations, icons, illustrations };
|
|
129
|
+
export { AnimationBounce, AnimationCardordersuccess, AnimationLoadinghourglasspurple, AnimationMetadata, AnimationPleasedtomeetyou, AnimationPulse, IconAmbulance, IconAtom, IconCableCar, IconCheeseIcon, IconCheeseIcon2, IconHeartActivity, IconMetadata, IconSearch, IllustrationMetadata, IllustrationRoosterHead, IllustrationSunrise, IllustrationSvgIcon, animations, icons, illustrations };
|