diff --git a/docs/app/assets/icons/tiptap.svg b/docs/app/assets/icons/tiptap.svg new file mode 100644 index 0000000000..aaf0cf2cb7 --- /dev/null +++ b/docs/app/assets/icons/tiptap.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/docs/app/components/VersionMenu.vue b/docs/app/components/VersionMenu.vue index 3c637f033a..e415d0c4bb 100644 --- a/docs/app/components/VersionMenu.vue +++ b/docs/app/components/VersionMenu.vue @@ -25,7 +25,7 @@ const items = computed(() => { trailing-icon="i-lucide-chevron-down" size="xs" class="-mb-[6px] font-semibold rounded-full truncate" - :class="[open && 'bg-primary/15 ']" + :class="[open && 'bg-primary/15']" :ui="{ trailingIcon: ['transition-transform duration-200', open ? 'rotate-180' : undefined].filter(Boolean).join(' ') }" diff --git a/docs/app/components/content/ComponentCode.vue b/docs/app/components/content/ComponentCode.vue index eba9e0871a..4670bc7286 100644 --- a/docs/app/components/content/ComponentCode.vue +++ b/docs/app/components/content/ComponentCode.vue @@ -97,6 +97,10 @@ const props = defineProps<{ * Whether to add overflow-hidden to wrapper */ overflowHidden?: boolean + /** + * Whether to add background-elevated to wrapper + */ + elevated?: boolean }>() const route = useRoute() @@ -416,7 +420,7 @@ const { data: ast } = await useAsyncData(codeKey, async () => { -
+