Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
zaporter-work committed Sep 30, 2024
1 parent 991e60d commit f7dc539
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@viamrobotics/prime-core",
"version": "0.0.156",
"version": "0.0.157",
"repository": {
"type": "git",
"url": "https://github.com/viamrobotics/prime.git",
Expand Down
6 changes: 3 additions & 3 deletions packages/core/src/lib/select/searchable-select.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ export let otherOptionPrefix = '';
/** Error message ID, if any. */
export let errorID = '';
/** ID of the element that labels the SearchableSelect. */
export let labelledBy: string | undefined = undefined;
/** ID of the element that describes the SearchableSelect. */
export let describedBy: string | undefined = undefined;
/**
* Notify the parent of a value change, after Enter key or blur.
Expand Down Expand Up @@ -331,7 +331,7 @@ const handleKeydown = createHandleKey({
aria-multiselectable={multiple}
aria-activedescendant={activeID}
aria-errormessage={errorID}
aria-labelledby={labelledBy}
aria-describedby={describedBy}
on:focus={handleFocus}
on:blur={handleBlur}
on:keydown={handleKeydown}
Expand Down

0 comments on commit f7dc539

Please sign in to comment.