@baybreezy/docd 0.1.2 → 0.1.4

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.
@@ -13,17 +13,13 @@
13
13
  <div class="absolute -bottom-px left-0 h-px w-12 bg-zinc-700" />
14
14
  <div class="absolute bottom-0 -left-px h-12 w-px bg-zinc-700" />
15
15
 
16
- <p
17
- v-if="headline"
18
- class="mb-4 line-clamp-1 text-2xl text-pretty whitespace-pre-line"
19
- v-html="headline"
20
- />
21
- <h1 v-if="title" class="mb-4 line-clamp-1 text-5xl leading-none font-bold tracking-tighter">
16
+ <p v-if="headline" class="mb-4 text-2xl text-pretty whitespace-pre-line" v-html="headline" />
17
+ <h1 v-if="title" class="mb-4 text-5xl leading-none font-bold tracking-tighter">
22
18
  {{ title }}
23
19
  </h1>
24
20
  <p
25
21
  v-if="description"
26
- class="line-clamp-3 text-3xl leading-normal text-pretty whitespace-pre-line opacity-80"
22
+ class="text-3xl leading-normal text-pretty whitespace-pre-line opacity-80"
27
23
  >
28
24
  {{ description }}
29
25
  </p>
@@ -16,12 +16,12 @@
16
16
  <div class="flex flex-col items-center text-center">
17
17
  <div v-if="logoSvg" v-html="logoSvg" class="mb-5" />
18
18
 
19
- <h1 v-if="title" class="mb-4 line-clamp-1 text-5xl leading-none font-bold tracking-tighter">
19
+ <h1 v-if="title" class="mb-4 text-5xl leading-none font-bold tracking-tighter">
20
20
  {{ title }}
21
21
  </h1>
22
22
  <p
23
23
  v-if="description"
24
- class="line-clamp-3 text-3xl text-pretty whitespace-pre-line opacity-80"
24
+ class="text-3xl text-pretty whitespace-pre-line opacity-80"
25
25
  v-html="description"
26
26
  />
27
27
  </div>
package/content.config.ts CHANGED
@@ -49,6 +49,7 @@ const baseSchema = z.object({
49
49
  });
50
50
 
51
51
  const docsSchema = baseSchema.extend({
52
+ label: z.string().optional(),
52
53
  layout: z.string().default("docs").optional(),
53
54
  });
54
55
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baybreezy/docd",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "A Nuxt layer for building documentation sites with UI Thing.",
5
5
  "repository": {
6
6
  "type": "git",