Commit 6c3d7df9 by atul

update

1 parent 13654ab7
...@@ -10,6 +10,11 @@ ...@@ -10,6 +10,11 @@
}, },
"link": { "link": {
"type": "string" "type": "string"
},
"navSubSubSublink": {
"type": "component",
"component": "header.dd",
"repeatable": true
} }
}, },
"config": {} "config": {}
......
{
"collectionName": "components_header_dds",
"info": {
"displayName": "DD"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"link": {
"type": "string"
}
},
"config": {}
}
...@@ -501,6 +501,18 @@ export interface HeaderCc extends Struct.ComponentSchema { ...@@ -501,6 +501,18 @@ export interface HeaderCc extends Struct.ComponentSchema {
}; };
attributes: { attributes: {
link: Schema.Attribute.String; link: Schema.Attribute.String;
navSubSubSublink: Schema.Attribute.Component<'header.dd', true>;
title: Schema.Attribute.String;
};
}
export interface HeaderDd extends Struct.ComponentSchema {
collectionName: 'components_header_dds';
info: {
displayName: 'DD';
};
attributes: {
link: Schema.Attribute.String;
title: Schema.Attribute.String; title: Schema.Attribute.String;
}; };
} }
...@@ -1314,6 +1326,7 @@ declare module '@strapi/strapi' { ...@@ -1314,6 +1326,7 @@ declare module '@strapi/strapi' {
'footer.footer-link': FooterFooterLink; 'footer.footer-link': FooterFooterLink;
'footer.links': FooterLinks; 'footer.links': FooterLinks;
'header.cc': HeaderCc; 'header.cc': HeaderCc;
'header.dd': HeaderDd;
'header.nav-link': HeaderNavLink; 'header.nav-link': HeaderNavLink;
'header.nav-sublink': HeaderNavSublink; 'header.nav-sublink': HeaderNavSublink;
'heading.heading': HeadingHeading; 'heading.heading': HeadingHeading;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!