add linters and fix build
Some checks failed
CI / test-and-build (push) Has been cancelled

This commit is contained in:
2026-03-24 11:27:56 +01:00
parent d1f3e0f514
commit e47dcf5983
5 changed files with 46 additions and 3 deletions

View File

@@ -10,7 +10,6 @@
</template>
<script setup lang="ts">
import "theme.css";
defineProps<{
variant?: "primary" | "outline" | "ghost" | "danger";
disabled?: boolean;
@@ -18,8 +17,7 @@ defineProps<{
</script>
<style scoped>
@import "tailwindcss";
@import "../../theme.css";
@reference "tailwindcss";
.btn {
@apply h-10 text-sm;
padding: 0 1.5rem;

View File

@@ -11,6 +11,9 @@ export interface FileMakerAPI {
declare global {
/** Available only inside a FileMaker web viewer. Always guard with `typeof FileMaker !== 'undefined'`. */
const FileMaker: FileMakerAPI | undefined
interface Window {
resolveFileMakerCallback: typeof resolveFileMakerCallback
}
}
// ---------------------------------------------------------------------------