@financial-times/dotcom-types-navigation 7.1.1 → 7.1.4
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.d.ts +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -61,14 +61,14 @@ export interface INavMeganavSections {
|
|
61
61
|
dataset: 'subsections'
|
62
62
|
title: string
|
63
63
|
/** This data has been split into "columns" by the Next navigation API */
|
64
|
-
data
|
64
|
+
data?: TNavMenuItem[][]
|
65
65
|
}
|
66
66
|
|
67
67
|
export interface INavMeganavArticles {
|
68
68
|
component: 'articlelist'
|
69
69
|
dataset: 'popular'
|
70
70
|
title: string
|
71
|
-
data
|
71
|
+
data?: TNavMenuItem[]
|
72
72
|
}
|
73
73
|
|
74
74
|
export type TNavSubNavigation = {
|