Merge branch 'master' of https://github.com/primefaces/primevue
commit
b401aff773
|
@ -23073,14 +23073,6 @@
|
||||||
"default": "body",
|
"default": "body",
|
||||||
"description": "A valid query selector or an HTMLElement to specify where the overlay gets attached."
|
"description": "A valid query selector or an HTMLElement to specify where the overlay gets attached."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "id",
|
|
||||||
"optional": true,
|
|
||||||
"readonly": false,
|
|
||||||
"type": "string",
|
|
||||||
"default": "",
|
|
||||||
"description": "Identifier of the element."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "inputId",
|
"name": "inputId",
|
||||||
"optional": true,
|
"optional": true,
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { uuid } from '@primeuix/utils';
|
||||||
import Dialog from 'primevue/dialog';
|
import Dialog from 'primevue/dialog';
|
||||||
import DynamicDialogEventBus from 'primevue/dynamicdialogeventbus';
|
import DynamicDialogEventBus from 'primevue/dynamicdialogeventbus';
|
||||||
import BaseDynamicDialog from './BaseDynamicDialog.vue';
|
import BaseDynamicDialog from './BaseDynamicDialog.vue';
|
||||||
|
@ -31,7 +32,7 @@ export default {
|
||||||
currentInstance: null,
|
currentInstance: null,
|
||||||
mounted() {
|
mounted() {
|
||||||
this.openListener = ({ instance }) => {
|
this.openListener = ({ instance }) => {
|
||||||
const key = this.$attrSelector + '_dynamic_dialog';
|
const key = uuid() + '_dynamic_dialog';
|
||||||
|
|
||||||
instance.visible = true;
|
instance.visible = true;
|
||||||
instance.key = key;
|
instance.key = key;
|
||||||
|
|
686
pnpm-lock.yaml
686
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue