Dialog service d.ts fixed for apidoc
parent
a592dabb8a
commit
49edde590b
|
@ -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';
|
||||||
|
|
|
@ -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": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue