@thryveai/theme-interfaces 1.5.23 → 1.5.24-beta1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,6 +3,7 @@ export declare type IAdminTemplateInputTypes = {
3
3
  [key in IAdminControlType]: IAdminControlType;
4
4
  };
5
5
  export interface IAdminSettingsTemplate {
6
+ adminPanelOnly: IAdminControl;
6
7
  accountPage: IAdminControl;
7
8
  addressValidationTypes: IAdminControl;
8
9
  allowInStorePurchases: IAdminControl;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,513 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AdminSettingsTemplate = void 0;
4
+ var admin_interfaces_1 = require("./admin.interfaces");
5
+ var addressValidationDescription = "Sets the validation types for user addresses";
6
+ var validationTypes = [
7
+ "luhnValidation",
8
+ "alphaNumeric",
9
+ "alphaOnly",
10
+ "numericOnly",
11
+ "anyPhone",
12
+ "email",
13
+ "password",
14
+ "required",
15
+ "usPhone",
16
+ "usMobileNumber",
17
+ "caPhone",
18
+ "auPhone",
19
+ "iePhone",
20
+ "caProvince",
21
+ "usState",
22
+ "auState",
23
+ "ieCounty",
24
+ "caPostCode",
25
+ "usPostCode",
26
+ "auPostCode",
27
+ "iePostCode",
28
+ "noSpecialChar",
29
+ "correctDate",
30
+ ];
31
+ exports.AdminSettingsTemplate = {
32
+ adminPanelOnly: {
33
+ title: "Retailer Details",
34
+ description: "",
35
+ type: admin_interfaces_1.AdminTemplateInputTypes.object,
36
+ value: {
37
+ bannerName: {
38
+ title: "Name of the Retailer",
39
+ description: "Only used to identify the banner in the admin panel",
40
+ type: "inputChar",
41
+ },
42
+ logoUrl: {
43
+ title: "Name of the Retailer",
44
+ description: "Only used to identify the banner in the admin panel",
45
+ type: "inputChar",
46
+ },
47
+ },
48
+ },
49
+ allowInStorePurchases: {
50
+ title: "InStore Purchases",
51
+ description: "Show the purchases made in store in the order history (requires integration).",
52
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
53
+ type: "checkbox",
54
+ },
55
+ allowPastPurchases: {
56
+ title: "Display PastPurchases",
57
+ description: "Enable displaying past purchases functionality",
58
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
59
+ type: "checkbox",
60
+ },
61
+ cacheTimeMins: {
62
+ title: "Production Cache time",
63
+ description: "How long data will be cached to make the site faster. (1 = 1minute)",
64
+ type: "inputNumber",
65
+ },
66
+ addressValidationTypes: {
67
+ title: "Address Validation",
68
+ description: "User address validation settings.",
69
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/3178627073/Storefront+Address+Validation+in-progress",
70
+ type: "object",
71
+ value: {
72
+ firstName: {
73
+ title: "User's first name",
74
+ description: addressValidationDescription,
75
+ type: "multiDropdown",
76
+ options: ["alphaNumeric", "alphaOnly", "required"],
77
+ },
78
+ familyName: {
79
+ title: "User's Surname",
80
+ description: addressValidationDescription,
81
+ type: "multiDropdown",
82
+ options: ["alphaNumeric", "alphaOnly", "required"],
83
+ },
84
+ addressLine1: {
85
+ title: "Address Line 1",
86
+ description: addressValidationDescription,
87
+ type: "multiDropdown",
88
+ options: ["alphaNumeric", "alphaOnly", "numericOnly", "required"],
89
+ },
90
+ addressLine2: {
91
+ title: "Address Line 2",
92
+ description: addressValidationDescription,
93
+ type: "multiDropdown",
94
+ options: ["alphaNumeric", "alphaOnly", "numericOnly", "required"],
95
+ },
96
+ city: {
97
+ title: "City",
98
+ description: addressValidationDescription,
99
+ type: "multiDropdown",
100
+ options: ["alphaNumeric", "alphaOnly", "required"],
101
+ },
102
+ countyProvinceState: {
103
+ title: "County/Province/State",
104
+ description: addressValidationDescription,
105
+ type: "multiDropdown",
106
+ options: [
107
+ "alphaNumeric",
108
+ "alphaOnly",
109
+ "auState",
110
+ "ieCounty",
111
+ "usState",
112
+ "caProvince",
113
+ "required",
114
+ ],
115
+ },
116
+ instructions: {
117
+ title: "User Instructions Fields",
118
+ description: "Validation for the input fields for user instructions",
119
+ type: "multiDropdown",
120
+ options: ["alphaNumeric", "alphaOnly", "required", "numericOnly"],
121
+ },
122
+ phoneNumber: {
123
+ title: "Phone Number",
124
+ description: "The number to be used to contact the user",
125
+ type: "multiDropdown",
126
+ options: [
127
+ "usPhone",
128
+ "usMobileNumber",
129
+ "numericOnly",
130
+ "auPhone",
131
+ "caPhone",
132
+ "iePhone",
133
+ "anyPhone",
134
+ "required",
135
+ ],
136
+ },
137
+ postCode: {
138
+ title: "Post / zip code",
139
+ description: addressValidationDescription,
140
+ type: "multiDropdown",
141
+ options: [
142
+ "alphaNumeric",
143
+ "auPostCode",
144
+ "caPostCode",
145
+ "iePostCode",
146
+ "usPostCode",
147
+ "numericOnly",
148
+ "required",
149
+ ],
150
+ },
151
+ },
152
+ },
153
+ accountPage: {
154
+ title: "Account Page",
155
+ description: "Account page settings",
156
+ type: admin_interfaces_1.AdminTemplateInputTypes.object,
157
+ value: {
158
+ loyaltyTab: {
159
+ title: "Loyalty Tab",
160
+ description: "Set up Loyalty Tab on account page",
161
+ type: admin_interfaces_1.AdminTemplateInputTypes.object,
162
+ value: {
163
+ enabled: {
164
+ title: "Enable Loyalty Tab",
165
+ description: "Enable Loyalty tab section within My Account page",
166
+ type: admin_interfaces_1.AdminTemplateInputTypes.checkbox,
167
+ },
168
+ disabledEdit: {
169
+ title: "Disable Loyalty edit",
170
+ description: "Prevent users to change their loyalty number",
171
+ type: admin_interfaces_1.AdminTemplateInputTypes.checkbox,
172
+ },
173
+ loyaltyNumberLength: {
174
+ title: "Loyalty Number Length",
175
+ description: "Control the loyalty number length",
176
+ type: "inputNumber",
177
+ },
178
+ loyaltyNumberPrefix: {
179
+ title: "Loyalty Number Prefix",
180
+ description: "Add hardcoded prefix for loyalty numbers (this will affect the length)",
181
+ type: "inputChar",
182
+ },
183
+ loyaltyValidationType: {
184
+ title: "Loyalty Number Validation",
185
+ description: "Select loyalty validation types",
186
+ type: "multiDropdown",
187
+ options: validationTypes,
188
+ },
189
+ },
190
+ },
191
+ },
192
+ },
193
+ // canadianAddressCompleteKey?: string | undefined;
194
+ // checkout?: IGlobalCheckoutProps;
195
+ checkoutV1: {
196
+ title: "Checkout Version",
197
+ description: "Change your version of the checkout shown to users",
198
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
199
+ type: "checkbox",
200
+ },
201
+ // checkoutValidation?: ICheckoutValidation;
202
+ // ctaButtons?: ICtaButtons;
203
+ // daysToRemainSignedIn?: number;
204
+ defaultCountry: {
205
+ title: "Default Country",
206
+ description: "Used for address, phone validation & ui formating.",
207
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
208
+ type: "dropdown",
209
+ options: ["USA", "Canada", "Ireland", "Australia"],
210
+ },
211
+ // defaultSearchParams?: IDefaultSearchParams;
212
+ defaultShoppingMode: {
213
+ title: "Default Shopping Mode",
214
+ description: "Shopping mode the site defaults to when a user lands and has not registered.",
215
+ type: "dropdown",
216
+ options: ["pickup", "planning", "delivery"],
217
+ },
218
+ defaultStoreLocation: {
219
+ title: "Default Store Location",
220
+ description: "Used to center the store selector map to the retailers region. Without setting this, the map defaults to central Africa.",
221
+ type: "object",
222
+ value: {
223
+ latitude: {
224
+ title: "Latitude",
225
+ description: "",
226
+ type: "inputNumber",
227
+ },
228
+ longitude: {
229
+ title: "Longitude",
230
+ description: "",
231
+ type: "inputNumber",
232
+ },
233
+ },
234
+ },
235
+ // defaultStoreLocation?: IDefaultStoreLocation;
236
+ disableTprPrice: {
237
+ title: "Disable TPR Price",
238
+ description: "Disable the display of tpr pricing",
239
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
240
+ type: "checkbox",
241
+ },
242
+ documentTitle: {
243
+ title: "Document Title",
244
+ description: "Fallback browser page Title if no SEO details are added to the page via the CMS.",
245
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
246
+ type: "inputChar",
247
+ },
248
+ // eircode?: string | null;
249
+ enable3dSecure: {
250
+ title: "Enable 3DSecure",
251
+ description: "Enable 3d secure validation for payment",
252
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
253
+ type: "checkbox",
254
+ },
255
+ enableGoogleTranslate: {
256
+ title: "Enable Google Translate",
257
+ description: "Enable google translation display and functionality",
258
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
259
+ type: "checkbox",
260
+ },
261
+ enableNewsletterSignup: {
262
+ title: "Enable Newsletter",
263
+ description: "Enable newsletter signup functionality",
264
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
265
+ type: "checkbox",
266
+ },
267
+ enableNotifications: {
268
+ title: "Enable Notifications",
269
+ description: "Enable notifications functionality",
270
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
271
+ type: "checkbox",
272
+ },
273
+ // errorLoggingLevel?: ILoggingLevel;
274
+ // externalApps?: IExternalApps;
275
+ // externalStoreSelectorUrl: {
276
+ // title: "External Store Selector Url",
277
+ // description:
278
+ // "Shows a link back to previous shoping platform, seen on store selection modal.This is generally used for an existing site that has not migrated all their stores to WynShop.",
279
+ // type: "inputChar",
280
+ // },
281
+ favoritesV1: {
282
+ title: "Favorites Version1",
283
+ description: "Enable version 1 of favorites functionality",
284
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
285
+ type: "checkbox",
286
+ },
287
+ flipp: {
288
+ title: "Flipp Circulars",
289
+ description: "Configure Flipp circulars integration",
290
+ type: "nullObject",
291
+ value: {
292
+ version: {
293
+ title: "Version",
294
+ description: "Will you use version 1 or version 2?",
295
+ type: "checkbox",
296
+ },
297
+ retailer: {
298
+ title: "Retailer Name",
299
+ description: "The retailer setting from flipp",
300
+ type: "inputChar",
301
+ },
302
+ merchantId: {
303
+ title: "Merchant Id",
304
+ description: "The merchant Id setting from flipp",
305
+ type: "inputChar",
306
+ },
307
+ accessToken: {
308
+ title: "Access Token",
309
+ description: "The access token setting from flipp",
310
+ type: "inputChar",
311
+ },
312
+ },
313
+ },
314
+ // globalAnimations?: IGlobalAnimations;
315
+ // googleAutocompleteSettings?: IGoogleAutocompleteSettings;
316
+ gtmId: {
317
+ title: "GTM ID",
318
+ description: "Google Tag Manager ID",
319
+ type: "inputChar",
320
+ },
321
+ hideTaxOnSummary: {
322
+ title: "Hide Summary Tax",
323
+ description: "Hide the tax displayed on the summary box",
324
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
325
+ type: "checkbox",
326
+ },
327
+ houseAccountRegExValidation: {
328
+ title: "House Account Validation",
329
+ description: "Regular expression to validate house accounts",
330
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
331
+ type: "inputChar",
332
+ },
333
+ // idpTarget?: "_self" | "_blank";
334
+ // idpUrl: {
335
+ // title: 'External IDP url',
336
+ // description: 'Is the user using ther own IDP or will they be using the Mi9 My Account functionality for Sign-In / Register and managing the customer account. If Null then Mi9 My Account funcationality will be used.',
337
+ // type: "nullObject",
338
+ // value: {}
339
+ // },
340
+ // instacartUrl?: string | undefined;
341
+ isPlanningOnly: {
342
+ title: "Planning Only",
343
+ description: "Enable if planning mode is the only available shopping method",
344
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
345
+ type: "checkbox",
346
+ },
347
+ // layout?: ILayoutSettings;
348
+ limitProductCardTitleHeight: {
349
+ title: "Limit Product Card Title",
350
+ description: "Restricts the product card title height display",
351
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
352
+ type: "checkbox",
353
+ },
354
+ // loggingLevelClient?: ILoggingLevel;
355
+ // loggingLevelServer?: ILoggingLevel;
356
+ mainHeaderHeight: {
357
+ title: "Main Header Height",
358
+ description: "Use to set the main header height in pixels",
359
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
360
+ type: "inputNumber",
361
+ },
362
+ mapZoom: {
363
+ title: "Map Zoom",
364
+ description: "Use to change the google maps zoom level",
365
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
366
+ type: "inputNumber",
367
+ },
368
+ minimumCreditCardAmount: {
369
+ title: "Minimum Credit Card Amount",
370
+ description: "Use to set the minimum credit card amount",
371
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
372
+ type: "checkbox",
373
+ },
374
+ nutritionZone: {
375
+ title: "Nutrition Template",
376
+ description: "Show the correct nutrition format for the correct zone.",
377
+ type: "dropdown",
378
+ options: ["us", "eu", "au", "ca"],
379
+ },
380
+ // paymentCards?: IPaymentCards;
381
+ // pdpDetailsLayout?: IPdpDetailsLayout;
382
+ productCardTitleHeight: {
383
+ title: "Product Card Title Height",
384
+ description: "Set the product card title height in pixels",
385
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
386
+ type: "inputNumber",
387
+ },
388
+ productCardv2: {
389
+ title: "use product card v2",
390
+ description: "use product card v2",
391
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
392
+ type: "checkbox",
393
+ },
394
+ // TODO: this is set to number in main interface, should be fixed numbers
395
+ promoTemplateVersion: {
396
+ title: "Promo Template Version",
397
+ description: "Select a template version to show promotions",
398
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
399
+ type: "dropdown",
400
+ options: [1, 2, 3],
401
+ },
402
+ // registrationFields?: IRegistrationField[];
403
+ // restrictMapPlacesResults?: IRestrictMapPlaces;
404
+ retailerCountry: {
405
+ title: "Retailer country",
406
+ description: "Select the retailer country",
407
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
408
+ type: "dropdown",
409
+ options: ["us", "ca", "ie", "au"],
410
+ },
411
+ retailerName: {
412
+ title: "Retailer Name",
413
+ description: "Retailers short code e.g the code used for the retailers environment.",
414
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
415
+ type: "inputChar",
416
+ },
417
+ searchPreview: {
418
+ title: "Search Previews",
419
+ description: "Toggle Products/Suggestions to appear on search preview",
420
+ type: "object",
421
+ value: {
422
+ desktop: {
423
+ title: "Desktop",
424
+ description: "",
425
+ type: "object",
426
+ value: {
427
+ products: {
428
+ title: "Show Products",
429
+ description: "",
430
+ type: "checkbox",
431
+ },
432
+ suggestions: {
433
+ title: "Snow Suggestions",
434
+ description: "",
435
+ type: "checkbox",
436
+ },
437
+ },
438
+ },
439
+ mobile: {
440
+ title: "Mobile",
441
+ description: "",
442
+ type: "object",
443
+ value: {
444
+ products: {
445
+ title: "Show Products",
446
+ description: "",
447
+ type: "checkbox",
448
+ },
449
+ suggestions: {
450
+ title: "Snow Suggestions",
451
+ description: "",
452
+ type: "checkbox",
453
+ },
454
+ },
455
+ },
456
+ },
457
+ },
458
+ // secondTierAuthorization?: ISecondTierAuthorization;
459
+ showCheckoutPromoCode: {
460
+ title: "Show Checkout Promo",
461
+ description: "Show checkout promotion code",
462
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
463
+ type: "checkbox",
464
+ },
465
+ showImgOnOrder: {
466
+ title: "Show Image On Order",
467
+ description: "Show images on order",
468
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
469
+ type: "checkbox",
470
+ },
471
+ // smsNotifications?: ISMSConfig;
472
+ subHeaderHeight: {
473
+ title: "Subheader Height",
474
+ description: "Use to set the sub header height in pixels",
475
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
476
+ type: "inputNumber",
477
+ },
478
+ timeslotModalSettings: {
479
+ title: "Timeslot Modal Settings",
480
+ description: "Force timeslot selection",
481
+ type: "object",
482
+ value: {
483
+ showOnAddToCart: {
484
+ title: "Timeslot on Add To Cart",
485
+ description: "Show timeslot popup when user clicks on AddToCart",
486
+ type: "checkbox",
487
+ },
488
+ timeslotRequiredToAddToCart: {
489
+ title: "Force Timeslot on Add To Cart",
490
+ description: "Force a timeslot selection in order to add item in cart",
491
+ type: "checkbox",
492
+ },
493
+ timeslotRequiredToViewCartReview: {
494
+ title: "Force Timeslot on Cart Page",
495
+ description: "Force a timeslot selection in order to view cart page",
496
+ type: "checkbox",
497
+ },
498
+ },
499
+ },
500
+ useAddressValidation: {
501
+ title: "Use Address Validation",
502
+ description: "Use to enable address validation",
503
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo",
504
+ type: "checkbox",
505
+ },
506
+ // footerType: {
507
+ // title: "Footer Version",
508
+ // description: "Change your version of the checkout shown to users",
509
+ // type: "radio",
510
+ // options: [1, 2, 3, 4, 5],
511
+ // },
512
+ };
513
+ exports.default = exports.AdminSettingsTemplate;
@@ -0,0 +1,2 @@
1
+ import { IAdminTemplateInputTypes } from "./admin-settings-interfaces";
2
+ export declare const AdminTemplateInputTypes: IAdminTemplateInputTypes;
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AdminTemplateInputTypes = void 0;
4
+ exports.AdminTemplateInputTypes = {
5
+ checkbox: "checkbox",
6
+ collapsableObject: "collapsableObject",
7
+ color: "color",
8
+ dropdown: "dropdown",
9
+ inputChar: "inputChar",
10
+ inputNumber: "inputChar",
11
+ multiDropdown: "multiDropdown",
12
+ nullObject: "nullObject",
13
+ object: "object",
14
+ string: "string",
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,124 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IconNamesToFiles = void 0;
4
+ exports.IconNamesToFiles = {
5
+ AccountOutline: "account-outline",
6
+ AccountSolid: "account-solid",
7
+ Addresses: "addresses",
8
+ ArrowDown: "arrow-down",
9
+ ArrowRight: "arrow-right",
10
+ ArrowUpdown: "arrow-updown",
11
+ BarScan: "bar-scan",
12
+ Bell: "bell",
13
+ Blog: "blog",
14
+ Cart: "cart",
15
+ Check: "check",
16
+ ChevronDown: "chevron-down",
17
+ ChevronLeft: "chevron-left",
18
+ ChevronRight: "chevron-right",
19
+ ChevronUp: "chevron-up",
20
+ Circular: "circular",
21
+ Clear: "clear",
22
+ Close: "close",
23
+ Coupon: "coupon",
24
+ Dashboard: "dashboard",
25
+ DeliveryOutline: "delivery-outline",
26
+ DeliverySolid: "delivery-solid",
27
+ Dietary: "dietary",
28
+ DoubleArrows: "double-arrows",
29
+ Download: "download",
30
+ Dropship: "dropship",
31
+ Eco: "eco",
32
+ Edit: "edit",
33
+ Error: "error",
34
+ FaceHappy: "face-happy",
35
+ FaceSad: "face-sad",
36
+ Facebook: "facebook",
37
+ Fav: "fav",
38
+ FavSolid: "fav-solid",
39
+ Filter: "filter",
40
+ Flag: "flag",
41
+ Geolocate: "geolocate",
42
+ Hamburger: "hamburger",
43
+ Help: "help",
44
+ Home: "home",
45
+ Info: "info",
46
+ Instacart: "instacart",
47
+ Instagram: "instagram",
48
+ ItemLocation: "item-location",
49
+ ListCheck: "list-check",
50
+ ListItems: "list-items",
51
+ ListLarge: "list-large",
52
+ ListRemove: "list-remove",
53
+ ListSave: "list-save",
54
+ ListSearch: "list-search",
55
+ LocationPin: "location-pin",
56
+ LocationDistance: "location-distance",
57
+ LoyaltyCard: "loyaltycard",
58
+ Mail: "mail",
59
+ Minus: "minus",
60
+ MoreOptionsH: "more-options-h",
61
+ MoreOptionsV: "more-options-v",
62
+ Note: "note",
63
+ Notifications: "notifications",
64
+ NoteFilled: "note-filled",
65
+ Orders: "orders",
66
+ PastPurchases: "past-purchases",
67
+ Pause: "pause",
68
+ PaymentOutline: "payment-outline",
69
+ PaymentSolid: "payment-solid",
70
+ Phone: "phone",
71
+ PhoneMobile: "phone-mobile",
72
+ Pickup: "pickup",
73
+ PickupInfo: "pickup-info",
74
+ Pinterest: "pinterest",
75
+ Plus: "plus",
76
+ Print: "print",
77
+ PromoOutline: "promo-outline",
78
+ PromoSolid: "promo-solid",
79
+ RadioActive: "radio-active",
80
+ RadioEmpty: "radio-empty",
81
+ RecipeCalories: "recipe-calories",
82
+ RecipeCooktime: "recipe-cooktime",
83
+ RecipeIngredients: "recipe-ingredients",
84
+ RecipePreptime: "recipe-preptime",
85
+ RecipeServings: "recipe-servings",
86
+ Remove: "remove",
87
+ Reserve: "reserve",
88
+ ReserveTime: "reserve-time",
89
+ Search: "search",
90
+ SelectCheck: "select-check",
91
+ SelectEmpty: "select-empty",
92
+ SelectMark: "select-mark",
93
+ Send: "send",
94
+ Settings: "settings",
95
+ Share: "share",
96
+ SortGrid: "sort-grid",
97
+ SortList: "sort-list",
98
+ StarOutline: "star-outline",
99
+ StarSolid: "star-solid",
100
+ Substitute: "subtitute",
101
+ SubstituteBestmatch: "subtitute-bestmatch",
102
+ SubstituteNone: "subtitute-none",
103
+ SubstituteProduct: "subtitute-product",
104
+ Trash: "trash",
105
+ Twitter: "twitter",
106
+ Unavailable: "unavailable",
107
+ Voice: "voice",
108
+ Warning: "warning",
109
+ Youtube: "youtube",
110
+ YourLocation: "your-location",
111
+ GlutenFree: "Gluten-Free",
112
+ Local: "Local",
113
+ Organic: "Organic",
114
+ None: "None",
115
+ VisaLogo: "visa-logo",
116
+ MasterLogo: "master-card-logo",
117
+ VisaCard: "visa-card",
118
+ MasterCard: "master-card-card",
119
+ AmExpCard: "american-express-card",
120
+ DiscoverCard: "discover-card",
121
+ VisaVerified: "visa-verified",
122
+ MasterSecure: "master-card-secure",
123
+ Comodo: "comodo",
124
+ };