feat: call to action paragraph-a sortzen du
This commit is contained in:
@@ -27,8 +27,8 @@
|
||||
"type": "dynamiczone",
|
||||
"components": [
|
||||
"paragraph.testua",
|
||||
"paragraph.youtube",
|
||||
"paragraph.irudia"
|
||||
"paragraph.irudia",
|
||||
"paragraph.call-to-action"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
19
back/src/components/paragraph/call-to-action.json
Normal file
19
back/src/components/paragraph/call-to-action.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"collectionName": "components_paragraph_call_to_actions",
|
||||
"info": {
|
||||
"displayName": "call to action",
|
||||
"icon": "rocket"
|
||||
},
|
||||
"options": {},
|
||||
"attributes": {
|
||||
"url": {
|
||||
"type": "string",
|
||||
"required": true
|
||||
},
|
||||
"label": {
|
||||
"type": "string",
|
||||
"required": true
|
||||
}
|
||||
},
|
||||
"config": {}
|
||||
}
|
||||
13
back/types/generated/components.d.ts
vendored
13
back/types/generated/components.d.ts
vendored
@@ -89,6 +89,18 @@ export interface HasieraUrl extends Struct.ComponentSchema {
|
||||
};
|
||||
}
|
||||
|
||||
export interface ParagraphCallToAction extends Struct.ComponentSchema {
|
||||
collectionName: 'components_paragraph_call_to_actions';
|
||||
info: {
|
||||
displayName: 'call to action';
|
||||
icon: 'rocket';
|
||||
};
|
||||
attributes: {
|
||||
label: Schema.Attribute.String & Schema.Attribute.Required;
|
||||
url: Schema.Attribute.String & Schema.Attribute.Required;
|
||||
};
|
||||
}
|
||||
|
||||
export interface ParagraphIrudia extends Struct.ComponentSchema {
|
||||
collectionName: 'components_paragraph_irudias';
|
||||
info: {
|
||||
@@ -135,6 +147,7 @@ declare module '@strapi/strapi' {
|
||||
'hasiera.parte-hartu': HasieraParteHartu;
|
||||
'hasiera.parte-hartzea': HasieraParteHartzea;
|
||||
'hasiera.url': HasieraUrl;
|
||||
'paragraph.call-to-action': ParagraphCallToAction;
|
||||
'paragraph.irudia': ParagraphIrudia;
|
||||
'paragraph.testua': ParagraphTestua;
|
||||
'paragraph.youtube': ParagraphYoutube;
|
||||
|
||||
2
back/types/generated/contentTypes.d.ts
vendored
2
back/types/generated/contentTypes.d.ts
vendored
@@ -495,7 +495,7 @@ export interface ApiOrriBasikoaOrriBasikoa extends Struct.CollectionTypeSchema {
|
||||
Schema.Attribute.Private;
|
||||
deskribapena: Schema.Attribute.Text;
|
||||
edukiLibrea: Schema.Attribute.DynamicZone<
|
||||
['paragraph.testua', 'paragraph.youtube', 'paragraph.irudia']
|
||||
['paragraph.testua', 'paragraph.irudia', 'paragraph.call-to-action']
|
||||
>;
|
||||
izenburua: Schema.Attribute.String & Schema.Attribute.Required;
|
||||
locale: Schema.Attribute.String & Schema.Attribute.Private;
|
||||
|
||||
Reference in New Issue
Block a user