Compare commits

..

3 Commits

Author SHA1 Message Date
semantic-release-bot
7e5c7b5ac3 chore(release): 3.19.2 [CI SKIP] 2023-03-07 23:48:45 +00:00
Beebles
f71e4dedc8 Merge pull request #71 from doZennn/patch-1
fix(Item): add highlightOnFocus prop
2023-03-07 16:48:10 -07:00
Jozen Blue Martinez
c53f87b4a9 fix(Item): add highlightOnFocus prop 2022-12-29 15:36:08 +08:00
3 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,10 @@
## [3.19.2](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.19.1...v3.19.2) (2023-03-07)
### Bug Fixes
* **Item:** add highlightOnFocus prop ([c53f87b](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/c53f87b4a9273b377853bfff1d27474ebd6e564a))
## [3.19.1](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.19.0...v3.19.1) (2023-02-23)

View File

@@ -1,6 +1,6 @@
{
"name": "decky-frontend-lib",
"version": "3.19.1",
"version": "3.19.2",
"description": "A library for building decky plugins",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@@ -8,4 +8,5 @@ export interface ItemProps {
bottomSeparator?: 'standard' | 'thick' | 'none';
indentLevel?: number;
tooltip?: string;
highlightOnFocus?: boolean;
}