fix types of components

This commit is contained in:
Lhcfl 2024-04-12 14:08:20 +08:00
parent 2bf51abc12
commit ea6ef881c2
2 changed files with 9 additions and 5 deletions

View File

@ -140,7 +140,7 @@ const patternShow = ref(false);
const modPattern = ref<HTMLDivElement>();
const progress = ref<typeof FormRange>();
const position = ref(0);
const patData = shallowRef([] as ModRow[][]);
const patData = shallowRef<readonly ModRow[][]>([]);
const currentPattern = ref(0);
const nbChannels = ref(0);
const length = ref(1);
@ -159,7 +159,7 @@ function load() {
error.value = false;
fetching.value = false;
})
.catch((e: any) => {
.catch((e: unknown) => {
console.error(e);
error.value = true;
fetching.value = false;
@ -293,12 +293,13 @@ function isRowActive(i: number) {
}
return true;
}
return false;
}
function indexText(i: number) {
let rowText = i.toString(16);
if (rowText.length === 1) {
rowText = "0" + rowText;
rowText = `0${rowText}`;
}
return rowText;
}

View File

@ -15,7 +15,7 @@
height: scroll
? height
? `${props.height}px`
: null
: undefined
: height
? `min(${props.height}px, 100%)`
: '100%',
@ -65,7 +65,7 @@
</template>
<script lang="ts" setup>
import { shallowRef } from "vue";
import { ref, shallowRef } from "vue";
import { FocusTrap } from "focus-trap-vue";
import MkModal from "./MkModal.vue";
@ -96,6 +96,9 @@ const emit = defineEmits<{
(event: "ok"): void;
}>();
// FIXME: seems that this is not used
const isActive = ref();
const modal = shallowRef<InstanceType<typeof MkModal>>();
const rootEl = shallowRef<HTMLElement>();
const headerEl = shallowRef<HTMLElement>();