mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-04-10 18:48:17 +02:00
Update npm dependencies
This commit is contained in:
parent
f43fc97523
commit
5fb1d60636
1274
package-lock.json
generated
1274
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -13,7 +13,7 @@
|
|||||||
"@fortawesome/free-solid-svg-icons": "^6.4.2",
|
"@fortawesome/free-solid-svg-icons": "^6.4.2",
|
||||||
"@fortawesome/vue-fontawesome": "^3.0.3",
|
"@fortawesome/vue-fontawesome": "^3.0.3",
|
||||||
"@kyvg/vue3-notification": "^3.0.2",
|
"@kyvg/vue3-notification": "^3.0.2",
|
||||||
"@vitejs/plugin-vue": "^4.3.4",
|
"@vitejs/plugin-vue": "^5.0.4",
|
||||||
"@vueuse/components": "^10.4.1",
|
"@vueuse/components": "^10.4.1",
|
||||||
"@vueuse/core": "^10.4.1",
|
"@vueuse/core": "^10.4.1",
|
||||||
"@vueuse/integrations": "^10.6.1",
|
"@vueuse/integrations": "^10.6.1",
|
||||||
@ -21,14 +21,14 @@
|
|||||||
"bulma": "^0.9.4",
|
"bulma": "^0.9.4",
|
||||||
"bulma-checkradio": "^2.1.3",
|
"bulma-checkradio": "^2.1.3",
|
||||||
"file-saver": "^2.0.5",
|
"file-saver": "^2.0.5",
|
||||||
"laravel-vite-plugin": "^0.8.0",
|
"laravel-vite-plugin": "^1.0.2",
|
||||||
"laravel-vue-i18n": "^2.7.1",
|
"laravel-vue-i18n": "^2.7.1",
|
||||||
"php-parser": "^3.1.5",
|
"php-parser": "^3.1.5",
|
||||||
"pinia": "^2.1.6",
|
"pinia": "^2.1.6",
|
||||||
"sass": "^1.67.0",
|
"sass": "^1.67.0",
|
||||||
"sortablejs": "^1.15.0",
|
"sortablejs": "^1.15.0",
|
||||||
"unplugin-auto-import": "^0.16.6",
|
"unplugin-auto-import": "^0.16.6",
|
||||||
"vite": "^4.4.9",
|
"vite": "^5.2.7",
|
||||||
"vue": "^3.3.4",
|
"vue": "^3.3.4",
|
||||||
"vue-qrcode-reader": "^5.4.0",
|
"vue-qrcode-reader": "^5.4.0",
|
||||||
"vue-router": "^4.2.4"
|
"vue-router": "^4.2.4"
|
||||||
|
@ -5,8 +5,6 @@
|
|||||||
inheritAttrs: false
|
inheritAttrs: false
|
||||||
})
|
})
|
||||||
|
|
||||||
const { inputId } = useIdGenerator(props.inputType, props.fieldName)
|
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
modelValue: [String, Number, Boolean],
|
modelValue: [String, Number, Boolean],
|
||||||
label: {
|
label: {
|
||||||
@ -47,6 +45,8 @@
|
|||||||
leftIcon: '',
|
leftIcon: '',
|
||||||
rightIcon: '',
|
rightIcon: '',
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const { inputId } = useIdGenerator(props.inputType, props.fieldName)
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -6,8 +6,6 @@
|
|||||||
inheritAttrs: false
|
inheritAttrs: false
|
||||||
})
|
})
|
||||||
|
|
||||||
const { inputId } = useIdGenerator(props.inputType, props.fieldName)
|
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
modelValue: String,
|
modelValue: String,
|
||||||
modelModifiers: { default: () => ({}) },
|
modelModifiers: { default: () => ({}) },
|
||||||
@ -55,6 +53,8 @@
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const { inputId } = useIdGenerator(props.inputType, props.fieldName)
|
||||||
|
|
||||||
const fieldIsLocked = ref(props.isDisabled || props.isEditMode)
|
const fieldIsLocked = ref(props.isDisabled || props.isEditMode)
|
||||||
const hasBeenTrimmed = ref(false)
|
const hasBeenTrimmed = ref(false)
|
||||||
const componentKey = ref(0);
|
const componentKey = ref(0);
|
||||||
|
@ -5,10 +5,6 @@
|
|||||||
inheritAttrs: true
|
inheritAttrs: true
|
||||||
})
|
})
|
||||||
|
|
||||||
const { inputId } = useIdGenerator(props.inputType, props.fieldName)
|
|
||||||
const currentType = ref(props.inputType)
|
|
||||||
const hasCapsLockOn = ref(false)
|
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
modelValue: [String],
|
modelValue: [String],
|
||||||
label: {
|
label: {
|
||||||
@ -47,6 +43,10 @@
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const { inputId } = useIdGenerator(props.inputType, props.fieldName)
|
||||||
|
const currentType = ref(props.inputType)
|
||||||
|
const hasCapsLockOn = ref(false)
|
||||||
|
|
||||||
const hasLowerCase = computed(() => {
|
const hasLowerCase = computed(() => {
|
||||||
return /[a-z]/.test(props.modelValue)
|
return /[a-z]/.test(props.modelValue)
|
||||||
})
|
})
|
||||||
|
@ -5,8 +5,6 @@
|
|||||||
inheritAttrs: false
|
inheritAttrs: false
|
||||||
})
|
})
|
||||||
|
|
||||||
const { inputId } = useIdGenerator(props.inputType, props.fieldName)
|
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
modelValue: [String, Number, Boolean],
|
modelValue: [String, Number, Boolean],
|
||||||
label: {
|
label: {
|
||||||
@ -45,6 +43,8 @@
|
|||||||
},
|
},
|
||||||
isIndented: Boolean,
|
isIndented: Boolean,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const { inputId } = useIdGenerator(props.inputType, props.fieldName)
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -74,7 +74,7 @@ export default defineConfig({
|
|||||||
build: {
|
build: {
|
||||||
rollupOptions: {
|
rollupOptions: {
|
||||||
output: {
|
output: {
|
||||||
banner: '/*! 2FAuth version ' + version + ' - Copyright (c) 2023 Bubka - https://github.com/Bubka/2FAuth */',
|
banner: '/*! 2FAuth version ' + version + ' - Copyright (c) 2024 Bubka - https://github.com/Bubka/2FAuth */',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user