Compare commits

...

2 Commits

Author SHA1 Message Date
semantic-release-bot
0d248f3987 chore(release): 3.1.3 [CI SKIP] 2022-09-18 19:38:35 +00:00
AAGaming
74aefc7b3c fix(DialogButton): fix ref type 2022-09-18 15:37:46 -04:00
4 changed files with 11 additions and 4 deletions

View File

@@ -1,3 +1,10 @@
## [3.1.3](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.1.2...v3.1.3) (2022-09-18)
### Bug Fixes
* **DialogButton:** fix ref type ([74aefc7](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/74aefc7b3c19a98fb607e78c4063c098a2e12546))
## [3.1.2](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.1.1...v3.1.2) (2022-09-18)

4
package-lock.json generated
View File

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

View File

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

View File

@@ -2,7 +2,7 @@ import { CSSProperties, FC, RefAttributes } from 'react';
import { CommonUIModule } from '../webpack';
export interface DialogButtonProps extends RefAttributes<HTMLButtonElement> {
export interface DialogButtonProps extends RefAttributes<HTMLDivElement> {
label?: string;
style?: CSSProperties;
className?: string;