Skip to content

Commit 43c4216

Browse files
authored
fix(deps): update all dependencies (#497)
1 parent fa8406f commit 43c4216

6 files changed

Lines changed: 462 additions & 463 deletions

File tree

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,17 +56,17 @@
5656
"pnpm": "10.x"
5757
},
5858
"devDependencies": {
59-
"@biomejs/biome": "^2.4.13",
59+
"@biomejs/biome": "^2.4.15",
6060
"@lerna-lite/cli": "^5.2.1",
6161
"@lerna-lite/publish": "^5.2.1",
6262
"@lerna-lite/watch": "^5.2.1",
63-
"@playwright/test": "^1.59.1",
64-
"@types/node": "^25.6.0",
63+
"@playwright/test": "^1.60.0",
64+
"@types/node": "^25.7.0",
6565
"conventional-changelog-conventionalcommits": "^9.3.1",
6666
"cross-env": "catalog:",
6767
"npm-run-all2": "^8.0.4",
6868
"remove-glob": "catalog:",
6969
"typescript": "catalog:"
7070
},
71-
"packageManager": "pnpm@10.10.0"
71+
"packageManager": "pnpm@10.33.4"
7272
}

packages/demo/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
"dependencies": {
2222
"@popperjs/core": "^2.11.8",
2323
"bootstrap": "^5.3.8",
24-
"dompurify": "^3.4.1",
24+
"dompurify": "^3.4.3",
2525
"font-awesome": "^4.7.0",
2626
"multiple-select-vanilla": "workspace:*"
2727
},
2828
"devDependencies": {
2929
"sass": "catalog:",
3030
"typescript": "catalog:",
31-
"vite": "^8.0.10"
31+
"vite": "^8.0.12"
3232
}
3333
}

packages/demo/src/options/options32.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ export default class Example {
1616
text: '2. Payload blocked by stripScripts',
1717
},
1818
{
19-
value: '<iframe srcdoc="<script>alert(\'XSS\')\n<\/script>"></iframe>',
19+
value: '<iframe srcdoc="<script>alert(\'XSS\')\n</script>"></iframe>',
2020
text: '3. Payload that bypasses stripScripts and executes',
2121
},
2222
],
2323
filter: true,
24-
placeholder: "Placeholder with cross-site scripting code...&lt;script\&gt;alert('XSS')&lt;\/script&gt;",
24+
placeholder: "Placeholder with cross-site scripting code...&lt;script&gt;alert('XSS')&lt;/script&gt;",
2525
useSelectOptionLabelToHtml: true,
2626

2727
// you can use DOMPurify to sanitize data

packages/multiple-select-vanilla/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@
6868
"devDependencies": {
6969
"autoprefixer": "^10.5.0",
7070
"cross-env": "catalog:",
71-
"cssnano": "^7.1.7",
71+
"cssnano": "^8.0.1",
7272
"esbuild": "^0.28.0",
7373
"native-copyfiles": "catalog:",
74-
"postcss": "^8.5.12",
74+
"postcss": "^8.5.14",
7575
"postcss-cli": "^11.0.1",
7676
"remove-glob": "catalog:",
7777
"sass": "catalog:",

packages/multiple-select-vanilla/src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ const DEFAULTS: Partial<MultipleSelectOption> = {
8888
sanitizer: text => {
8989
if ('setHTML' in Element.prototype) {
9090
const container = document.createElement('div');
91-
// @ts-ignore: experimental API
91+
// @ts-expect-error: experimental API
9292
container.setHTML(text, {
9393
sanitizer: new Sanitizer({
9494
// let's add the most common elements & attributes

0 commit comments

Comments
 (0)