Fixed #505 - Add id property to OverlayPanel
parent
300e27800f
commit
1c89ad4aa2
|
@ -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[];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue