@mythpe/quasar-ui-qui 0.2.41 → 0.2.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -230,7 +230,7 @@ export const useMyth = () => {
|
|
|
230
230
|
const alertMessage = (opts: Vue3MAlertMessageOptions): Vue3MAlertMessage => q.notify(quasarNotifyOptions(opts))
|
|
231
231
|
const alertSuccess = (message: string) => alertMessage({ type: 'positive', message })
|
|
232
232
|
const alertError = (message: string) => alertMessage({ type: 'negative', message })
|
|
233
|
-
const confirmMessage = (message?: string, title?: string, opts?: Partial<QDialogOptions> & Partial<QDialogProps>): Vue3MConfirmMessage => {
|
|
233
|
+
const confirmMessage = (message?: string, title?: string, opts?: Partial<QDialogOptions> & Partial<QDialogProps> & Record<string, any>): Vue3MConfirmMessage => {
|
|
234
234
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
235
235
|
// @ts-ignore
|
|
236
236
|
title = title || t('messages.are_you_sure') || ''
|