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
@@ -2,7 +2,7 @@
2
2
  "name": "astro-pure",
3
3
  "type": "module",
4
4
  "description": "A simple, clean but powerful blog theme build by astro.",
5
- "version": "1.3.8",
5
+ "version": "1.3.9",
6
6
  "homepage": "https://astro-pure.js.org/",
7
7
  "author": "CWorld",
8
8
  "license": "Apache-2.0",
@@ -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())