Skip to content

Commit

Permalink
Release prep
Browse files Browse the repository at this point in the history
  • Loading branch information
Xon committed Aug 29, 2024
1 parent 1e741fb commit 69b3ed7
Show file tree
Hide file tree
Showing 12 changed files with 424 additions and 458 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [11.0.1] (2024-08-)
## [11.0.1] (2024-08-30)

### Bug Fixes (from 11.0.0)
* Fix the rendered item list was not cleared when `clearStore` was called. This impacted the on-form-reset and `refresh` features.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "choices.js",
"version": "11.0.0",
"version": "11.0.1",
"description": "A vanilla JS customisable text input/select box plugin",
"type": "module",
"main": "./public/assets/scripts/choices.js",
Expand Down
141 changes: 69 additions & 72 deletions public/assets/scripts/choices.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/assets/scripts/choices.min.js

Large diffs are not rendered by default.

141 changes: 69 additions & 72 deletions public/assets/scripts/choices.mjs

Large diffs are not rendered by default.

141 changes: 69 additions & 72 deletions public/assets/scripts/choices.search-basic.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/assets/scripts/choices.search-basic.min.js

Large diffs are not rendered by default.

141 changes: 69 additions & 72 deletions public/assets/scripts/choices.search-basic.mjs

Large diffs are not rendered by default.

150 changes: 69 additions & 81 deletions public/assets/scripts/choices.search-prefix.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/assets/scripts/choices.search-prefix.min.js

Large diffs are not rendered by default.

150 changes: 69 additions & 81 deletions public/assets/scripts/choices.search-prefix.mjs

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions public/types/src/scripts/lib/utils.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,7 @@ export declare const cloneObject: <T>(obj: T) => T;
export declare const diff: (a: Record<string, any>, b: Record<string, any>) => string[];
export declare const getClassNames: (ClassNames: Array<string> | string) => Array<string>;
export declare const getClassNamesSelector: (option: string | Array<string> | null) => string;
export declare const addClassesToElement: (element: HTMLElement, className: Array<string> | string) => void;
export declare const removeClassesFromElement: (element: HTMLElement, className: Array<string> | string) => void;
export declare const parseCustomProperties: (customProperties?: string) => object | string;
export declare const updateClassList: (item: ChoiceFull, add: string | string[], remove: string | string[]) => void;

0 comments on commit 69b3ed7

Please sign in to comment.