astro-pure 1.3.8 → 1.3.9
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.
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
import { Image } from 'astro:assets'
|
|
3
3
|
import { render, type CollectionEntry, type CollectionKey } from 'astro:content'
|
|
4
|
-
import type { HTMLTag, Polymorphic } from 'astro/types'
|
|
5
4
|
|
|
6
5
|
import { cn } from '../../utils'
|
|
7
6
|
import { Button, FormattedDate, Icon } from '../user'
|
package/package.json
CHANGED
package/types/theme-config.ts
CHANGED
|
@@ -172,11 +172,7 @@ export const ThemeConfigSchema = () =>
|
|
|
172
172
|
content: z.object({
|
|
173
173
|
externalLinks: z.object({
|
|
174
174
|
/** Content to show for external links */
|
|
175
|
-
content: z
|
|
176
|
-
.string()
|
|
177
|
-
.optional()
|
|
178
|
-
.default(' ↗')
|
|
179
|
-
.describe('Content to show for external links'),
|
|
175
|
+
content: z.string().optional().default(' ↗').describe('Content to show for external links'),
|
|
180
176
|
/** Properties for the external links element */
|
|
181
177
|
properties: z
|
|
182
178
|
.record(z.string())
|