Skip to content
This repository was archived by the owner on Jan 4, 2026. It is now read-only.

Commit 6728cdd

Browse files
committed
update deps
1 parent 2a4f427 commit 6728cdd

File tree

3 files changed

+42
-21
lines changed

3 files changed

+42
-21
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
},
1212
"devDependencies": {
1313
"@ktibow/iconset-material-symbols": "^0.0.1747426012",
14-
"@ktibow/material-color-utilities-nightly": "^0.3.11751852341624",
14+
"@ktibow/material-color-utilities-nightly": "^0.3.11753753853685",
1515
"@sveltejs/adapter-static": "^3.0.8",
1616
"@sveltejs/kit": "^2.22.2",
1717
"eslint": "^9.30.1",
1818
"eslint-config-prettier": "^10.1.5",
1919
"eslint-plugin-svelte": "^2.46.1",
20-
"m3-svelte": "^4.5.4",
20+
"m3-svelte": "^5.0.0",
2121
"prettier": "^3.6.2",
2222
"prettier-plugin-svelte": "^3.4.0",
2323
"svelte": "^5.35.4",

pnpm-lock.yaml

Lines changed: 37 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/routes/+page.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,10 +230,10 @@ ${colors.map((color) => genColorVariable(color.name, color.getArgb(darkScheme)))
230230
<Icon icon={iconCheck} width="24" height="24" />
231231
<p class="m3-font-headline-small">Use your theme</p>
232232
<div class="buttons">
233-
<Button variant="tonal" click={() => colorInput.showPicker()}>Try again</Button>
233+
<Button variant="tonal" onclick={() => colorInput.showPicker()}>Try again</Button>
234234
<Button
235235
variant="filled"
236-
click={() => {
236+
onclick={() => {
237237
navigator.clipboard.writeText(yaml);
238238
}}
239239
>
@@ -244,7 +244,7 @@ ${colors.map((color) => genColorVariable(color.name, color.getArgb(darkScheme)))
244244
{:else}
245245
<div class="pair">
246246
<Branding />
247-
<Button variant="filled" click={() => colorInput.showPicker()}>Choose a color</Button>
247+
<Button variant="filled" onclick={() => colorInput.showPicker()}>Choose a color</Button>
248248
</div>
249249
{/if}
250250
<input type="color" value={undefined} bind:this={colorInput} oninput={loadTheme} />

0 commit comments

Comments
 (0)