Skip to content

Commit

Permalink
v8.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
janosh committed May 15, 2023
1 parent 8d3c6cb commit ebe5f6f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. Dates are d

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

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

> 15 May 2023
- Remove circular import between `MultiSelect` and `index.ts` [`#230`](https://github.com/janosh/svelte-multiselect/pull/230)
- Automatically add "bug" label to bug report issues [`#229`](https://github.com/janosh/svelte-multiselect/pull/229)
- Allow `createOptionMsg=null` to suppress console error when `allowUserOptions` thruthy [`#227`](https://github.com/janosh/svelte-multiselect/pull/227)
- Fix MultiSelect unable to deselect object options [`#226`](https://github.com/janosh/svelte-multiselect/pull/226)
- Update pnpm instructions [`#224`](https://github.com/janosh/svelte-multiselect/pull/224)

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

> 30 April 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.6.1",
"version": "8.6.2",
"type": "module",
"svelte": "./dist/index.js",
"bugs": "https://github.com/janosh/svelte-multiselect/issues",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Full list of props/bindable variables for this component. The `Option` type you

<!-- prettier-ignore -->
1. ```ts
duplicateFunc: (op1: GenericOption, op2: GenericOption) => boolean = (op1, op2) =>
duplicateFunc: (op1: T, op2: T) => boolean = (op1, op2) =>
`${get_label(op1)}`.toLowerCase() === `${get_label(op2)}`.toLowerCase()
```

Expand Down
2 changes: 1 addition & 1 deletion src/lib/MultiSelect.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import Wiggle from './Wiggle.svelte'
import { CrossIcon, DisabledIcon, ExpandIcon } from './icons'
import type { DispatchEvents, MultiSelectEvents, Option as T } from './types'
type Option = $$Generic<GenericOption>
type Option = $$Generic<T>
export let activeIndex: number | null = null
export let activeOption: Option | null = null
Expand Down

0 comments on commit ebe5f6f

Please sign in to comment.