Skip to content

Commit

Permalink
Update npm dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Bubka committed Mar 31, 2024
1 parent f43fc97 commit 5fb1d60
Show file tree
Hide file tree
Showing 7 changed files with 690 additions and 614 deletions.
1,274 changes: 675 additions & 599 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/vue-fontawesome": "^3.0.3",
"@kyvg/vue3-notification": "^3.0.2",
"@vitejs/plugin-vue": "^4.3.4",
"@vitejs/plugin-vue": "^5.0.4",
"@vueuse/components": "^10.4.1",
"@vueuse/core": "^10.4.1",
"@vueuse/integrations": "^10.6.1",
"axios": "^1.1.2",
"bulma": "^0.9.4",
"bulma-checkradio": "^2.1.3",
"file-saver": "^2.0.5",
"laravel-vite-plugin": "^0.8.0",
"laravel-vite-plugin": "^1.0.2",
"laravel-vue-i18n": "^2.7.1",
"php-parser": "^3.1.5",
"pinia": "^2.1.6",
"sass": "^1.67.0",
"sortablejs": "^1.15.0",
"unplugin-auto-import": "^0.16.6",
"vite": "^4.4.9",
"vite": "^5.2.7",
"vue": "^3.3.4",
"vue-qrcode-reader": "^5.4.0",
"vue-router": "^4.2.4"
Expand Down
4 changes: 2 additions & 2 deletions resources/js/components/formElements/FormField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
inheritAttrs: false
})
const { inputId } = useIdGenerator(props.inputType, props.fieldName)
const props = defineProps({
modelValue: [String, Number, Boolean],
label: {
Expand Down Expand Up @@ -47,6 +45,8 @@
leftIcon: '',
rightIcon: '',
})
const { inputId } = useIdGenerator(props.inputType, props.fieldName)
</script>

<template>
Expand Down
6 changes: 3 additions & 3 deletions resources/js/components/formElements/FormLockField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
defineOptions({
inheritAttrs: false
})
const { inputId } = useIdGenerator(props.inputType, props.fieldName)
const props = defineProps({
modelValue: String,
modelModifiers: { default: () => ({}) },
Expand Down Expand Up @@ -55,6 +53,8 @@
}
})
const { inputId } = useIdGenerator(props.inputType, props.fieldName)
const fieldIsLocked = ref(props.isDisabled || props.isEditMode)
const hasBeenTrimmed = ref(false)
const componentKey = ref(0);
Expand Down
8 changes: 4 additions & 4 deletions resources/js/components/formElements/FormPasswordField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@
inheritAttrs: true
})
const { inputId } = useIdGenerator(props.inputType, props.fieldName)
const currentType = ref(props.inputType)
const hasCapsLockOn = ref(false)
const props = defineProps({
modelValue: [String],
label: {
Expand Down Expand Up @@ -47,6 +43,10 @@
},
})
const { inputId } = useIdGenerator(props.inputType, props.fieldName)
const currentType = ref(props.inputType)
const hasCapsLockOn = ref(false)
const hasLowerCase = computed(() => {
return /[a-z]/.test(props.modelValue)
})
Expand Down
4 changes: 2 additions & 2 deletions resources/js/components/formElements/FormTextarea.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
inheritAttrs: false
})
const { inputId } = useIdGenerator(props.inputType, props.fieldName)
const props = defineProps({
modelValue: [String, Number, Boolean],
label: {
Expand Down Expand Up @@ -45,6 +43,8 @@
},
isIndented: Boolean,
})
const { inputId } = useIdGenerator(props.inputType, props.fieldName)
</script>

<template>
Expand Down
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default defineConfig({
build: {
rollupOptions: {
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 */',
},
},
},
Expand Down

0 comments on commit 5fb1d60

Please sign in to comment.