-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathblocks.json
66 lines (66 loc) · 1.21 KB
/
blocks.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"header": {
"blocks": ["telemarketing", "logo"]
},
"header.full": {
"blocks": ["header-layout.desktop", "header-layout.mobile"]
},
"header-layout.desktop": {
"children": ["header-row#desktop-1", "header-row#desktop-2"]
},
"header-row#desktop-1": {
"children": ["telemarketing"],
"props": {
"fullWidth": true
}
},
"header-row#desktop-2": {
"children": [
"logo#header",
"header-spacer",
"search-bar",
"login",
"minicart"
],
"props": {
"sticky": true
}
},
"header-row#desktop-3": {
"children": ["category-menu"]
},
"header-layout.mobile": {
"children": ["header-row#mobile-2"]
},
"header-row#mobile-1": {
"children": ["telemarketing"],
"props": {
"fullWidth": true,
"sticky": true
}
},
"header-row#mobile-2": {
"children": [
"logo#header",
"header-spacer",
"login#header-mobile",
"minicart"
],
"props": {
"sticky": true
}
},
"login#header-mobile": {
"props": {
"showIconProfile": true
}
},
"logo#header": {
"props": {
"width": 132,
"height": 32,
"mobileWidth": 90,
"mobileHeight": 32
}
}
}