-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvtex.store-locator.d.ts
234 lines (233 loc) · 6.58 KB
/
vtex.store-locator.d.ts
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
import { Block } from '.'
declare global {
namespace JSX {
interface IntrinsicElements {
/**
* Renders a list of retail stores and a map with all their locations marked.
*
* @see {@link https://developers.vtex.com/docs/apps/vtex.store-locator}
*/
'store-list': Block<{
/**
* Filter fetched Pickup Points by this tag.
*
* @default undefined
*/
filterByTag?: string
/**
* Icon used to display store location in map.
* Input icon URL (`svg` or `png`).
*
* @default Google's default
*/
icon?: string
/**
* Icon width in pixels (`px`).
*
* @default Image default width
*/
iconWidth?: number
/**
* Icon height in pixels (`px`).
*
* @default Image default height
*/
iconHeight?: number
/**
* Map zoom as a number.
*
* @default 10
*/
zoom?: number
/**
* Latitude coordinate.
*
* @default undefined
*/
lat?: number
/**
* Longitude coordinate.
*
* @default undefined
*/
long?: number
/**
* Property (`name` or `distance`) used to sort the stores list.
*
* @default "distance"
*/
sortBy?: 'name' | 'distance'
}>
/**
* Provides the Pickup Point data to other blocks exported by the app, such as the ones listed below.
*
* @see {@link https://developers.vtex.com/docs/apps/vtex.store-locator}
*/
'store-group': Block<{
/**
* Title used in the page's HTML `title` tag and Structured Data for SEO purposes.
* The `{storeName}`, `{storeCity}`, and `/` or `{storeState}` variables can be used in the title text.
*
* @default "{storeName}"
*/
title?: string
/**
* Description text used in the page's HTML `description` meta tag and Structured Data for SEO purposes.
* The `{storeName}`, `{storeCity}`, and `/` or `{storeState}` variables can be used in the description text.
*
* @default ""
*/
description?: string
/**
* CSS Selector to select the images included in the page's Structured Data.
*
* @default ""
*/
imageSelector?: string
/**
* To provide a unique phone number for each store, a phone number can be entered in the `Instructions` field in the Pickup Points section.
* The `store-instructions` will display a phone number and it will be included in the page's Structured Data.
*
* @default false
*/
instructionsAsPhone?: boolean
}>
/**
* Renders the store name.
*
* @see {@link https://developers.vtex.com/docs/apps/vtex.store-locator}
*/
'store-name': Block<{
/**
* Text to be displayed as store name.
* `{storeName}`, `{storeCity}`, and `/` or `{storeState}` values can be used to generate the store name.
*
* @default undefined
*/
text?: string
/**
* HTML element to wrap the `store-name` block when rendered on the UI.
*
* @default "div"
*/
tag?: string
}>
/**
* Renders a link to return to the previous page.
*
* @see {@link https://developers.vtex.com/docs/apps/vtex.store-locator}
*/
'store-back-link': Block<{
/**
* Text displayed by `store-back-link` block when rendered on the UI.
*
* @default "Back to all stores"
*/
label?: string
}>
/**
* Renders a map with the retail store's location.
*
* @see {@link https://developers.vtex.com/docs/apps/vtex.store-locator}
*/
'store-map': Block<{
/**
* Map width.
*
* @default "100%"
*/
width?: string
/**
* Map height.
*
* @default "200px"
*/
height?: string
/**
* Map zoom as a `number`.
*
* @default 14
*/
zoom?: number
/**
* Icon used to display store location in map.
* Input icon URL (`svg` or `png`).
*
* @default undefined
*/
icon?: string
}>
/**
* Renders the store's address.
*
* @see {@link https://developers.vtex.com/docs/apps/vtex.store-locator}
*/
'store-address': Block<{
/**
* Label for the `store-address` block when rendered on the UI.
*
* @default "Store address"
*/
label?: string
}>
/**
* Renders the store's opening hours.
* This information comes by default from the Pickup Points configuration, but you can also define manually through the Store's theme.
*
* @see {@link https://developers.vtex.com/docs/apps/vtex.store-locator}
*/
'store-hours': Block<{
/**
* Label for the `store-hours` block when rendered on the UI.
*
* @default "Store hours"
*/
label?: string
/**
* Hour format.
* Possible values are `12h` and `24h`.
*
* @default "12h"
*/
format?: '12h' | '24h'
/**
* Format {"dayOfWeek": "Sunday", "openingTime": "11:00am", "closingTime": "5:00pm"}
*
* @default undefined
*/
businessHours?: {
dayOfWeek: string
openingTime: string
closingTime: string
}[]
}>
/**
* Renders a description of the retail store.
*
* @see {@link https://developers.vtex.com/docs/apps/vtex.store-locator}
*/
'store-description': Block<{
/**
* Text to be displayed on the store page.
* Use `{storeName}`, `{storeCity}`, or `{storeState}` within your text to display that store's specific value.
*
* @default undefined
*/
text?: string
}>
/**
* Renders the desired instructions to access the retail store.
*
* @see {@link https://developers.vtex.com/docs/apps/vtex.store-locator}
*/
'store-instructions': Block<{
/**
* Label for the `store-instructions` block when rendered on the UI.
*
* @default "Information"
*/
label?: string
}>
}
}
}