Dialog service d.ts fixed for apidoc
parent
a592dabb8a
commit
49edde590b
|
@ -1,9 +1,7 @@
|
|||
/**
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/dynamicdialog/)
|
||||
*
|
||||
* @module dialogservice-usedialog
|
||||
*
|
||||
* @module dialogservice
|
||||
*/
|
||||
import { Plugin } from 'vue';
|
||||
import { DynamicDialogInstance, DynamicDialogOptions } from '../dynamicdialogoptions';
|
||||
|
|
|
@ -10554,7 +10554,7 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"dialogservice-usedialog": {
|
||||
"dialogservice": {
|
||||
"description": "[Live Demo](https://www.primevue.org/dynamicdialog/)",
|
||||
"model": {
|
||||
"DialogServiceMethods": {
|
||||
|
@ -16917,7 +16917,14 @@
|
|||
"OrganizationChartSlots": {
|
||||
"description": "Defines valid slots in OrganizationChart component.",
|
||||
"relatedProp": "",
|
||||
"props": [],
|
||||
"props": [
|
||||
{
|
||||
"name": "[key: string]",
|
||||
"optional": false,
|
||||
"readonly": false,
|
||||
"type": "Function"
|
||||
}
|
||||
],
|
||||
"methods": [
|
||||
{
|
||||
"name": "default",
|
||||
|
@ -22832,7 +22839,14 @@
|
|||
"TreeSlots": {
|
||||
"description": "Defines valid slots in Tree component.",
|
||||
"relatedProp": "",
|
||||
"props": [],
|
||||
"props": [
|
||||
{
|
||||
"name": "[key: string]",
|
||||
"optional": false,
|
||||
"readonly": false,
|
||||
"type": "Function"
|
||||
}
|
||||
],
|
||||
"methods": []
|
||||
}
|
||||
}
|
||||
|
|
|
@ -156,7 +156,6 @@ export default {
|
|||
}
|
||||
|
||||
if (services) {
|
||||
console.log(services);
|
||||
newDoc.children.push({
|
||||
id: `api.${moduleName}.services`,
|
||||
label: 'Services',
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<DocComponent title="Vue Dialog Component" header="Dialog" description="Dialog is a container to display content in an overlay window" :componentDocs="docs" :apiDocs="['Dialog', 'DialogService-UseDialog']" />
|
||||
<DocComponent title="Vue Dialog Component" header="Dialog" description="Dialog is a container to display content in an overlay window" :componentDocs="docs" :apiDocs="['Dialog']" />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
|
Loading…
Reference in New Issue