Commit c26e7b3d by sujata

change in card view

1 parent 9f6cd57f
...@@ -4,7 +4,8 @@ ...@@ -4,7 +4,8 @@
"info": { "info": {
"singularName": "book-closure-and-audit-page", "singularName": "book-closure-and-audit-page",
"pluralName": "book-closure-and-audit-pages", "pluralName": "book-closure-and-audit-pages",
"displayName": "Book Closure & Audit Page" "displayName": "Book Closure & Audit Page",
"description": ""
}, },
"options": { "options": {
"draftAndPublish": true "draftAndPublish": true
...@@ -22,7 +23,8 @@ ...@@ -22,7 +23,8 @@
"dynamic-zone.background", "dynamic-zone.background",
"dynamic-zone.about", "dynamic-zone.about",
"dynamic-zone.element-one", "dynamic-zone.element-one",
"dynamic-zone.element-two" "dynamic-zone.element-two",
"dynamic-zone.card"
] ]
}, },
"Clientel": { "Clientel": {
......
{
"collectionName": "components_dynamic_zone_variantcards",
"info": {
"displayName": "Variantcard"
},
"options": {},
"attributes": {
"Heading": {
"type": "component",
"repeatable": false,
"component": "layout.heading"
},
"carddetails": {
"type": "component",
"repeatable": true,
"component": "layout.card-details"
}
}
}
...@@ -574,6 +574,23 @@ export interface HomeAreaExpertiselists extends Struct.ComponentSchema { ...@@ -574,6 +574,23 @@ 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 DynamicZoneWeOfferSec extends Struct.ComponentSchema { export interface DynamicZoneWeOfferSec extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_we_offer_secs'; collectionName: 'components_dynamic_zone_we_offer_secs';
info: { info: {
...@@ -587,6 +604,17 @@ export interface DynamicZoneWeOfferSec extends Struct.ComponentSchema { ...@@ -587,6 +604,17 @@ export interface DynamicZoneWeOfferSec extends Struct.ComponentSchema {
}; };
} }
export interface DynamicZoneVariantcard extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_variantcards';
info: {
displayName: 'Variantcard';
};
attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>;
carddetails: Schema.Attribute.Component<'layout.card-details', true>;
};
}
export interface DynamicZoneText extends Struct.ComponentSchema { export interface DynamicZoneText extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_texts'; collectionName: 'components_dynamic_zone_texts';
info: { info: {
...@@ -846,23 +874,6 @@ export interface DynamicZoneAbout extends Struct.ComponentSchema { ...@@ -846,23 +874,6 @@ 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 {
...@@ -908,7 +919,9 @@ declare module '@strapi/strapi' { ...@@ -908,7 +919,9 @@ 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.we-offer-sec': DynamicZoneWeOfferSec; 'dynamic-zone.we-offer-sec': DynamicZoneWeOfferSec;
'dynamic-zone.variantcard': DynamicZoneVariantcard;
'dynamic-zone.text': DynamicZoneText; 'dynamic-zone.text': DynamicZoneText;
'dynamic-zone.table': DynamicZoneTable; 'dynamic-zone.table': DynamicZoneTable;
'dynamic-zone.rules-list': DynamicZoneRulesList; 'dynamic-zone.rules-list': DynamicZoneRulesList;
...@@ -927,7 +940,6 @@ declare module '@strapi/strapi' { ...@@ -927,7 +940,6 @@ 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;
} }
} }
} }
...@@ -767,6 +767,7 @@ export interface ApiBookClosureAndAuditPageBookClosureAndAuditPage ...@@ -767,6 +767,7 @@ export interface ApiBookClosureAndAuditPageBookClosureAndAuditPage
singularName: 'book-closure-and-audit-page'; singularName: 'book-closure-and-audit-page';
pluralName: 'book-closure-and-audit-pages'; pluralName: 'book-closure-and-audit-pages';
displayName: 'Book Closure & Audit Page'; displayName: 'Book Closure & Audit Page';
description: '';
}; };
options: { options: {
draftAndPublish: true; draftAndPublish: true;
...@@ -779,6 +780,7 @@ export interface ApiBookClosureAndAuditPageBookClosureAndAuditPage ...@@ -779,6 +780,7 @@ export interface ApiBookClosureAndAuditPageBookClosureAndAuditPage
'dynamic-zone.about', 'dynamic-zone.about',
'dynamic-zone.element-one', 'dynamic-zone.element-one',
'dynamic-zone.element-two', 'dynamic-zone.element-two',
'dynamic-zone.card',
] ]
>; >;
Clientel: Schema.Attribute.Component<'layout.clientel', true>; Clientel: Schema.Attribute.Component<'layout.clientel', true>;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!