-
Notifications
You must be signed in to change notification settings - Fork 627
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/feat/progress' into feat/progress
# Conflicts: # README.md # docs/.env.example # docs/app.vue # docs/components/Footer.vue # docs/components/Header.vue # docs/components/content/examples/AccordionExampleItemSlot.vue # docs/components/content/examples/FormExampleJoi.vue # docs/components/content/examples/FormExampleYup.vue # docs/components/content/examples/FormExampleZod.vue # docs/components/content/themes/CommandPaletteThemeAlgolia.vue # docs/content/1.getting-started/1.index.md # docs/content/1.getting-started/3.theming.md # docs/content/2.elements/1.accordion.md # docs/content/2.elements/2.alert.md # docs/content/2.elements/3.avatar.md # docs/content/2.elements/4.badge.md # docs/content/2.elements/9.link.md # docs/content/3.forms/10.form.md # docs/content/3.forms/4.select-menu.md # docs/content/3.forms/9.form-group.md # docs/content/5.navigation/4.tabs.md # docs/content/6.overlays/6.notification.md # docs/error.vue # docs/nuxt.config.ts # docs/package.json # docs/pages/[...slug].vue # package.json # pnpm-lock.yaml # src/runtime/components/data/Table.vue # src/runtime/components/elements/Alert.vue # src/runtime/components/elements/Avatar.vue # src/runtime/components/elements/AvatarGroup.ts # src/runtime/components/forms/Form.vue # src/runtime/components/forms/FormGroup.ts # src/runtime/components/navigation/Tabs.vue # src/runtime/components/overlays/Popover.vue # src/runtime/types/form.d.ts
- Loading branch information
Showing
37 changed files
with
3,554 additions
and
4,255 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
# To use Nuxt Elements in production | ||
NUXT_ELEMENTS_TOKEN= | ||
# Used when pre-rendering the docs for dynamic OG images | ||
NUXT_PUBLIC_SITE_URL= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,23 @@ | ||
<template> | ||
<div v-if="$route.path !== '/playground'" class="w-full h-px bg-gray-200 dark:bg-gray-800 flex items-center justify-center"> | ||
<div class="bg-white dark:bg-gray-900 px-4"> | ||
<LogoOnly class="w-5 h-5" /> | ||
<footer class="flex items-center gap-1.5 mt-12"> | ||
<div class="flex-1 flex items-baseline gap-1.5 text-sm text-gray-600 dark:text-gray-300 leading-6"> | ||
Made by | ||
<NuxtLink to="https://nuxtlabs.com" aria-label="NuxtLabs"> | ||
<LogoLabs class="text-gray-900 dark:text-white w-14 h-auto" /> | ||
</NuxtLink> | ||
</div> | ||
</div> | ||
|
||
<UFooter :links="[]" :ui="{ bottom: { container: 'lg:py-4' } }"> | ||
<template #left> | ||
<div class="text-sm text-gray-500 dark:text-gray-400"> | ||
Made by | ||
<NuxtLink to="https://nuxtlabs.com" aria-label="NuxtLabs" class="inline-block"> | ||
<LogoLabs class="text-gray-900 dark:text-white h-4 w-auto" /> | ||
</NuxtLink> | ||
</div> | ||
</template> | ||
<NuxtLink :to="`https://github.com/nuxtlabs/ui/releases/tag/v${config.version}`" target="_blank" class="inline-flex"> | ||
<UBadge :label="`v${config.version}`" variant="subtle" /> | ||
</NuxtLink> | ||
|
||
<template #center> | ||
<span class="text-sm text-gray-500 dark:text-gray-400"> | ||
Published under <NuxtLink to="https://github.com/nuxt/ui" target="_blank" class="text-gray-900 dark:text-white"> | ||
MIT License | ||
</NuxtLink> | ||
</span> | ||
</template> | ||
|
||
<template #right> | ||
<UButton aria-label="Nuxt Website" icon="i-simple-icons-nuxtdotjs" to="https://nuxt.com" target="_blank" v-bind="$elements.button.secondary" /> | ||
<UButton aria-label="Nuxt on X" icon="i-simple-icons-x" to="https://x.com/nuxt_js" target="_blank" v-bind="$elements.button.secondary" /> | ||
<UButton aria-label="Nuxt UI on GitHub" icon="i-simple-icons-github" to="https://github.com/nuxt/ui" target="_blank" v-bind="$elements.button.secondary" /> | ||
</template> | ||
</UFooter> | ||
<div class="flex-1 flex items-center justify-end gap-1.5 -my-1 lg:hidden"> | ||
<USocialButton to="https://twitter.com/nuxtlabs" target="_blank" icon="i-simple-icons-twitter" /> | ||
<USocialButton to="https://github.com/nuxtlabs/ui" target="_blank" icon="i-simple-icons-github" /> | ||
</div> | ||
</footer> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
const config = useRuntimeConfig().public | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.