Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking β€œSign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dash UI Nuxt 4.templates.yml #1665

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'main' into patch-1
codescandy authored Jan 27, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit bfe0c326847ed2a64f487004b512262f93f6b65f
8 changes: 7 additions & 1 deletion content/4.templates.yml
Original file line number Diff line number Diff line change
@@ -211,6 +211,12 @@ templates:
- name: 'Dash UI Nuxt Starter Admin Template'
slug: 'dashui-nuxt-starter-admin-template'
description: 'Dash UI Nuxt Starter-Admin Template is a modern, responsive admin dashboard template built with Nuxt.js.'
demo: 'https://dashui-nuxt-starter-admin-template.netlify.app/'
demo: 'https://dashui-nuxt-starter-admin-template.vercel.app/'
purchase: 'https://dashui.codescandy.com/nuxt-js-admin-dashboard-template.html'
badge: 'Freemium'
- name: 'Nuxt Shadcn Dashboard'
slug: 'nuxt-shadcn-dashboard'
description: 'Shadcn Dashboard built with Nuxt'
screenshotUrl: 'https://dashboard.dianprata.com/'
repo: 'dianprata/nuxt-shadcn-dashboard'
demo: 'https://dashboard.dianprata.com/'

Unchanged files with check annotations Beta

<template>
<Callout :icon="icon" :color="color" :to="to" :target="target" class="font-medium">
<ContentSlot :use="$slots.default" unwrap="p" />

Check failure on line 16 in app/components/content/Alert.vue

GitHub Actions / typecheck

Property 'default' does not exist on type '{}'.
</Callout>
</template>
class="_caution"
:class="$attrs.to ? 'dark:hover:!border-red-600/50 hover:!border-red-400/50' : ''"
>
<ContentSlot :use="$slots.default" unwrap="p" />

Check failure on line 9 in app/components/content/Caution.vue

GitHub Actions / typecheck

Property 'default' does not exist on type '{}'.
</Alert>
</template>
class="_important"
:class="$attrs.to ? 'dark:hover:!border-violet-600/50 hover:!border-violet-400/50' : ''"
>
<ContentSlot :use="$slots.default" unwrap="p" />

Check failure on line 9 in app/components/content/Important.vue

GitHub Actions / typecheck

Property 'default' does not exist on type '{}'.
</Alert>
</template>
class="_note"
:class="$attrs.to ? 'dark:hover:!border-blue-600/50 hover:!border-blue-400/50' : ''"
>
<ContentSlot :use="$slots.default" unwrap="p" />

Check failure on line 9 in app/components/content/Note.vue

GitHub Actions / typecheck

Property 'default' does not exist on type '{}'.
</Alert>
</template>
<template>
<CodeGroup ref="codeGroupRef">
<ContentSlot :use="$slots.default" />

Check failure on line 3 in app/components/content/PackageManagers.vue

GitHub Actions / typecheck

Property 'default' does not exist on type '{}'.
</CodeGroup>
</template>
)
const getPackageManager = (index: number) => {
return slots.default()[index].props.filename

Check failure on line 18 in app/components/content/PackageManagers.vue

GitHub Actions / typecheck

Property 'default' does not exist on type '{}'.
}
const getIndex = (name: string): number => {
for (const [index, slot] of slots.default().entries()) {

Check failure on line 22 in app/components/content/PackageManagers.vue

GitHub Actions / typecheck

Property 'default' does not exist on type '{}'.
if (slot.props.filename === name) return index
}
return 0
}
const updateSelection = (newIndex: number) => {
if (!slots.default()) return

Check failure on line 29 in app/components/content/PackageManagers.vue

GitHub Actions / typecheck

Property 'default' does not exist on type '{}'.
defaultPackageManager.value = getPackageManager(newIndex)
window.dispatchEvent(
new CustomEvent('default-package-manager-changed', {
class="_tip"
:class="$attrs.to ? 'dark:hover:!border-green-600/50 hover:!border-green-400/50' : ''"
>
<ContentSlot :use="$slots.default" unwrap="p" />

Check failure on line 9 in app/components/content/Tip.vue

GitHub Actions / typecheck

Property 'default' does not exist on type '{}'.
</Alert>
</template>
class="_warning"
:class="$attrs.to ? 'dark:hover:!border-amber-600/50 hover:!border-amber-400/50' : ''"
>
<ContentSlot :use="$slots.default" unwrap="p" />

Check failure on line 9 in app/components/content/Warning.vue

GitHub Actions / typecheck

Property 'default' does not exist on type '{}'.
</Alert>
</template>
You are viewing a condensed version of this merge commit. You can view the full changes here.