Merge branch 'main' into feat/secure-fetch
ci/woodpecker/pr/lint-backend Pipeline was successful Details
ci/woodpecker/pr/build Pipeline was successful Details
ci/woodpecker/pr/lint-client Pipeline failed Details
ci/woodpecker/pr/test Pipeline failed Details

This commit is contained in:
Norm 2022-07-31 22:38:09 +00:00
commit daa286e333
2 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ import MkButton from '@/components/ui/button.vue';
import { i18n } from '@/i18n';
const emit = defineEmits<{
(ev: 'change', v: any): void;
(ev: 'change', v: Event): void;
(ev: 'keydown', v: KeyboardEvent): void;
(ev: 'enter'): void;
(ev: 'update:modelValue', v: string): void;
@ -77,7 +77,7 @@ const focus = (): void => {
inputEl?.focus();
};
const onInput = (evt: HTMLInputEvent): void => {
const onInput = (evt: Event): void => {
changed = true;
emit('change', evt);
};

View File

@ -37,8 +37,8 @@ const props = withDefaults(defineProps<{
expanded?: boolean;
removable?: boolean;
draggable?: boolean;
error?: { arg: integer; expect: string; actual: string; };
warn?: { slot: integer; };
error?: { arg: number; expect: string; actual: string; };
warn?: { slot: number; };
}>(), {
expanded: true,
removable: true,