@mythpe/quasar-ui-qui 0.0.89 → 0.0.91
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
|
@@ -77,10 +77,14 @@ defineOptions({
|
|
|
77
77
|
:sm="sm"
|
|
78
78
|
:xs="xs"
|
|
79
79
|
>
|
|
80
|
-
<
|
|
80
|
+
<MHiddenInput
|
|
81
81
|
v-model="value"
|
|
82
|
-
|
|
83
|
-
|
|
82
|
+
:field-options="fieldOptions"
|
|
83
|
+
:name="name"
|
|
84
|
+
:required="required"
|
|
85
|
+
:rules="rules"
|
|
86
|
+
v-bind="$attrs"
|
|
87
|
+
/>
|
|
84
88
|
<slot />
|
|
85
89
|
</MCol>
|
|
86
90
|
</template>
|
|
@@ -243,8 +243,7 @@ export const useMyth = () => {
|
|
|
243
243
|
const alertError = (message: string) => {
|
|
244
244
|
return alertMessage({ type: 'negative', message })
|
|
245
245
|
}
|
|
246
|
-
const confirmMessage = (message?: string, title?: string, opts?:
|
|
247
|
-
Partial<QDialogOptions> & Partial<QDialogProps>): Vue3MConfirmMessage => {
|
|
246
|
+
const confirmMessage = (message?: string, title?: string, opts?: Partial<QDialogOptions> & Partial<QDialogProps>): Vue3MConfirmMessage => {
|
|
248
247
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
249
248
|
// @ts-ignore
|
|
250
249
|
title = title || t('messages.are_you_sure') || ''
|
|
@@ -264,9 +263,9 @@ export const useMyth = () => {
|
|
|
264
263
|
title,
|
|
265
264
|
message,
|
|
266
265
|
focus: 'none',
|
|
266
|
+
noShake: !0,
|
|
267
|
+
allowFocusOutside: !0,
|
|
267
268
|
persistent: !0,
|
|
268
|
-
transitionShow: 'jump-down',
|
|
269
|
-
transitionHide: 'jump-up',
|
|
270
269
|
cancel: {
|
|
271
270
|
color: cancelProps.color || undefined,
|
|
272
271
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|