Commit 9692cd87 by sujata

chnage in heading

1 parent 802e071f
...@@ -30,6 +30,11 @@ ...@@ -30,6 +30,11 @@
"type": "component", "type": "component",
"component": "shared.seo", "component": "shared.seo",
"repeatable": false "repeatable": false
},
"Heading": {
"type": "component",
"component": "heading.heading",
"repeatable": false
} }
} }
} }
...@@ -48,6 +48,11 @@ ...@@ -48,6 +48,11 @@
"type": "customField", "type": "customField",
"customField": "plugin::color-picker.color", "customField": "plugin::color-picker.color",
"regex": "^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$" "regex": "^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$"
},
"Button": {
"type": "component",
"component": "cta.cta",
"repeatable": false
} }
}, },
"config": {} "config": {}
......
...@@ -706,6 +706,7 @@ export interface InnerBannerInnerBanner extends Struct.ComponentSchema { ...@@ -706,6 +706,7 @@ export interface InnerBannerInnerBanner extends Struct.ComponentSchema {
attributes: { attributes: {
BackgroundColor: Schema.Attribute.String & BackgroundColor: Schema.Attribute.String &
Schema.Attribute.CustomField<'plugin::color-picker.color'>; Schema.Attribute.CustomField<'plugin::color-picker.color'>;
Button: Schema.Attribute.Component<'cta.cta', false>;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
Desktopbanner: Schema.Attribute.Media< Desktopbanner: Schema.Attribute.Media<
'images' | 'files' | 'videos' | 'audios' 'images' | 'files' | 'videos' | 'audios'
......
...@@ -810,6 +810,7 @@ export interface ApiBooksAndJournalsPageBooksAndJournalsPage ...@@ -810,6 +810,7 @@ export interface ApiBooksAndJournalsPageBooksAndJournalsPage
createdAt: Schema.Attribute.DateTime; createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;
Heading: Schema.Attribute.Component<'heading.heading', false>;
LeadershipManagementList: Schema.Attribute.Component< LeadershipManagementList: Schema.Attribute.Component<
'faculty.leadership-management-list', 'faculty.leadership-management-list',
true true
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!