Skip to content

Commit 1f25977

Browse files
Merge branch 'edge'
2 parents d67f536 + 79914b1 commit 1f25977

1,803 files changed

Lines changed: 88628 additions & 111178 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.app/app.config.ts

Lines changed: 0 additions & 15 deletions
This file was deleted.

.app/app.vue

Lines changed: 0 additions & 5 deletions
This file was deleted.

.app/app/app.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<template>
2+
<BaseProviders class="bg-muted-100 dark:bg-muted-900">
3+
<NuxtWelcome />
4+
</BaseProviders>
5+
</template>

.app/app/assets/main.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@import 'tailwindcss';
2+
@import '@shuriken-ui/nuxt';
3+
@import '#layers/@cssninja/tairo/theme.css';
4+
5+
@theme {
6+
/* Your theme variables */
7+
}

.app/nuxt.config.ts

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
export default defineNuxtConfig({
2+
compatibilityDate: '2024-11-26',
3+
future: {
4+
compatibilityVersion: 4,
5+
},
26
extends: [
37
/**
48
* This extends the base Tairo layer.
@@ -15,20 +19,13 @@ export default defineNuxtConfig({
1519
* with only your source code and no demo.
1620
*/
1721

18-
/**
19-
* Uncomment the following line to add the Tairo Layout Sidebar layer
20-
*/
21-
// '../layers/tairo-layout-sidebar',
22-
2322
'../layers/tairo',
2423
],
2524

26-
/**
27-
* Load local font with @fontsource packages
28-
* @see https://fontsource.org/
29-
*/
3025
css: [
31-
'@fontsource-variable/inter/index.css',
32-
'@fontsource-variable/karla/index.css',
26+
/**
27+
* Load Tailwind CSS
28+
*/
29+
'~/assets/main.css',
3330
],
3431
})

.app/package.json

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
11
{
22
"name": "app",
3-
"private": true,
43
"type": "module",
5-
"devDependencies": {
6-
"@fontsource-variable/inter": "^5.0.16",
7-
"@fontsource-variable/karla": "^5.0.19",
8-
"nuxt": "3.11.2"
9-
},
4+
"private": true,
105
"scripts": {
116
"prepare": "nuxt prepare",
127
"dev": "nuxt dev --open",
138
"build": "nuxt build",
149
"generate": "nuxt generate",
1510
"typecheck": "nuxt typecheck",
1611
"clean": "rimraf .nuxt .output node_modules"
12+
},
13+
"devDependencies": {
14+
"@iconify-json/fa6-brands": "^1.2.5",
15+
"@iconify-json/ph": "^1.2.2",
16+
"@iconify-json/simple-icons": "^1.2.30",
17+
"@nuxt/fonts": "^0.11.1",
18+
"@shuriken-ui/nuxt": "4.0.0-beta.4",
19+
"nuxt": "3.16.2",
20+
"tailwindcss": "^4.1.3",
21+
"typescript": "5.8.3"
1722
}
18-
}
23+
}

.app/tailwind.config.ts

Lines changed: 0 additions & 42 deletions
This file was deleted.

.demo/.env.example

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,3 @@ NUXT_PUBLIC_MAPBOX_TOKEN=pk.xxxx
55
# Path to the Shuriken UI Nuxt project
66
# Use this to run the demo with the local Shuriken UI project with hot reloading
77
DEV_SHURIKEN_UI_PATH=../shuriken-ui/nuxt
8-
9-
# Optinal demo layer: Documentation
10-
# This layer is used to display the documentation in the demo
11-
# It use nuxt/content and parse components with nuxt-component-meta which take a lot of time to do.
12-
ENABLE_DOCUMENTATION=true
13-
14-
# This is an additional feature of the documentation layer (with nuxt/content)
15-
# It enables edition via https://nuxt.studio/
16-
ENABLE_DOCUMENTATION_STUDIO=true

0 commit comments

Comments
 (0)