@feathersdev/websites 0.0.4 → 0.13.1

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.
package/CHANGELOG.md ADDED
@@ -0,0 +1,20 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [0.13.1](https://github.com/feathersdev/monorepo/compare/v0.13.0...v0.13.1) (2026-02-21)
7
+
8
+ **Note:** Version bump only for package @feathersdev/websites
9
+
10
+ # [0.13.0](https://github.com/feathersdev/monorepo/compare/v0.12.0...v0.13.0) (2026-02-21)
11
+
12
+ ### Bug Fixes
13
+
14
+ - **talon.codes:** Dashboard theme toggle and light mode styles ([#379](https://github.com/feathersdev/monorepo/issues/379)) ([3ac29a7](https://github.com/feathersdev/monorepo/commit/3ac29a7e25d5ca0c12cd01d7cc85c82db1593487))
15
+
16
+ ### Features
17
+
18
+ - talon.codes website & docs ([#351](https://github.com/feathersdev/monorepo/issues/351)) ([65fabf2](https://github.com/feathersdev/monorepo/commit/65fabf2d5b3ca4c907075630bb1e1e48f07e02c9))
19
+ - **talon.codes:** Add theme variant tabs and simplify color swatches ([#365](https://github.com/feathersdev/monorepo/issues/365)) ([ff6712b](https://github.com/feathersdev/monorepo/commit/ff6712bc557b4a491b6f3b06d7088a7b2f8cf1e2))
20
+ - **websites:** update HeroProduct and add useGlobalSearch composable ([eecb441](https://github.com/feathersdev/monorepo/commit/eecb4413400a2e3319c5d4aa154f7048087d9e7f))
@@ -0,0 +1,11 @@
1
+ @import 'tailwindcss';
2
+ @plugin 'daisyui';
3
+ @plugin "@tailwindcss/typography";
4
+
5
+ /* Scan shared layer components for class names */
6
+ @source '../../components/**/*.{vue,js}';
7
+ @source '../../layouts/**/*.{vue,js}';
8
+ @source '../../pages/**/*.{vue,js}';
9
+
10
+ /* Scan daisy-ui-kit components */
11
+ @source '../../../node_modules/daisy-ui-kit/app/components/**/*.{vue,js}';
@@ -6,7 +6,7 @@ const { data: products } = await useAsyncData(() => queryCollection('products').
6
6
  <MoonSurface />
7
7
  <div class="bg-[#251938]" data-theme="dark">
8
8
  <div class="flex items-center justify-center py-8">
9
- <Logo />
9
+ <Logo always-white />
10
10
  </div>
11
11
  <Footer
12
12
  class="sm:footer-horizontal text-neutral-content max-w-[87rem] mx-auto p-10 justify-evenly text-lg -ml-5.5 sm:ml-0"
@@ -1,6 +1,6 @@
1
1
  export function useTheme() {
2
2
  const colorMode = useCookie<'light' | 'dark'>('color-mode', {
3
- default: () => 'light',
3
+ default: () => 'dark',
4
4
  })
5
5
 
6
6
  const isDark = computed(() => colorMode.value === 'dark')
@@ -57,6 +57,5 @@ const dropdownId = useId()
57
57
  </Drawer>
58
58
  </div>
59
59
  </div>
60
- <div class="mx-auto max-w-378 bg-base-200 rounded-b-xl h-12 mb-24" />
61
60
  <FooterMain />
62
61
  </template>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feathersdev/websites",
3
- "version": "0.0.4",
3
+ "version": "0.13.1",
4
4
  "type": "module",
5
5
  "description": "Shared Nuxt layer for Feathers websites",
6
6
  "publishConfig": {
@@ -11,23 +11,21 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "@formkit/auto-animate": "^0.9.0",
14
- "better-sqlite3": "^12.6.2",
15
- "zod": "^4.3.6"
16
- },
17
- "peerDependencies": {
18
- "@nuxt/content": "^3.11.0",
19
- "@nuxt/eslint": "^1.13.0",
20
- "@nuxt/fonts": "^0.13.0",
14
+ "@nuxt/content": "^3.11.2",
15
+ "@nuxt/eslint": "^1.15.1",
16
+ "@nuxt/fonts": "^0.14.0",
21
17
  "@nuxt/icon": "^2.2.1",
22
18
  "@nuxt/image": "^2.0.0",
23
19
  "@nuxt/scripts": "^0.13.2",
24
- "@nuxt/test-utils": "^3.23.0",
20
+ "@nuxt/test-utils": "^4.0.0",
25
21
  "@tailwindcss/typography": "^0.5.19",
26
- "@tailwindcss/vite": "^4.1.18",
27
- "daisy-ui-kit": "5.0.9",
28
- "daisyui": "^5.5.14",
29
- "nuxt": "^4.3.0",
30
- "tailwindcss": "^4.1.18",
22
+ "@tailwindcss/vite": "^4.2.0",
23
+ "better-sqlite3": "^12.6.2",
24
+ "daisy-ui-kit": "^5.0.12",
25
+ "daisyui": "^5.5.18",
26
+ "nuxt": "^4.3.1",
27
+ "tailwindcss": "^4.2.0",
31
28
  "zod": "^4.3.6"
32
- }
29
+ },
30
+ "gitHead": "05917231b2ce1b808f6955cf082ef8588252ecf3"
33
31
  }