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

View File

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