@animaapp/anima-sdk-react 0.3.0 → 0.3.1
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/.turbo/turbo-build.log
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
|
|
2
2
|
[36mvite v6.0.11 [32mbuilding for production...[36m[39m
|
|
3
|
-
[2K[1Gtransforming (1) [2msrc/index.ts[22m[2K[1Gtransforming (
|
|
3
|
+
[2K[1Gtransforming (1) [2msrc/index.ts[22m[2K[1Gtransforming (13) [2m../node_modules/swr/dist/_internal/constants.mjs[22m[2K[1G../node_modules/swr/dist/_internal/config-context-client-Cm1JTDEP.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../node_modules/swr/dist/_internal/config-context-client-Cm1JTDEP.mjs" was ignored.
|
|
4
4
|
[2K[1G[32m✓[39m 25 modules transformed.
|
|
5
5
|
[2K[1Grendering chunks (1)...[2K[1G[32m
|
|
6
6
|
[36m[vite:dts][32m Start generate declaration files...[39m
|
|
7
7
|
[2K[1Gcomputing gzip size (0)...[2K[1Gcomputing gzip size (1)...[2K[1G[2mdist/[22m[36mindex.cjs [39m[1m[2m113.03 kB[22m[1m[22m[2m │ gzip: 32.99 kB[22m[2m │ map: 416.13 kB[22m
|
|
8
8
|
[32m[36m[vite:dts][32m Start rollup declaration files...[39m
|
|
9
9
|
Analysis will use the bundled TypeScript version 5.7.2
|
|
10
|
-
[32m[36m[vite:dts][32m Declaration files built in
|
|
10
|
+
[32m[36m[vite:dts][32m Declaration files built in 2349ms.
|
|
11
11
|
[39m
|
|
12
12
|
[2K[1Grendering chunks (1)...[2K[1G[2K[1Gcomputing gzip size (1)...[2K[1G[2mdist/[22m[36mindex.js [39m[1m[2m167.32 kB[22m[1m[22m[2m │ gzip: 41.60 kB[22m[2m │ map: 433.44 kB[22m
|
|
13
|
-
[32m✓ built in 2.
|
|
13
|
+
[32m✓ built in 2.82s[39m
|
package/.turbo/turbo-dev.log
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@animaapp/anima-sdk-react",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Anima's JavaScript utilities library",
|
|
6
6
|
"author": "Anima App, Inc.",
|
|
@@ -53,4 +53,4 @@
|
|
|
53
53
|
"vite-plugin-dts": "^4.5.0",
|
|
54
54
|
"vite-tsconfig-paths": "^5.1.4"
|
|
55
55
|
}
|
|
56
|
-
}
|
|
56
|
+
}
|
|
@@ -178,7 +178,7 @@ export const NotFoundFile: Story = {
|
|
|
178
178
|
},
|
|
179
179
|
};
|
|
180
180
|
|
|
181
|
-
export const
|
|
181
|
+
export const NotSupportedNode: Story = {
|
|
182
182
|
play: async (context) => {
|
|
183
183
|
const { error } = await run(context);
|
|
184
184
|
|
|
@@ -199,3 +199,24 @@ export const InvalidSelectedNode: Story = {
|
|
|
199
199
|
},
|
|
200
200
|
},
|
|
201
201
|
};
|
|
202
|
+
|
|
203
|
+
export const InvisibleGroupNode: Story = {
|
|
204
|
+
play: async (context) => {
|
|
205
|
+
const { error } = await run(context);
|
|
206
|
+
|
|
207
|
+
expect(error).toMatchObject({
|
|
208
|
+
name: "Task Crashed",
|
|
209
|
+
message: "Invisible group nodes are unsupported",
|
|
210
|
+
});
|
|
211
|
+
},
|
|
212
|
+
args: {
|
|
213
|
+
payload: {
|
|
214
|
+
fileKey: "5d0u9PmD4GtB5fdX57pTtK",
|
|
215
|
+
nodesId: ["134:14"],
|
|
216
|
+
settings: {
|
|
217
|
+
framework: "react",
|
|
218
|
+
styling: "plain_css",
|
|
219
|
+
},
|
|
220
|
+
},
|
|
221
|
+
},
|
|
222
|
+
};
|