ai-react-animations 1.1.1 → 1.1.3
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/AiCreating.mjs +3 -1
- package/dist/AiCreating2.mjs +3 -2
- package/dist/index.css +820 -0
- package/dist/index.d.ts +3 -4
- package/dist/index.js +308 -7
- package/dist/index.mjs +258 -294
- package/package.json +8 -7
package/dist/AiCreating.mjs
CHANGED
|
@@ -6,7 +6,7 @@ import { useEffect, useState } from 'react';
|
|
|
6
6
|
* Relatable user scenario: AI reading, processing, delivering results
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
function AiCreating({ isLoading, onComplete, size = 'md' }) {
|
|
10
10
|
const [stage, setStage] = useState('idle');
|
|
11
11
|
|
|
12
12
|
useEffect(() => {
|
|
@@ -131,3 +131,5 @@ export default function AiCreating({ isLoading, onComplete, size = 'md' }) {
|
|
|
131
131
|
</div>
|
|
132
132
|
);
|
|
133
133
|
}
|
|
134
|
+
|
|
135
|
+
export default AiCreating;
|
package/dist/AiCreating2.mjs
CHANGED
|
@@ -7,7 +7,7 @@ const iconMap = {
|
|
|
7
7
|
zap: Zap,
|
|
8
8
|
};
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
function AiCreating2({
|
|
11
11
|
isLoading,
|
|
12
12
|
onComplete,
|
|
13
13
|
message = "Creating your plan...",
|
|
@@ -181,4 +181,5 @@ export function AiCreating2({
|
|
|
181
181
|
);
|
|
182
182
|
}
|
|
183
183
|
|
|
184
|
-
|
|
184
|
+
|
|
185
|
+
export default AiCreating2;
|