Skip to content

Commit

Permalink
v8.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
janosh committed Mar 20, 2023
1 parent eb6b9a6 commit e1e800b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file. Dates are d

<!-- auto-changelog-above -->

#### [v8.6.0](https://github.com/janosh/svelte-multiselect/compare/v8.5.0...v8.6.0)

> 19 March 2023
- Fix Svelte 3.57 a11y [`#215`](https://github.com/janosh/svelte-multiselect/pull/215)
- Add prop `highlightMatches` to `MultiSelect` [`#212`](https://github.com/janosh/svelte-multiselect/pull/212)
- fix: add missing role attr for `<li>` [`#211`](https://github.com/janosh/svelte-multiselect/pull/211)
- update deps, set TS `moduleResolution='bundler'` [`a12835e`](https://github.com/janosh/svelte-multiselect/commit/a12835ee312174fa247a38742a8724ac540c8808)

#### [v8.5.0](https://github.com/janosh/svelte-multiselect/compare/v8.4.0...v8.5.0)

> 9 March 2023
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"homepage": "https://janosh.github.io/svelte-multiselect",
"repository": "https://github.com/janosh/svelte-multiselect",
"license": "MIT",
"version": "8.5.0",
"version": "8.6.0",
"type": "module",
"svelte": "./dist/index.js",
"bugs": "https://github.com/janosh/svelte-multiselect/issues",
Expand Down
7 changes: 3 additions & 4 deletions src/routes/(demos)/cmd-palette/+page.svx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<script lang="ts">
export let data: PageServerData
<script>
import hljs from 'highlight.js/lib/common'
import 'highlight.js/styles/vs2015.css'
import nav_palette from '$lib/CmdPalette.svelte?raw'
import cmd_palette_src from '$lib/CmdPalette.svelte?raw'
</script>

## Nav Palette
Expand Down Expand Up @@ -30,4 +29,4 @@ You can use `<MultiSelect />` to build a navigation palette in just 70 lines of

Here's `<CmdPalette />` component

<pre><code>{@html hljs.highlight(nav_palette, { language: 'typescript' }).value}</code></pre>
<pre><code>{@html hljs.highlight(cmd_palette_src, { language: 'typescript' }).value}</code></pre>
4 changes: 2 additions & 2 deletions src/routes/(demos)/persistent/+page.svx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import hljs from 'highlight.js/lib/common'
import 'highlight.js/styles/vs2015.css'
import store_code from '$site/stores.ts?raw'
import store_src from '$site/stores.ts?raw'
</script>

## Page-Reload Persistent MultiSelect
Expand Down Expand Up @@ -29,4 +29,4 @@

`language_store` uses custom initialization logic and a wrapper around `set` method to update `sessionStorage` on new values:

<pre><code>{@html hljs.highlight(store_code, { language: 'typescript' }).value}</code></pre>
<pre><code>{@html hljs.highlight(store_src, { language: 'typescript' }).value}</code></pre>

0 comments on commit e1e800b

Please sign in to comment.