Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
yariksav committed Sep 25, 2020
1 parent ab1e5df commit 6d2ec9f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vuetify-dialog",
"version": "2.0.10",
"version": "2.0.11",
"description": "Dialog helper for vuetify.js",
"scripts": {
"build": "npm run build:umd & npm run build:es & npm run build:unpkg",
Expand Down
2 changes: 2 additions & 0 deletions src/components/Alert.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
@input="$emit('submit')"
:dismissible="dismissible"
:type="color"
:icon="icon"
:outlined="outlined"
:prominent="prominent"
:text="flat"
Expand Down Expand Up @@ -43,6 +44,7 @@ export default {
type: String,
default: ''
},
icon: String,
outlined: Boolean,
prominent: Boolean,
dismissible: {
Expand Down
3 changes: 2 additions & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ interface DialogActionable {
}

export interface DialogObject<ReturnType = any> {
show (): Promise<DialogObject> | undefined
show (): Promise<DialogObject> | DialogObject | undefined
wait (): Promise<ReturnType>
remove (): void
close (): void
Expand Down Expand Up @@ -69,6 +69,7 @@ export interface DialogNotifyOptions extends DialogActionable {
width?: number
zIndex?: number
flat?: boolean
icon?: string
rounded?: boolean
outlined?: boolean
shaped?: boolean
Expand Down

0 comments on commit 6d2ec9f

Please sign in to comment.