Commit 13654ab7 by atul

update

1 parent 1cfc93bc
...@@ -52,6 +52,11 @@ ...@@ -52,6 +52,11 @@
"second-dynamic-section.description" "second-dynamic-section.description"
] ]
}, },
"ReadMore": {
"type": "component",
"component": "read-more.read-more",
"repeatable": true
},
"seo": { "seo": {
"type": "component", "type": "component",
"component": "shared.seo", "component": "shared.seo",
......
{
"collectionName": "components_read_more_headings",
"info": {
"displayName": "Heading"
},
"options": {},
"attributes": {
"Heading1": {
"type": "string"
},
"Heading2": {
"type": "string"
},
"TextAlign": {
"type": "enumeration",
"default": "center",
"enum": [
"left",
"center",
"right"
]
}
},
"config": {}
}
{
"collectionName": "components_read_more_read_mores",
"info": {
"displayName": "Read More"
},
"options": {},
"attributes": {
"Heading": {
"type": "component",
"component": "read-more.heading",
"repeatable": false
},
"Description": {
"type": "customField",
"customField": "plugin::ckeditor5.CKEditor",
"options": {
"preset": "defaultHtml"
}
}
},
"config": {}
}
...@@ -937,6 +937,36 @@ export interface PressNewList extends Struct.ComponentSchema { ...@@ -937,6 +937,36 @@ export interface PressNewList extends Struct.ComponentSchema {
}; };
} }
export interface ReadMoreHeading extends Struct.ComponentSchema {
collectionName: 'components_read_more_headings';
info: {
displayName: 'Heading';
};
attributes: {
Heading1: Schema.Attribute.String;
Heading2: Schema.Attribute.String;
TextAlign: Schema.Attribute.Enumeration<['left', 'center', 'right']> &
Schema.Attribute.DefaultTo<'center'>;
};
}
export interface ReadMoreReadMore extends Struct.ComponentSchema {
collectionName: 'components_read_more_read_mores';
info: {
displayName: 'Read More';
};
attributes: {
Description: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'defaultHtml';
}
>;
Heading: Schema.Attribute.Component<'read-more.heading', false>;
};
}
export interface SecondDynamicSectionCard extends Struct.ComponentSchema { export interface SecondDynamicSectionCard extends Struct.ComponentSchema {
collectionName: 'components_second_dynamic_section_cards'; collectionName: 'components_second_dynamic_section_cards';
info: { info: {
...@@ -1316,6 +1346,8 @@ declare module '@strapi/strapi' { ...@@ -1316,6 +1346,8 @@ declare module '@strapi/strapi' {
'placement.sucess-batch': PlacementSucessBatch; 'placement.sucess-batch': PlacementSucessBatch;
'press.media-coverage': PressMediaCoverage; 'press.media-coverage': PressMediaCoverage;
'press.new-list': PressNewList; 'press.new-list': PressNewList;
'read-more.heading': ReadMoreHeading;
'read-more.read-more': ReadMoreReadMore;
'second-dynamic-section.card': SecondDynamicSectionCard; 'second-dynamic-section.card': SecondDynamicSectionCard;
'second-dynamic-section.card-slider': SecondDynamicSectionCardSlider; 'second-dynamic-section.card-slider': SecondDynamicSectionCardSlider;
'second-dynamic-section.description': SecondDynamicSectionDescription; 'second-dynamic-section.description': SecondDynamicSectionDescription;
......
...@@ -2323,6 +2323,7 @@ export interface ApiPgdmCurriculumPgdmCurriculum ...@@ -2323,6 +2323,7 @@ export interface ApiPgdmCurriculumPgdmCurriculum
Menu: Schema.Attribute.Enumeration<['Programmes', 'curriculum']>; Menu: Schema.Attribute.Enumeration<['Programmes', 'curriculum']>;
PageTitle: Schema.Attribute.String; PageTitle: Schema.Attribute.String;
publishedAt: Schema.Attribute.DateTime; publishedAt: Schema.Attribute.DateTime;
ReadMore: Schema.Attribute.Component<'read-more.read-more', true>;
seo: Schema.Attribute.Component<'shared.seo', false>; seo: Schema.Attribute.Component<'shared.seo', false>;
slug: Schema.Attribute.UID<'PageTitle'>; slug: Schema.Attribute.UID<'PageTitle'>;
updatedAt: Schema.Attribute.DateTime; updatedAt: Schema.Attribute.DateTime;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!