@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.
Files changed (2) hide show
  1. package/index.ts +5 -3
  2. 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: Image | Image[]
306
+ logo: Logo | Logo[]
305
307
  title?: string
306
308
  description?: string
307
- search?: SearchForm
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?: Image | Image[]
321
+ logo?: Logo | Logo[]
320
322
  }
321
323
 
322
324
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnx-mixtape/ids-shape",
3
- "version": "0.0.17",
3
+ "version": "0.0.18",
4
4
  "description": "shape details for ids project",
5
5
  "main": "./index.ts",
6
6
  "type": "module",