kmcom-nuxt-layers 1.1.3 → 1.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,11 @@
1
+ <template>
2
+ <UFooter>
3
+ <template #bottom>
4
+ <div class="pt-10">
5
+ <p class="text-center text-sm text-neutral-300">
6
+ Copyright © {{ new Date().getFullYear() }}
7
+ </p>
8
+ </div>
9
+ </template>
10
+ </UFooter>
11
+ </template>
@@ -0,0 +1,18 @@
1
+ <script lang="ts" setup>
2
+ const appConfig = useAppConfig()
3
+ const title = appConfig.site?.title ?? 'Site Title'
4
+ </script>
5
+
6
+ <template>
7
+ <UHeader :title />
8
+ </template>
9
+
10
+ <!-- <template #toggle>
11
+ <MastNav />
12
+ </template> -->
13
+
14
+ <!-- :ui="{
15
+ root: 'bg-default static border-0',
16
+ container: 'w-full max-w-full',
17
+ title: 'text-primary flex-col text-pretty text-6xl leading-8 antialiased',
18
+ }" -->
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <div class="mastmain">
3
+ <!-- <UMain> -->
4
+ <slot />
5
+ <!-- </UMain> -->
6
+ </div>
7
+ </template>
@@ -1,4 +1,11 @@
1
1
  <!-- eslint-disable vue/no-multiple-template-root -->
2
2
  <template>
3
- <slot />
3
+ <MastScroller>
4
+ <MastHeader />
5
+ <MastMain>
6
+ <slot />
7
+ </MastMain>
8
+ <MastFooter />
9
+ <LayoutGridDebug />
10
+ </MastScroller>
4
11
  </template>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "kmcom-nuxt-layers",
3
3
  "private": false,
4
- "version": "1.1.3",
4
+ "version": "1.1.5",
5
5
  "description": "Composable Nuxt 4 layers for building scalable Vue applications",
6
6
  "files": [
7
7
  "layers/*/nuxt.config.ts",