@pnx-mixtape/ids-shape 0.0.20 → 0.0.22
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 +6 -1
- package/package.json +5 -5
package/index.ts
CHANGED
|
@@ -325,6 +325,7 @@ export type Footer = {
|
|
|
325
325
|
*/
|
|
326
326
|
|
|
327
327
|
export type LinkList = {
|
|
328
|
+
title?: Heading
|
|
328
329
|
items: Link[]
|
|
329
330
|
}
|
|
330
331
|
|
|
@@ -400,6 +401,10 @@ export type HeroBanner = WayfindingBlock & {
|
|
|
400
401
|
modifiers?: HeroBannerModifier[]
|
|
401
402
|
}
|
|
402
403
|
|
|
404
|
+
export type HeroSearch = HeroBanner & {
|
|
405
|
+
search: SearchForm
|
|
406
|
+
}
|
|
407
|
+
|
|
403
408
|
export type InPageAlert = {
|
|
404
409
|
type: InPageAlertTypes
|
|
405
410
|
title: Heading
|
|
@@ -470,7 +475,7 @@ export type Tabs = {
|
|
|
470
475
|
|
|
471
476
|
export type Tags = {
|
|
472
477
|
items: Link[] | string[] | FormControl[]
|
|
473
|
-
|
|
478
|
+
type: TagTypes
|
|
474
479
|
}
|
|
475
480
|
|
|
476
481
|
export type SocialLinks = {
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnx-mixtape/ids-shape",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.22",
|
|
4
4
|
"description": "shape details for ids project",
|
|
5
5
|
"main": "./index.ts",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"devDependencies": {},
|
|
8
|
+
"author": "rikki-iki",
|
|
9
|
+
"license": "ISC",
|
|
8
10
|
"scripts": {
|
|
9
11
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
"license": "ISC"
|
|
13
|
-
}
|
|
12
|
+
}
|
|
13
|
+
}
|