Dialog service d.ts fixed for apidoc

pull/3711/head
Bahadır Sofuoğlu 2023-03-07 16:47:32 +03:00
parent a592dabb8a
commit 49edde590b
4 changed files with 19 additions and 8 deletions

View File

@ -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';

View File

@ -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": []
}
}

View File

@ -156,7 +156,6 @@ export default {
}
if (services) {
console.log(services);
newDoc.children.push({
id: `api.${moduleName}.services`,
label: 'Services',

View File

@ -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>