@feathersdev/websites 0.0.3 → 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 +20 -0
- package/app/assets/css/base.css +11 -0
- package/app/components/DocsSearch.vue +1 -18
- package/app/components/FooterMain.vue +1 -1
- package/app/composables/useTheme.ts +1 -1
- package/app/layouts/docs.vue +0 -1
- package/package.json +13 -15
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}';
|
|
@@ -1,14 +1,5 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
const
|
|
3
|
-
/** Array of Nuxt Content collection names to search. If not provided, auto-detects from route. */
|
|
4
|
-
collections?: string[]
|
|
5
|
-
/** Display name for the search (e.g., "Feathers Docs"). If not provided, auto-generates. */
|
|
6
|
-
searchLabel?: string
|
|
7
|
-
/** Array of doc paths to show as popular/featured when search is empty */
|
|
8
|
-
popularPaths?: string[]
|
|
9
|
-
}>()
|
|
10
|
-
|
|
11
|
-
const { isSearchOpen, openSearch } = useGlobalSearch()
|
|
2
|
+
const { openSearch } = useGlobalSearch()
|
|
12
3
|
|
|
13
4
|
const isMac = computed(() => {
|
|
14
5
|
if (import.meta.server) return false
|
|
@@ -28,13 +19,5 @@ const isMac = computed(() => {
|
|
|
28
19
|
<Text class="grow text-left">Search docs...</Text>
|
|
29
20
|
<Kbd sm class="hidden sm:inline-flex">{{ isMac ? '⌘' : 'Ctrl' }}k</Kbd>
|
|
30
21
|
</Button>
|
|
31
|
-
|
|
32
|
-
<!-- Search Modal -->
|
|
33
|
-
<DocsSearchModal
|
|
34
|
-
v-model="isSearchOpen"
|
|
35
|
-
:collections="props.collections"
|
|
36
|
-
:search-label="props.searchLabel"
|
|
37
|
-
:popular-paths="props.popularPaths"
|
|
38
|
-
/>
|
|
39
22
|
</div>
|
|
40
23
|
</template>
|
|
@@ -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"
|
package/app/layouts/docs.vue
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feathersdev/websites",
|
|
3
|
-
"version": "0.
|
|
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
|
-
"
|
|
15
|
-
"
|
|
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": "^
|
|
20
|
+
"@nuxt/test-utils": "^4.0.0",
|
|
25
21
|
"@tailwindcss/typography": "^0.5.19",
|
|
26
|
-
"@tailwindcss/vite": "^4.
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
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
|
}
|