@pnx-mixtape/ids-shape 0.0.17 → 0.0.18
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/index.ts +5 -3
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -124,6 +124,8 @@ export type LinkedImage = {
|
|
|
124
124
|
title?: string
|
|
125
125
|
}
|
|
126
126
|
|
|
127
|
+
export type Logo = InlineSvg | Image
|
|
128
|
+
|
|
127
129
|
export type WysiwygText = HTMLElement[] // just an example.
|
|
128
130
|
|
|
129
131
|
/**
|
|
@@ -301,10 +303,10 @@ export type Masthead = {
|
|
|
301
303
|
}
|
|
302
304
|
|
|
303
305
|
export type Header = {
|
|
304
|
-
logo:
|
|
306
|
+
logo: Logo | Logo[]
|
|
305
307
|
title?: string
|
|
306
308
|
description?: string
|
|
307
|
-
search?:
|
|
309
|
+
search?: string
|
|
308
310
|
navigation?: Navigation
|
|
309
311
|
controls?: Button[]
|
|
310
312
|
}
|
|
@@ -316,7 +318,7 @@ export type Footer = {
|
|
|
316
318
|
socials?: SocialLinks
|
|
317
319
|
background?: FooterModifier
|
|
318
320
|
copyright?: string
|
|
319
|
-
logo?:
|
|
321
|
+
logo?: Logo | Logo[]
|
|
320
322
|
}
|
|
321
323
|
|
|
322
324
|
/**
|