diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74e9c980..60c29081 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,8 +41,8 @@ jobs: - name: Lint run: yarn lint - # - name: Typecheck - # run: yarn typecheck + - name: Typecheck + run: yarn typecheck - name: Build run: yarn build diff --git a/docs/app.vue b/docs/app.vue index cecf0b6e..a0bd8cb9 100644 --- a/docs/app.vue +++ b/docs/app.vue @@ -9,11 +9,11 @@ -
@@ -27,6 +27,7 @@
import { computed } from 'vue'
import type { PropType } from 'vue'
import type { RouteLocationNormalized } from 'vue-router'
+import Icon from '../elements/Icon.vue'
const props = defineProps({
variant: {
@@ -56,10 +57,10 @@ const props = defineProps({
const iconName = computed(() => {
return ({
- info: 'heroicons-solid:information-circle',
- warning: 'heroicons-solid:exclamation',
- error: 'heroicons-solid:x-circle',
- success: 'heroicons-solid:check-circle'
+ info: 'i-heroicons-information-circle',
+ warning: 'i-heroicons-exclamation',
+ error: 'i-heroicons-x-circle',
+ success: 'i-heroicons-check-circle'
})[props.variant]
})
diff --git a/src/runtime/components/feedback/AlertDialog.vue b/src/runtime/components/feedback/AlertDialog.vue
index 82cfb1af..9d19c4b1 100644
--- a/src/runtime/components/feedback/AlertDialog.vue
+++ b/src/runtime/components/feedback/AlertDialog.vue
@@ -2,7 +2,7 @@