Skip to content

Commit ca1063a

Browse files
committed
chore: update dependencies
1 parent 2335d0e commit ca1063a

File tree

7 files changed

+685
-795
lines changed

7 files changed

+685
-795
lines changed

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"test:unit": "cargo test"
5454
},
5555
"devDependencies": {
56-
"@azat-io/eslint-config": "^2.10.0",
56+
"@azat-io/eslint-config": "^2.11.1",
5757
"@azat-io/stylelint-config": "^0.1.1",
5858
"@commitlint/cli": "^19.6.1",
5959
"@commitlint/config-conventional": "^19.6.0",
@@ -64,32 +64,32 @@
6464
"@tanstack/svelte-table": "9.0.0-alpha.10",
6565
"@tanstack/table-core": "9.0.0-alpha.10",
6666
"@types/html-minifier-terser": "^7.0.2",
67-
"@types/node": "^22.10.6",
67+
"@types/node": "^22.10.10",
6868
"browserslist": "^4.24.4",
6969
"changelogen": "^0.5.7",
70-
"changelogithub": "^0.13.11",
70+
"changelogithub": "^13.12.1",
7171
"chart.js": "^4.4.7",
7272
"clean-publish": "^5.1.0",
7373
"cspell": "^8.17.2",
7474
"date-fns": "^4.1.0",
75-
"eslint": "^9.18.0",
75+
"eslint": "^9.19.0",
7676
"html-minifier-terser": "^7.2.0",
7777
"lightningcss": "^1.29.1",
7878
"postcss-html": "^1.8.0",
7979
"prettier": "^3.4.2",
8080
"prettier-plugin-svelte": "^3.3.3",
8181
"simple-git-hooks": "^2.11.1",
82-
"stylelint": "^16.13.2",
83-
"stylelint-config-recess-order": "^5.1.1",
82+
"stylelint": "^16.14.0",
83+
"stylelint-config-recess-order": "^6.0.0",
8484
"stylelint-gamut": "^1.3.4",
8585
"stylelint-order": "^6.0.4",
8686
"stylelint-plugin-logical-css": "^1.2.1",
87-
"svelte": "5.17.5",
87+
"svelte": "5.19.3",
8888
"svelte-chartjs": "^3.1.5",
8989
"svelte-check": "^4.1.4",
9090
"svelte-preprocess": "^6.0.3",
9191
"typescript": "^5.7.3",
92-
"vite": "^6.0.7",
92+
"vite": "^6.0.11",
9393
"vite-plugin-mock-dev-server": "^1.8.3",
9494
"vite-plugin-singlefile": "^2.1.0"
9595
},

pnpm-lock.yaml

+670-780
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

preview/blocks/header.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import Logo from '~/elements/logo.svelte'
66
import { data } from '~/stores/data'
77
8-
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
8+
// eslint-disable-next-line typescript/no-unused-expressions
99
$theme
1010
1111
let { version, name } = $data
@@ -87,10 +87,10 @@
8787
color: var(--color-content-brand);
8888
text-decoration: underline;
8989
text-underline-offset: 0.25em;
90+
outline: none;
9091
background: none;
9192
border: none;
9293
border-radius: var(--border-radius);
93-
outline: none;
9494
transition: box-shadow 200ms;
9595
9696
&:focus-visible {

preview/elements/chart.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
5454
$: if (chart) {
5555
chart.data = data
56-
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
56+
// eslint-disable-next-line typescript/no-unsafe-assignment
5757
chart.options = options
5858
chart.update()
5959
}

preview/elements/table.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,10 @@
142142
font: inherit;
143143
text-align: start;
144144
cursor: pointer;
145+
outline: none;
145146
background-color: transparent;
146147
border: none;
147148
border-radius: var(--border-radius);
148-
outline: none;
149149
transition: box-shadow 200ms;
150150
151151
&:focus-visible {
@@ -169,8 +169,8 @@
169169
170170
.td {
171171
padding: var(--space-2xs);
172-
overflow-wrap: anywhere;
173172
vertical-align: top;
173+
overflow-wrap: anywhere;
174174
}
175175
176176
.td-index {

preview/stores/data.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ export let data = readable<Partial<Data>>({}, set => {
4747
loading.set(false)
4848
}
4949

50-
// eslint-disable-next-line @typescript-eslint/no-floating-promises
50+
// eslint-disable-next-line typescript/no-floating-promises
5151
fetchData()
5252
})

preview/styles/base.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ a {
5353
color: var(--color-content-brand);
5454
text-decoration: underline;
5555
text-underline-offset: 0.25em;
56-
border-radius: var(--border-radius);
5756
outline: none;
57+
border-radius: var(--border-radius);
5858
transition: box-shadow 200ms;
5959

6060
&:focus-visible {

0 commit comments

Comments
 (0)