Skip to content

Commit 53a66c4

Browse files
committed
chore: update deps
1 parent 033c57c commit 53a66c4

13 files changed

Lines changed: 975 additions & 795 deletions

File tree

.changeset/hip-apes-bathe.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
'@modelscope-studio/legacy-waterfall-gallery': patch
3+
'@modelscope-studio/legacy-multimodal-input': patch
4+
'@modelscope-studio/legacy-markdown': patch
5+
'@modelscope-studio/legacy-compiled': patch
6+
'@modelscope-studio/legacy-flow': patch
7+
'@modelscope-studio/lint-config': patch
8+
'@modelscope-studio/changelog': patch
9+
'@modelscope-studio/antd': patch
10+
'@modelscope-studio/frontend': patch
11+
'modelscope_studio': patch
12+
---
13+
14+
chore: update deps

config/changelog/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
},
2626
"devDependencies": {
2727
"@changesets/types": "^6.1.0",
28-
"@types/node": "^24.0.0",
28+
"@types/node": "^24.0.10",
2929
"tsup": "^8.5.0"
3030
}
3131
}

config/lint-config/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,21 @@
1616
}
1717
},
1818
"dependencies": {
19-
"@eslint/compat": "^1.2.9",
20-
"@eslint/js": "^9.28.0",
21-
"@typescript-eslint/parser": "^8.34.0",
19+
"@eslint/compat": "^1.3.1",
20+
"@eslint/js": "^9.30.1",
21+
"@typescript-eslint/parser": "^8.35.1",
2222
"eslint-config-prettier": "^10.1.5",
23-
"eslint-import-resolver-typescript": "^4.4.3",
24-
"eslint-plugin-import": "^2.31.0",
23+
"eslint-import-resolver-typescript": "^4.4.4",
24+
"eslint-plugin-import": "^2.32.0",
2525
"eslint-plugin-jsx-a11y": "^6.10.2",
26-
"eslint-plugin-prettier": "5.4.1",
26+
"eslint-plugin-prettier": "5.5.1",
2727
"eslint-plugin-react": "^7.37.5",
2828
"eslint-plugin-react-hooks": "^5.2.0",
2929
"eslint-plugin-react-refresh": "^0.4.20",
3030
"eslint-plugin-simple-import-sort": "^12.1.0",
31-
"eslint-plugin-svelte": "^3.9.2",
32-
"globals": "^16.2.0",
33-
"postcss": "^8.5.4",
31+
"eslint-plugin-svelte": "^3.10.1",
32+
"globals": "^16.3.0",
33+
"postcss": "^8.5.6",
3434
"postcss-less": "^6.0.0",
3535
"stylelint-config-ali": "^2.1.2",
3636
"stylelint-config-rational-order": "^0.1.2",
@@ -39,7 +39,7 @@
3939
"stylelint-order": "^7.0.0",
4040
"stylelint-prettier": "^5.0.3",
4141
"svelte-eslint-parser": "^1.2.0",
42-
"typescript-eslint": "^8.34.0"
42+
"typescript-eslint": "^8.35.1"
4343
},
4444
"devDependencies": {
4545
"@types/eslint": "^9.6.1",

frontend/legacy/Flow/Awaited.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
};
6363
}
6464
}
65-
$: background_props, update_background_props();
65+
$: (background_props, update_background_props());
6666
// process schema
6767
$: _schema = {
6868
...schema,

frontend/legacy/Markdown/Awaited.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
: src.replaceAll('/file=', replaceStr);
4444
};
4545
$: _value = redirect_src_url(value);
46-
$: label, gradio.dispatch('change');
46+
$: (label, gradio.dispatch('change'));
4747
</script>
4848

4949
<Block

frontend/legacy/Markdown/shared/Markdown.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
dispatch('custom', { tag, tag_index, value: v });
3333
}
3434
35-
$: value, dispatch('change');
35+
$: (value, dispatch('change'));
3636
</script>
3737

3838
<div

frontend/legacy/MultimodalInput/shared/Input.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
let previous_scroll_top = 0;
3131
let user_has_scrolled_up = false;
3232
33-
$: value, el && lines !== max_lines && resize({ target: el });
33+
$: (value, el && lines !== max_lines && resize({ target: el }));
3434
3535
$: if (value === null) value = '';
3636
@@ -68,7 +68,7 @@
6868
}
6969
value_is_output = false;
7070
});
71-
$: value, handle_change();
71+
$: (value, handle_change());
7272
7373
async function handle_copy(): Promise<void> {
7474
if ('clipboard' in navigator) {

frontend/legacy/WaterfallGallery/Index.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
gradio.dispatch('like', data);
6565
};
6666
67-
$: selected_index, dispatch('prop_change', { selected_index });
67+
$: (selected_index, dispatch('prop_change', { selected_index }));
6868
</script>
6969

7070
<Block

frontend/legacy/WaterfallGallery/shared/Gallery.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@
256256
});
257257
}
258258
$: if (waterfall_grid_el) {
259-
cols, createWaterfall();
259+
(cols, createWaterfall());
260260
}
261261
262262
onDestroy(() => {

frontend/legacy/compiled/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@subscribe-kit/core": "^2.1.1",
1515
"@subscribe-kit/react": "^2.1.1",
1616
"@ungap/structured-clone": "^1.3.0",
17-
"@xyflow/react": "12.6.4",
17+
"@xyflow/react": "12.8.1",
1818
"ajv": "^8.17.1",
1919
"ajv-i18n": "^4.2.0",
2020
"deepmerge": "^4.3.1",

0 commit comments

Comments
 (0)