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/) * [Live Demo](https://www.primevue.org/dynamicdialog/)
* * @module dialogservice
* @module dialogservice-usedialog
*
*/ */
import { Plugin } from 'vue'; import { Plugin } from 'vue';
import { DynamicDialogInstance, DynamicDialogOptions } from '../dynamicdialogoptions'; import { DynamicDialogInstance, DynamicDialogOptions } from '../dynamicdialogoptions';

View File

@ -10554,7 +10554,7 @@
} }
} }
}, },
"dialogservice-usedialog": { "dialogservice": {
"description": "[Live Demo](https://www.primevue.org/dynamicdialog/)", "description": "[Live Demo](https://www.primevue.org/dynamicdialog/)",
"model": { "model": {
"DialogServiceMethods": { "DialogServiceMethods": {
@ -16917,7 +16917,14 @@
"OrganizationChartSlots": { "OrganizationChartSlots": {
"description": "Defines valid slots in OrganizationChart component.", "description": "Defines valid slots in OrganizationChart component.",
"relatedProp": "", "relatedProp": "",
"props": [], "props": [
{
"name": "[key: string]",
"optional": false,
"readonly": false,
"type": "Function"
}
],
"methods": [ "methods": [
{ {
"name": "default", "name": "default",
@ -22832,7 +22839,14 @@
"TreeSlots": { "TreeSlots": {
"description": "Defines valid slots in Tree component.", "description": "Defines valid slots in Tree component.",
"relatedProp": "", "relatedProp": "",
"props": [], "props": [
{
"name": "[key: string]",
"optional": false,
"readonly": false,
"type": "Function"
}
],
"methods": [] "methods": []
} }
} }

View File

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

View File

@ -1,5 +1,5 @@
<template> <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> </template>
<script> <script>