Commit 7b0cca0c by sujata

chnage people page

1 parent d62ee550
{ {
"collectionName": "components_people_advisory_boards", "collectionName": "components_people_advisory_boards",
"info": { "info": {
"displayName": "Advisory Board" "displayName": "Advisory Board",
"description": ""
}, },
"options": {}, "options": {},
"attributes": { "attributes": {
...@@ -9,16 +10,24 @@ ...@@ -9,16 +10,24 @@
"type": "string", "type": "string",
"required": true "required": true
}, },
"Description": { "Designation": {
"type": "string", "type": "string",
"required": true "required": true
}, },
"Image": { "Image": {
"type": "media",
"multiple": false,
"required": false,
"allowedTypes": [ "allowedTypes": [
"images" "images"
], ]
"type": "media", },
"multiple": false "Description": {
"type": "customField",
"options": {
"preset": "default"
},
"customField": "plugin::ckeditor5.CKEditor"
} }
} }
} }
...@@ -167,11 +167,19 @@ export interface PeopleAdvisoryBoard extends Struct.ComponentSchema { ...@@ -167,11 +167,19 @@ export interface PeopleAdvisoryBoard extends Struct.ComponentSchema {
collectionName: 'components_people_advisory_boards'; collectionName: 'components_people_advisory_boards';
info: { info: {
displayName: 'Advisory Board'; displayName: 'Advisory Board';
description: '';
}; };
attributes: { attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required; Name: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.String & Schema.Attribute.Required; Designation: Schema.Attribute.String & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images'>; Image: Schema.Attribute.Media<'images'>;
Description: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
...@@ -578,23 +586,6 @@ export interface HomeAreaExpertiselists extends Struct.ComponentSchema { ...@@ -578,23 +586,6 @@ export interface HomeAreaExpertiselists extends Struct.ComponentSchema {
}; };
} }
export interface CtaCta extends Struct.ComponentSchema {
collectionName: 'components_cta_ctas';
info: {
displayName: 'CTA';
};
attributes: {
text: Schema.Attribute.String &
Schema.Attribute.Required &
Schema.Attribute.DefaultTo<'text'>;
URL: Schema.Attribute.String;
target: Schema.Attribute.Enumeration<
['_blank', '_parent', '_self', '_top']
>;
varient: Schema.Attribute.Enumeration<['outline', 'fill']>;
};
}
export interface DynamicZoneWhatWedoBanner extends Struct.ComponentSchema { export interface DynamicZoneWhatWedoBanner extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_what_wedo_banners'; collectionName: 'components_dynamic_zone_what_wedo_banners';
info: { info: {
...@@ -912,6 +903,23 @@ export interface DynamicZoneAbout extends Struct.ComponentSchema { ...@@ -912,6 +903,23 @@ export interface DynamicZoneAbout extends Struct.ComponentSchema {
}; };
} }
export interface CtaCta extends Struct.ComponentSchema {
collectionName: 'components_cta_ctas';
info: {
displayName: 'CTA';
};
attributes: {
text: Schema.Attribute.String &
Schema.Attribute.Required &
Schema.Attribute.DefaultTo<'text'>;
URL: Schema.Attribute.String;
target: Schema.Attribute.Enumeration<
['_blank', '_parent', '_self', '_top']
>;
varient: Schema.Attribute.Enumeration<['outline', 'fill']>;
};
}
declare module '@strapi/strapi' { declare module '@strapi/strapi' {
export module Public { export module Public {
export interface ComponentSchemas { export interface ComponentSchemas {
...@@ -957,7 +965,6 @@ declare module '@strapi/strapi' { ...@@ -957,7 +965,6 @@ declare module '@strapi/strapi' {
'home.home': HomeHome; 'home.home': HomeHome;
'home.areas-expertise-title': HomeAreasExpertiseTitle; 'home.areas-expertise-title': HomeAreasExpertiseTitle;
'home.area-expertiselists': HomeAreaExpertiselists; 'home.area-expertiselists': HomeAreaExpertiselists;
'cta.cta': CtaCta;
'dynamic-zone.what-wedo-banner': DynamicZoneWhatWedoBanner; 'dynamic-zone.what-wedo-banner': DynamicZoneWhatWedoBanner;
'dynamic-zone.we-offer-sec': DynamicZoneWeOfferSec; 'dynamic-zone.we-offer-sec': DynamicZoneWeOfferSec;
'dynamic-zone.variantcard': DynamicZoneVariantcard; 'dynamic-zone.variantcard': DynamicZoneVariantcard;
...@@ -980,6 +987,7 @@ declare module '@strapi/strapi' { ...@@ -980,6 +987,7 @@ declare module '@strapi/strapi' {
'dynamic-zone.card': DynamicZoneCard; 'dynamic-zone.card': DynamicZoneCard;
'dynamic-zone.background': DynamicZoneBackground; 'dynamic-zone.background': DynamicZoneBackground;
'dynamic-zone.about': DynamicZoneAbout; 'dynamic-zone.about': DynamicZoneAbout;
'cta.cta': CtaCta;
} }
} }
} }
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!