Compare commits

..

2 Commits

Author SHA1 Message Date
semantic-release-bot
e48180d7bb chore(release): 1.7.7 [CI SKIP] 2022-08-20 15:00:28 +00:00
Lukas Senionis
490a1f77fa fix(FieldProps): Add "bottomSeparator" option (#16) 2022-08-20 10:59:52 -04:00
4 changed files with 11 additions and 3 deletions

View File

@@ -1,3 +1,10 @@
## [1.7.7](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v1.7.6...v1.7.7) (2022-08-20)
### Bug Fixes
* **FieldProps:** Add "bottomSeparator" option ([#16](https://github.com/SteamDeckHomebrew/decky-frontend-lib/issues/16)) ([490a1f7](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/490a1f77fa98a988f0cae61d74370bf3fa96336c))
## [1.7.6](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v1.7.5...v1.7.6) (2022-08-18)

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "decky-frontend-lib",
"version": "1.7.6",
"version": "1.7.7",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "decky-frontend-lib",
"version": "1.7.6",
"version": "1.7.7",
"license": "GPL-2.0-or-later",
"dependencies": {
"minimist": "^1.2.6"

View File

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

View File

@@ -3,6 +3,7 @@ import { findModuleChild } from '../webpack';
export interface FieldProps extends HTMLAttributes<HTMLDivElement> {
label?: string | ReactNode;
bottomSeparator?: boolean;
description?: string | ReactNode;
disabled?: boolean;
icon?: ReactNode;