Fixed #505 - Add id property to OverlayPanel

pull/525/head
mertsincan 2020-09-27 19:53:06 +03:00
parent 300e27800f
commit 1c89ad4aa2
2 changed files with 9 additions and 2 deletions

View File

@ -1,6 +1,7 @@
import Vue, { VNode } from 'vue';
export declare class OverlayPanel extends Vue {
id?: string;
ismissable?: boolean;
showCloseIcon?: boolean;
appendTo?: string;
@ -13,4 +14,4 @@ export declare class OverlayPanel extends Vue {
$slots: {
'': VNode[];
}
}
}

View File

@ -52,6 +52,12 @@ toggle(event) {
</tr>
</thead>
<tbody>
<tr>
<td>id</td>
<td>string</td>
<td>null</td>
<td>Unique identifier of the element.</td>
</tr>
<tr>
<td>dismissable</td>
<td>boolean</td>
@ -216,4 +222,4 @@ export default {
</TabPanel>
</TabView>
</div>
</template>
</template>