Skip to content

Commit 2cc71e1

Browse files
Merge pull request #54 from connectivedx/quote-component
Adding quote block to UE - Demo TEST
2 parents 02f5099 + 5770dad commit 2cc71e1

5 files changed

Lines changed: 38 additions & 1 deletion

File tree

blocks/quote/quote.css

Whitespace-only changes.

blocks/quote/quote.js

Whitespace-only changes.

component-definition.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -676,6 +676,23 @@
676676
}
677677
}
678678
},
679+
{
680+
"title": "Quote",
681+
"id": "quote",
682+
"plugins": {
683+
"xwalk": {
684+
"page": {
685+
"resourceType": "core/franklin/components/block/v1/block",
686+
"template": {
687+
"name": "Quote",
688+
"model": "quote",
689+
"quote": "<p>You miss 100% of the shots you don't take.</p>",
690+
"author": "Wayne Gretzky"
691+
}
692+
}
693+
}
694+
}
695+
},
679696
{
680697
"title": "Order Accordion",
681698
"id": "order-accordion",

component-filters.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"form",
2020
"embed-adaptive-form",
2121
"order-accordion",
22-
"order-status"
22+
"order-status",
23+
"quote"
2324
]
2425
},
2526
{

component-models.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5166,6 +5166,25 @@
51665166
}
51675167
]
51685168
},
5169+
{
5170+
"id": "quote",
5171+
"fields": [
5172+
{
5173+
"component": "richtext",
5174+
"name": "quote",
5175+
"value": "",
5176+
"label": "Quote",
5177+
"valueType": "string"
5178+
},
5179+
{
5180+
"component": "text",
5181+
"valueType": "string",
5182+
"name": "quthor",
5183+
"label": "Author",
5184+
"value": ""
5185+
}
5186+
]
5187+
},
51695188
{
51705189
"id": "order-accordion",
51715190
"fields": [

0 commit comments

Comments
 (0)