@thryveai/theme-interfaces 1.5.16 → 1.5.17

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.
package/README.md CHANGED
@@ -1,29 +1,29 @@
1
- #V8 Theme Interfaces
2
-
3
- interfaces for all MI9 Retailer Themes.
4
-
5
- ###icons.interfaces
6
- List of all icons used inside the ui projects.
7
-
8
- ###retailer-settings.interfaces
9
- more info here
10
- https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo
11
- ###theme.interfaces
12
- The interface for each theme, colors, fonts, sizes and other css properties.
13
-
14
- #To Build Project
15
-
16
- ```
17
- npm install
18
- npm run build
19
- ```
20
-
21
- #To Publish npm package
22
- ```
23
- npm login
24
- npm publish
25
- ```
26
- or
27
- ```
28
- npm run push
29
- ```
1
+ #V8 Theme Interfaces
2
+
3
+ interfaces for all MI9 Retailer Themes.
4
+
5
+ ###icons.interfaces
6
+ List of all icons used inside the ui projects.
7
+
8
+ ###retailer-settings.interfaces
9
+ more info here
10
+ https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo
11
+ ###theme.interfaces
12
+ The interface for each theme, colors, fonts, sizes and other css properties.
13
+
14
+ #To Build Project
15
+
16
+ ```
17
+ npm install
18
+ npm run build
19
+ ```
20
+
21
+ #To Publish npm package
22
+ ```
23
+ npm login
24
+ npm publish
25
+ ```
26
+ or
27
+ ```
28
+ npm run push
29
+ ```
@@ -0,0 +1,54 @@
1
+ import { IDefaultCounty, IValidationType } from "./retailer-settings.interfaces";
2
+ export declare type IAdminTemplateInputTypes = {
3
+ [key in IAdminControlType]: IAdminControlType;
4
+ };
5
+ export interface IAdminSettingsTemplate {
6
+ accountPage: IAdminControl;
7
+ addressValidationTypes: IAdminControl;
8
+ allowInStorePurchases: IAdminControl;
9
+ allowPastPurchases: IAdminControl;
10
+ cacheTimeMins: IAdminControl;
11
+ checkoutV1: IAdminControl;
12
+ defaultCountry: IAdminControl;
13
+ defaultShoppingMode: IAdminControl;
14
+ defaultStoreLocation: IAdminControl;
15
+ disableTprPrice: IAdminControl;
16
+ documentTitle: IAdminControl;
17
+ enable3dSecure: IAdminControl;
18
+ enableGoogleTranslate: IAdminControl;
19
+ enableNewsletterSignup: IAdminControl;
20
+ enableNotifications?: IAdminControl;
21
+ favoritesV1: IAdminControl;
22
+ flipp: IAdminControl;
23
+ gtmId: IAdminControl;
24
+ hideTaxOnSummary: IAdminControl;
25
+ houseAccountRegExValidation: IAdminControl;
26
+ isPlanningOnly: IAdminControl;
27
+ limitProductCardTitleHeight: IAdminControl;
28
+ mainHeaderHeight: IAdminControl;
29
+ mapZoom: IAdminControl;
30
+ minimumCreditCardAmount: IAdminControl;
31
+ nutritionZone: IAdminControl;
32
+ productCardTitleHeight: IAdminControl;
33
+ productCardv2: IAdminControl;
34
+ promoTemplateVersion: IAdminControl;
35
+ retailerCountry: IAdminControl;
36
+ retailerName: IAdminControl;
37
+ searchPreview: IAdminControl;
38
+ showCheckoutPromoCode: IAdminControl;
39
+ showImgOnOrder: IAdminControl;
40
+ subHeaderHeight: IAdminControl;
41
+ timeslotModalSettings: IAdminControl;
42
+ useAddressValidation: IAdminControl;
43
+ }
44
+ export interface IAdminControl {
45
+ title: string;
46
+ description: string;
47
+ helpLink?: string;
48
+ type: IAdminControlType;
49
+ options?: string[] | number[] | IDefaultCounty[] | IValidationType[];
50
+ value?: {
51
+ [key: string]: IAdminControl;
52
+ };
53
+ }
54
+ export declare type IAdminControlType = "checkbox" | "collapsableObject" | "color" | "dropdown" | "inputChar" | "inputNumber" | "multiDropdown" | "nullObject" | "object" | "string";
@@ -0,0 +1,3 @@
1
+ import { IAdminSettingsTemplate } from "./admin-settings-interfaces";
2
+ export declare const AdminSettingsTemplate: IAdminSettingsTemplate;
3
+ export default AdminSettingsTemplate;
@@ -0,0 +1,1104 @@
1
+ import { IAdminTemplateInputTypes } from "./admin-settings-interfaces";
2
+ export declare const AdminTemplateInputTypes: IAdminTemplateInputTypes;
3
+ export declare const AdminThemeTemplate: {
4
+ colors: {
5
+ title: string;
6
+ description: string;
7
+ helpLink: string;
8
+ type: import("./admin-settings-interfaces").IAdminControlType;
9
+ value: {
10
+ brandColors: {
11
+ title: string;
12
+ description: string;
13
+ type: import("./admin-settings-interfaces").IAdminControlType;
14
+ value: {
15
+ primary1: {
16
+ title: string;
17
+ locationInTheme: string;
18
+ type: import("./admin-settings-interfaces").IAdminControlType;
19
+ };
20
+ primary2: {
21
+ title: string;
22
+ locationInTheme: string;
23
+ type: import("./admin-settings-interfaces").IAdminControlType;
24
+ };
25
+ primary3: {
26
+ title: string;
27
+ locationInTheme: string;
28
+ type: import("./admin-settings-interfaces").IAdminControlType;
29
+ };
30
+ primary4: {
31
+ title: string;
32
+ locationInTheme: string;
33
+ type: import("./admin-settings-interfaces").IAdminControlType;
34
+ };
35
+ primary5: {
36
+ title: string;
37
+ locationInTheme: string;
38
+ type: import("./admin-settings-interfaces").IAdminControlType;
39
+ };
40
+ secondary1: {
41
+ title: string;
42
+ locationInTheme: string;
43
+ type: import("./admin-settings-interfaces").IAdminControlType;
44
+ };
45
+ secondary2: {
46
+ title: string;
47
+ locationInTheme: string;
48
+ type: import("./admin-settings-interfaces").IAdminControlType;
49
+ };
50
+ secondary3: {
51
+ title: string;
52
+ locationInTheme: string;
53
+ type: import("./admin-settings-interfaces").IAdminControlType;
54
+ };
55
+ secondary4: {
56
+ title: string;
57
+ locationInTheme: string;
58
+ type: import("./admin-settings-interfaces").IAdminControlType;
59
+ };
60
+ secondary5: {
61
+ title: string;
62
+ locationInTheme: string;
63
+ type: import("./admin-settings-interfaces").IAdminControlType;
64
+ };
65
+ tertiary1: {
66
+ title: string;
67
+ locationInTheme: string;
68
+ type: import("./admin-settings-interfaces").IAdminControlType;
69
+ };
70
+ tertiary2: {
71
+ title: string;
72
+ locationInTheme: string;
73
+ type: import("./admin-settings-interfaces").IAdminControlType;
74
+ };
75
+ tertiary3: {
76
+ title: string;
77
+ locationInTheme: string;
78
+ type: import("./admin-settings-interfaces").IAdminControlType;
79
+ };
80
+ tertiary4: {
81
+ title: string;
82
+ locationInTheme: string;
83
+ type: import("./admin-settings-interfaces").IAdminControlType;
84
+ };
85
+ tertiary5: {
86
+ title: string;
87
+ locationInTheme: string;
88
+ type: import("./admin-settings-interfaces").IAdminControlType;
89
+ };
90
+ };
91
+ };
92
+ uiColors: {
93
+ title: string;
94
+ description: string;
95
+ type: import("./admin-settings-interfaces").IAdminControlType;
96
+ value: {
97
+ success: {
98
+ title: string;
99
+ locationInTheme: string;
100
+ type: import("./admin-settings-interfaces").IAdminControlType;
101
+ };
102
+ successDark: {
103
+ title: string;
104
+ locationInTheme: string;
105
+ type: import("./admin-settings-interfaces").IAdminControlType;
106
+ };
107
+ successLight: {
108
+ title: string;
109
+ locationInTheme: string;
110
+ type: import("./admin-settings-interfaces").IAdminControlType;
111
+ };
112
+ warn: {
113
+ title: string;
114
+ locationInTheme: string;
115
+ type: import("./admin-settings-interfaces").IAdminControlType;
116
+ };
117
+ warnDark: {
118
+ title: string;
119
+ locationInTheme: string;
120
+ type: import("./admin-settings-interfaces").IAdminControlType;
121
+ };
122
+ warnLight: {
123
+ title: string;
124
+ locationInTheme: string;
125
+ type: import("./admin-settings-interfaces").IAdminControlType;
126
+ };
127
+ alert: {
128
+ title: string;
129
+ locationInTheme: string;
130
+ type: import("./admin-settings-interfaces").IAdminControlType;
131
+ };
132
+ alertDark: {
133
+ title: string;
134
+ locationInTheme: string;
135
+ type: import("./admin-settings-interfaces").IAdminControlType;
136
+ };
137
+ alertLight: {
138
+ title: string;
139
+ locationInTheme: string;
140
+ type: import("./admin-settings-interfaces").IAdminControlType;
141
+ };
142
+ greyscale1: {
143
+ title: string;
144
+ locationInTheme: string;
145
+ type: import("./admin-settings-interfaces").IAdminControlType;
146
+ };
147
+ greyscale2: {
148
+ title: string;
149
+ locationInTheme: string;
150
+ type: import("./admin-settings-interfaces").IAdminControlType;
151
+ };
152
+ greyscale3: {
153
+ title: string;
154
+ locationInTheme: string;
155
+ type: import("./admin-settings-interfaces").IAdminControlType;
156
+ };
157
+ greyscale4: {
158
+ title: string;
159
+ locationInTheme: string;
160
+ type: import("./admin-settings-interfaces").IAdminControlType;
161
+ };
162
+ greyscale5: {
163
+ title: string;
164
+ locationInTheme: string;
165
+ type: import("./admin-settings-interfaces").IAdminControlType;
166
+ };
167
+ greyscale6: {
168
+ title: string;
169
+ locationInTheme: string;
170
+ type: import("./admin-settings-interfaces").IAdminControlType;
171
+ };
172
+ greyscale7: {
173
+ title: string;
174
+ locationInTheme: string;
175
+ type: import("./admin-settings-interfaces").IAdminControlType;
176
+ };
177
+ promotion1: {
178
+ title: string;
179
+ locationInTheme: string;
180
+ type: import("./admin-settings-interfaces").IAdminControlType;
181
+ };
182
+ promotion2: {
183
+ title: string;
184
+ locationInTheme: string;
185
+ type: import("./admin-settings-interfaces").IAdminControlType;
186
+ };
187
+ };
188
+ };
189
+ };
190
+ };
191
+ buttons: {
192
+ title: string;
193
+ description: string;
194
+ helpLink: string;
195
+ type: import("./admin-settings-interfaces").IAdminControlType;
196
+ value: {
197
+ globalThemeBorderRadius: {
198
+ title: string;
199
+ description: string;
200
+ locationInTheme: string;
201
+ type: import("./admin-settings-interfaces").IAdminControlType;
202
+ };
203
+ globalThemeFontWeight: {
204
+ title: string;
205
+ description: string;
206
+ locationInTheme: string;
207
+ type: import("./admin-settings-interfaces").IAdminControlType;
208
+ };
209
+ globalThemeFontFamily: {
210
+ title: string;
211
+ description: string;
212
+ locationInTheme: string;
213
+ type: import("./admin-settings-interfaces").IAdminControlType;
214
+ };
215
+ iconPosition: {
216
+ title: string;
217
+ description: string;
218
+ locationInTheme: string;
219
+ type: import("./admin-settings-interfaces").IAdminControlType;
220
+ options: string[];
221
+ };
222
+ primary: {
223
+ title: string;
224
+ description: string;
225
+ type: import("./admin-settings-interfaces").IAdminControlType;
226
+ value: {
227
+ borderRadius: {
228
+ title: string;
229
+ locationInTheme: string;
230
+ type: import("./admin-settings-interfaces").IAdminControlType;
231
+ };
232
+ fontWeight: {
233
+ title: string;
234
+ locationInTheme: string;
235
+ type: import("./admin-settings-interfaces").IAdminControlType;
236
+ };
237
+ textTransform: {
238
+ title: string;
239
+ locationInTheme: string;
240
+ type: import("./admin-settings-interfaces").IAdminControlType;
241
+ options: string[];
242
+ };
243
+ static: {
244
+ title: string;
245
+ description: string;
246
+ type: import("./admin-settings-interfaces").IAdminControlType;
247
+ value: {
248
+ bgColor: {
249
+ title: string;
250
+ locationInTheme: string;
251
+ type: import("./admin-settings-interfaces").IAdminControlType;
252
+ };
253
+ borderColor: {
254
+ title: string;
255
+ locationInTheme: string;
256
+ type: import("./admin-settings-interfaces").IAdminControlType;
257
+ };
258
+ color: {
259
+ title: string;
260
+ locationInTheme: string;
261
+ type: import("./admin-settings-interfaces").IAdminControlType;
262
+ };
263
+ iconColor: {
264
+ title: string;
265
+ locationInTheme: string;
266
+ type: import("./admin-settings-interfaces").IAdminControlType;
267
+ };
268
+ };
269
+ };
270
+ hover: {
271
+ title: string;
272
+ description: string;
273
+ type: import("./admin-settings-interfaces").IAdminControlType;
274
+ value: {
275
+ bgColor: {
276
+ title: string;
277
+ locationInTheme: string;
278
+ type: import("./admin-settings-interfaces").IAdminControlType;
279
+ };
280
+ borderColor: {
281
+ title: string;
282
+ locationInTheme: string;
283
+ type: import("./admin-settings-interfaces").IAdminControlType;
284
+ };
285
+ color: {
286
+ title: string;
287
+ locationInTheme: string;
288
+ type: import("./admin-settings-interfaces").IAdminControlType;
289
+ };
290
+ iconColor: {
291
+ title: string;
292
+ locationInTheme: string;
293
+ type: import("./admin-settings-interfaces").IAdminControlType;
294
+ };
295
+ };
296
+ };
297
+ clicked: {
298
+ title: string;
299
+ description: string;
300
+ type: import("./admin-settings-interfaces").IAdminControlType;
301
+ value: {
302
+ bgColor: {
303
+ title: string;
304
+ locationInTheme: string;
305
+ type: import("./admin-settings-interfaces").IAdminControlType;
306
+ };
307
+ borderColor: {
308
+ title: string;
309
+ locationInTheme: string;
310
+ type: import("./admin-settings-interfaces").IAdminControlType;
311
+ };
312
+ color: {
313
+ title: string;
314
+ locationInTheme: string;
315
+ type: import("./admin-settings-interfaces").IAdminControlType;
316
+ };
317
+ iconColor: {
318
+ title: string;
319
+ locationInTheme: string;
320
+ type: import("./admin-settings-interfaces").IAdminControlType;
321
+ };
322
+ };
323
+ };
324
+ disabled: {
325
+ title: string;
326
+ description: string;
327
+ type: import("./admin-settings-interfaces").IAdminControlType;
328
+ value: {
329
+ bgColor: {
330
+ title: string;
331
+ locationInTheme: string;
332
+ type: import("./admin-settings-interfaces").IAdminControlType;
333
+ };
334
+ borderColor: {
335
+ title: string;
336
+ locationInTheme: string;
337
+ type: import("./admin-settings-interfaces").IAdminControlType;
338
+ };
339
+ color: {
340
+ title: string;
341
+ locationInTheme: string;
342
+ type: import("./admin-settings-interfaces").IAdminControlType;
343
+ };
344
+ iconColor: {
345
+ title: string;
346
+ locationInTheme: string;
347
+ type: import("./admin-settings-interfaces").IAdminControlType;
348
+ };
349
+ };
350
+ };
351
+ };
352
+ };
353
+ primaryLight: {
354
+ title: string;
355
+ description: string;
356
+ type: import("./admin-settings-interfaces").IAdminControlType;
357
+ value: {
358
+ borderRadius: {
359
+ title: string;
360
+ locationInTheme: string;
361
+ type: import("./admin-settings-interfaces").IAdminControlType;
362
+ };
363
+ fontWeight: {
364
+ title: string;
365
+ locationInTheme: string;
366
+ type: import("./admin-settings-interfaces").IAdminControlType;
367
+ };
368
+ textTransform: {
369
+ title: string;
370
+ locationInTheme: string;
371
+ type: import("./admin-settings-interfaces").IAdminControlType;
372
+ options: string[];
373
+ };
374
+ static: {
375
+ title: string;
376
+ description: string;
377
+ type: import("./admin-settings-interfaces").IAdminControlType;
378
+ value: {
379
+ bgColor: {
380
+ title: string;
381
+ locationInTheme: string;
382
+ type: import("./admin-settings-interfaces").IAdminControlType;
383
+ };
384
+ borderColor: {
385
+ title: string;
386
+ locationInTheme: string;
387
+ type: import("./admin-settings-interfaces").IAdminControlType;
388
+ };
389
+ color: {
390
+ title: string;
391
+ locationInTheme: string;
392
+ type: import("./admin-settings-interfaces").IAdminControlType;
393
+ };
394
+ iconColor: {
395
+ title: string;
396
+ locationInTheme: string;
397
+ type: import("./admin-settings-interfaces").IAdminControlType;
398
+ };
399
+ };
400
+ };
401
+ hover: {
402
+ title: string;
403
+ description: string;
404
+ type: import("./admin-settings-interfaces").IAdminControlType;
405
+ value: {
406
+ bgColor: {
407
+ title: string;
408
+ locationInTheme: string;
409
+ type: import("./admin-settings-interfaces").IAdminControlType;
410
+ };
411
+ borderColor: {
412
+ title: string;
413
+ locationInTheme: string;
414
+ type: import("./admin-settings-interfaces").IAdminControlType;
415
+ };
416
+ color: {
417
+ title: string;
418
+ locationInTheme: string;
419
+ type: import("./admin-settings-interfaces").IAdminControlType;
420
+ };
421
+ iconColor: {
422
+ title: string;
423
+ locationInTheme: string;
424
+ type: import("./admin-settings-interfaces").IAdminControlType;
425
+ };
426
+ };
427
+ };
428
+ clicked: {
429
+ title: string;
430
+ description: string;
431
+ type: import("./admin-settings-interfaces").IAdminControlType;
432
+ value: {
433
+ bgColor: {
434
+ title: string;
435
+ locationInTheme: string;
436
+ type: import("./admin-settings-interfaces").IAdminControlType;
437
+ };
438
+ borderColor: {
439
+ title: string;
440
+ locationInTheme: string;
441
+ type: import("./admin-settings-interfaces").IAdminControlType;
442
+ };
443
+ color: {
444
+ title: string;
445
+ locationInTheme: string;
446
+ type: import("./admin-settings-interfaces").IAdminControlType;
447
+ };
448
+ iconColor: {
449
+ title: string;
450
+ locationInTheme: string;
451
+ type: import("./admin-settings-interfaces").IAdminControlType;
452
+ };
453
+ };
454
+ };
455
+ disabled: {
456
+ title: string;
457
+ description: string;
458
+ type: import("./admin-settings-interfaces").IAdminControlType;
459
+ value: {
460
+ bgColor: {
461
+ title: string;
462
+ locationInTheme: string;
463
+ type: import("./admin-settings-interfaces").IAdminControlType;
464
+ };
465
+ borderColor: {
466
+ title: string;
467
+ locationInTheme: string;
468
+ type: import("./admin-settings-interfaces").IAdminControlType;
469
+ };
470
+ color: {
471
+ title: string;
472
+ locationInTheme: string;
473
+ type: import("./admin-settings-interfaces").IAdminControlType;
474
+ };
475
+ iconColor: {
476
+ title: string;
477
+ locationInTheme: string;
478
+ type: import("./admin-settings-interfaces").IAdminControlType;
479
+ };
480
+ };
481
+ };
482
+ };
483
+ };
484
+ secondary: {
485
+ title: string;
486
+ description: string;
487
+ type: import("./admin-settings-interfaces").IAdminControlType;
488
+ value: {
489
+ borderRadius: {
490
+ title: string;
491
+ locationInTheme: string;
492
+ type: import("./admin-settings-interfaces").IAdminControlType;
493
+ };
494
+ fontWeight: {
495
+ title: string;
496
+ locationInTheme: string;
497
+ type: import("./admin-settings-interfaces").IAdminControlType;
498
+ };
499
+ textTransform: {
500
+ title: string;
501
+ locationInTheme: string;
502
+ type: import("./admin-settings-interfaces").IAdminControlType;
503
+ options: string[];
504
+ };
505
+ static: {
506
+ title: string;
507
+ description: string;
508
+ type: import("./admin-settings-interfaces").IAdminControlType;
509
+ value: {
510
+ bgColor: {
511
+ title: string;
512
+ locationInTheme: string;
513
+ type: import("./admin-settings-interfaces").IAdminControlType;
514
+ };
515
+ borderColor: {
516
+ title: string;
517
+ locationInTheme: string;
518
+ type: import("./admin-settings-interfaces").IAdminControlType;
519
+ };
520
+ color: {
521
+ title: string;
522
+ locationInTheme: string;
523
+ type: import("./admin-settings-interfaces").IAdminControlType;
524
+ };
525
+ iconColor: {
526
+ title: string;
527
+ locationInTheme: string;
528
+ type: import("./admin-settings-interfaces").IAdminControlType;
529
+ };
530
+ };
531
+ };
532
+ hover: {
533
+ title: string;
534
+ description: string;
535
+ type: import("./admin-settings-interfaces").IAdminControlType;
536
+ value: {
537
+ bgColor: {
538
+ title: string;
539
+ locationInTheme: string;
540
+ type: import("./admin-settings-interfaces").IAdminControlType;
541
+ };
542
+ borderColor: {
543
+ title: string;
544
+ locationInTheme: string;
545
+ type: import("./admin-settings-interfaces").IAdminControlType;
546
+ };
547
+ color: {
548
+ title: string;
549
+ locationInTheme: string;
550
+ type: import("./admin-settings-interfaces").IAdminControlType;
551
+ };
552
+ iconColor: {
553
+ title: string;
554
+ locationInTheme: string;
555
+ type: import("./admin-settings-interfaces").IAdminControlType;
556
+ };
557
+ };
558
+ };
559
+ clicked: {
560
+ title: string;
561
+ description: string;
562
+ type: import("./admin-settings-interfaces").IAdminControlType;
563
+ value: {
564
+ bgColor: {
565
+ title: string;
566
+ locationInTheme: string;
567
+ type: import("./admin-settings-interfaces").IAdminControlType;
568
+ };
569
+ borderColor: {
570
+ title: string;
571
+ locationInTheme: string;
572
+ type: import("./admin-settings-interfaces").IAdminControlType;
573
+ };
574
+ color: {
575
+ title: string;
576
+ locationInTheme: string;
577
+ type: import("./admin-settings-interfaces").IAdminControlType;
578
+ };
579
+ iconColor: {
580
+ title: string;
581
+ locationInTheme: string;
582
+ type: import("./admin-settings-interfaces").IAdminControlType;
583
+ };
584
+ };
585
+ };
586
+ disabled: {
587
+ title: string;
588
+ description: string;
589
+ type: import("./admin-settings-interfaces").IAdminControlType;
590
+ value: {
591
+ bgColor: {
592
+ title: string;
593
+ locationInTheme: string;
594
+ type: import("./admin-settings-interfaces").IAdminControlType;
595
+ };
596
+ borderColor: {
597
+ title: string;
598
+ locationInTheme: string;
599
+ type: import("./admin-settings-interfaces").IAdminControlType;
600
+ };
601
+ color: {
602
+ title: string;
603
+ locationInTheme: string;
604
+ type: import("./admin-settings-interfaces").IAdminControlType;
605
+ };
606
+ iconColor: {
607
+ title: string;
608
+ locationInTheme: string;
609
+ type: import("./admin-settings-interfaces").IAdminControlType;
610
+ };
611
+ };
612
+ };
613
+ };
614
+ };
615
+ secondaryLight: {
616
+ title: string;
617
+ description: string;
618
+ type: import("./admin-settings-interfaces").IAdminControlType;
619
+ value: {
620
+ borderRadius: {
621
+ title: string;
622
+ locationInTheme: string;
623
+ type: import("./admin-settings-interfaces").IAdminControlType;
624
+ };
625
+ fontWeight: {
626
+ title: string;
627
+ locationInTheme: string;
628
+ type: import("./admin-settings-interfaces").IAdminControlType;
629
+ };
630
+ textTransform: {
631
+ title: string;
632
+ locationInTheme: string;
633
+ type: import("./admin-settings-interfaces").IAdminControlType;
634
+ options: string[];
635
+ };
636
+ static: {
637
+ title: string;
638
+ description: string;
639
+ type: import("./admin-settings-interfaces").IAdminControlType;
640
+ value: {
641
+ bgColor: {
642
+ title: string;
643
+ locationInTheme: string;
644
+ type: import("./admin-settings-interfaces").IAdminControlType;
645
+ };
646
+ borderColor: {
647
+ title: string;
648
+ locationInTheme: string;
649
+ type: import("./admin-settings-interfaces").IAdminControlType;
650
+ };
651
+ color: {
652
+ title: string;
653
+ locationInTheme: string;
654
+ type: import("./admin-settings-interfaces").IAdminControlType;
655
+ };
656
+ iconColor: {
657
+ title: string;
658
+ locationInTheme: string;
659
+ type: import("./admin-settings-interfaces").IAdminControlType;
660
+ };
661
+ };
662
+ };
663
+ hover: {
664
+ title: string;
665
+ description: string;
666
+ type: import("./admin-settings-interfaces").IAdminControlType;
667
+ value: {
668
+ bgColor: {
669
+ title: string;
670
+ locationInTheme: string;
671
+ type: import("./admin-settings-interfaces").IAdminControlType;
672
+ };
673
+ borderColor: {
674
+ title: string;
675
+ locationInTheme: string;
676
+ type: import("./admin-settings-interfaces").IAdminControlType;
677
+ };
678
+ color: {
679
+ title: string;
680
+ locationInTheme: string;
681
+ type: import("./admin-settings-interfaces").IAdminControlType;
682
+ };
683
+ iconColor: {
684
+ title: string;
685
+ locationInTheme: string;
686
+ type: import("./admin-settings-interfaces").IAdminControlType;
687
+ };
688
+ };
689
+ };
690
+ clicked: {
691
+ title: string;
692
+ description: string;
693
+ type: import("./admin-settings-interfaces").IAdminControlType;
694
+ value: {
695
+ bgColor: {
696
+ title: string;
697
+ locationInTheme: string;
698
+ type: import("./admin-settings-interfaces").IAdminControlType;
699
+ };
700
+ borderColor: {
701
+ title: string;
702
+ locationInTheme: string;
703
+ type: import("./admin-settings-interfaces").IAdminControlType;
704
+ };
705
+ color: {
706
+ title: string;
707
+ locationInTheme: string;
708
+ type: import("./admin-settings-interfaces").IAdminControlType;
709
+ };
710
+ iconColor: {
711
+ title: string;
712
+ locationInTheme: string;
713
+ type: import("./admin-settings-interfaces").IAdminControlType;
714
+ };
715
+ };
716
+ };
717
+ disabled: {
718
+ title: string;
719
+ description: string;
720
+ type: import("./admin-settings-interfaces").IAdminControlType;
721
+ value: {
722
+ bgColor: {
723
+ title: string;
724
+ locationInTheme: string;
725
+ type: import("./admin-settings-interfaces").IAdminControlType;
726
+ };
727
+ borderColor: {
728
+ title: string;
729
+ locationInTheme: string;
730
+ type: import("./admin-settings-interfaces").IAdminControlType;
731
+ };
732
+ color: {
733
+ title: string;
734
+ locationInTheme: string;
735
+ type: import("./admin-settings-interfaces").IAdminControlType;
736
+ };
737
+ iconColor: {
738
+ title: string;
739
+ locationInTheme: string;
740
+ type: import("./admin-settings-interfaces").IAdminControlType;
741
+ };
742
+ };
743
+ };
744
+ };
745
+ };
746
+ checkout: {
747
+ title: string;
748
+ description: string;
749
+ type: import("./admin-settings-interfaces").IAdminControlType;
750
+ value: {
751
+ borderRadius: {
752
+ title: string;
753
+ locationInTheme: string;
754
+ type: import("./admin-settings-interfaces").IAdminControlType;
755
+ };
756
+ fontWeight: {
757
+ title: string;
758
+ locationInTheme: string;
759
+ type: import("./admin-settings-interfaces").IAdminControlType;
760
+ };
761
+ textTransform: {
762
+ title: string;
763
+ locationInTheme: string;
764
+ type: import("./admin-settings-interfaces").IAdminControlType;
765
+ options: string[];
766
+ };
767
+ static: {
768
+ title: string;
769
+ description: string;
770
+ type: import("./admin-settings-interfaces").IAdminControlType;
771
+ value: {
772
+ bgColor: {
773
+ title: string;
774
+ locationInTheme: string;
775
+ type: import("./admin-settings-interfaces").IAdminControlType;
776
+ };
777
+ borderColor: {
778
+ title: string;
779
+ locationInTheme: string;
780
+ type: import("./admin-settings-interfaces").IAdminControlType;
781
+ };
782
+ color: {
783
+ title: string;
784
+ locationInTheme: string;
785
+ type: import("./admin-settings-interfaces").IAdminControlType;
786
+ };
787
+ iconColor: {
788
+ title: string;
789
+ locationInTheme: string;
790
+ type: import("./admin-settings-interfaces").IAdminControlType;
791
+ };
792
+ };
793
+ };
794
+ hover: {
795
+ title: string;
796
+ description: string;
797
+ type: import("./admin-settings-interfaces").IAdminControlType;
798
+ value: {
799
+ bgColor: {
800
+ title: string;
801
+ locationInTheme: string;
802
+ type: import("./admin-settings-interfaces").IAdminControlType;
803
+ };
804
+ borderColor: {
805
+ title: string;
806
+ locationInTheme: string;
807
+ type: import("./admin-settings-interfaces").IAdminControlType;
808
+ };
809
+ color: {
810
+ title: string;
811
+ locationInTheme: string;
812
+ type: import("./admin-settings-interfaces").IAdminControlType;
813
+ };
814
+ iconColor: {
815
+ title: string;
816
+ locationInTheme: string;
817
+ type: import("./admin-settings-interfaces").IAdminControlType;
818
+ };
819
+ };
820
+ };
821
+ clicked: {
822
+ title: string;
823
+ description: string;
824
+ type: import("./admin-settings-interfaces").IAdminControlType;
825
+ value: {
826
+ bgColor: {
827
+ title: string;
828
+ locationInTheme: string;
829
+ type: import("./admin-settings-interfaces").IAdminControlType;
830
+ };
831
+ borderColor: {
832
+ title: string;
833
+ locationInTheme: string;
834
+ type: import("./admin-settings-interfaces").IAdminControlType;
835
+ };
836
+ color: {
837
+ title: string;
838
+ locationInTheme: string;
839
+ type: import("./admin-settings-interfaces").IAdminControlType;
840
+ };
841
+ iconColor: {
842
+ title: string;
843
+ locationInTheme: string;
844
+ type: import("./admin-settings-interfaces").IAdminControlType;
845
+ };
846
+ };
847
+ };
848
+ disabled: {
849
+ title: string;
850
+ description: string;
851
+ type: import("./admin-settings-interfaces").IAdminControlType;
852
+ value: {
853
+ bgColor: {
854
+ title: string;
855
+ locationInTheme: string;
856
+ type: import("./admin-settings-interfaces").IAdminControlType;
857
+ };
858
+ borderColor: {
859
+ title: string;
860
+ locationInTheme: string;
861
+ type: import("./admin-settings-interfaces").IAdminControlType;
862
+ };
863
+ color: {
864
+ title: string;
865
+ locationInTheme: string;
866
+ type: import("./admin-settings-interfaces").IAdminControlType;
867
+ };
868
+ iconColor: {
869
+ title: string;
870
+ locationInTheme: string;
871
+ type: import("./admin-settings-interfaces").IAdminControlType;
872
+ };
873
+ };
874
+ };
875
+ };
876
+ };
877
+ filterSort: {
878
+ title: string;
879
+ description: string;
880
+ type: import("./admin-settings-interfaces").IAdminControlType;
881
+ value: {
882
+ color: {
883
+ title: string;
884
+ locationInTheme: string;
885
+ type: import("./admin-settings-interfaces").IAdminControlType;
886
+ };
887
+ hoverColor: {
888
+ title: string;
889
+ locationInTheme: string;
890
+ type: import("./admin-settings-interfaces").IAdminControlType;
891
+ };
892
+ };
893
+ };
894
+ };
895
+ };
896
+ header: {
897
+ title: string;
898
+ description: string;
899
+ type: import("./admin-settings-interfaces").IAdminControlType;
900
+ value: {
901
+ topMenu: {
902
+ title: string;
903
+ description: string;
904
+ type: import("./admin-settings-interfaces").IAdminControlType;
905
+ value: {
906
+ color: {
907
+ title: string;
908
+ locationInTheme: string;
909
+ type: import("./admin-settings-interfaces").IAdminControlType;
910
+ };
911
+ backgroundColor: {
912
+ title: string;
913
+ locationInTheme: string;
914
+ type: import("./admin-settings-interfaces").IAdminControlType;
915
+ };
916
+ links: {
917
+ title: string;
918
+ type: import("./admin-settings-interfaces").IAdminControlType;
919
+ value: {
920
+ static: {
921
+ title: string;
922
+ type: import("./admin-settings-interfaces").IAdminControlType;
923
+ value: {
924
+ color: {
925
+ title: string;
926
+ locationInTheme: string;
927
+ type: import("./admin-settings-interfaces").IAdminControlType;
928
+ };
929
+ };
930
+ };
931
+ hover: {
932
+ title: string;
933
+ type: import("./admin-settings-interfaces").IAdminControlType;
934
+ value: {
935
+ color: {
936
+ title: string;
937
+ locationInTheme: string;
938
+ type: import("./admin-settings-interfaces").IAdminControlType;
939
+ };
940
+ };
941
+ };
942
+ clicked: {
943
+ title: string;
944
+ type: import("./admin-settings-interfaces").IAdminControlType;
945
+ value: {
946
+ color: {
947
+ title: string;
948
+ locationInTheme: string;
949
+ type: import("./admin-settings-interfaces").IAdminControlType;
950
+ };
951
+ };
952
+ };
953
+ visited: {
954
+ title: string;
955
+ type: import("./admin-settings-interfaces").IAdminControlType;
956
+ value: {
957
+ color: {
958
+ title: string;
959
+ locationInTheme: string;
960
+ type: import("./admin-settings-interfaces").IAdminControlType;
961
+ };
962
+ };
963
+ };
964
+ };
965
+ };
966
+ };
967
+ };
968
+ mainMenu: {
969
+ title: string;
970
+ description: string;
971
+ type: import("./admin-settings-interfaces").IAdminControlType;
972
+ value: {
973
+ color: {
974
+ title: string;
975
+ locationInTheme: string;
976
+ type: import("./admin-settings-interfaces").IAdminControlType;
977
+ };
978
+ backgroundColor: {
979
+ title: string;
980
+ locationInTheme: string;
981
+ type: import("./admin-settings-interfaces").IAdminControlType;
982
+ };
983
+ };
984
+ };
985
+ bottomMenu: {
986
+ title: string;
987
+ description: string;
988
+ type: import("./admin-settings-interfaces").IAdminControlType;
989
+ value: {
990
+ color: {
991
+ title: string;
992
+ locationInTheme: string;
993
+ type: import("./admin-settings-interfaces").IAdminControlType;
994
+ };
995
+ hoverColor: {
996
+ title: string;
997
+ locationInTheme: string;
998
+ type: import("./admin-settings-interfaces").IAdminControlType;
999
+ };
1000
+ backgroundColor: {
1001
+ title: string;
1002
+ locationInTheme: string;
1003
+ type: import("./admin-settings-interfaces").IAdminControlType;
1004
+ };
1005
+ textTransform: {
1006
+ title: string;
1007
+ locationInTheme: string;
1008
+ type: import("./admin-settings-interfaces").IAdminControlType;
1009
+ options: string[];
1010
+ };
1011
+ fontWeight: {
1012
+ title: string;
1013
+ type: import("./admin-settings-interfaces").IAdminControlType;
1014
+ options: string[];
1015
+ };
1016
+ };
1017
+ };
1018
+ storePopover: {
1019
+ title: string;
1020
+ description: string;
1021
+ type: import("./admin-settings-interfaces").IAdminControlType;
1022
+ value: {
1023
+ backgroundColor: {
1024
+ title: string;
1025
+ locationInTheme: string;
1026
+ type: import("./admin-settings-interfaces").IAdminControlType;
1027
+ };
1028
+ activeBackgroundColor: {
1029
+ title: string;
1030
+ locationInTheme: string;
1031
+ type: import("./admin-settings-interfaces").IAdminControlType;
1032
+ };
1033
+ color: {
1034
+ title: string;
1035
+ locationInTheme: string;
1036
+ type: import("./admin-settings-interfaces").IAdminControlType;
1037
+ };
1038
+ activeColor: {
1039
+ title: string;
1040
+ locationInTheme: string;
1041
+ type: import("./admin-settings-interfaces").IAdminControlType;
1042
+ };
1043
+ borderRadius: {
1044
+ title: string;
1045
+ locationInTheme: string;
1046
+ type: import("./admin-settings-interfaces").IAdminControlType;
1047
+ };
1048
+ reserveTimeIconPosition: {
1049
+ title: string;
1050
+ description: string;
1051
+ type: import("./admin-settings-interfaces").IAdminControlType;
1052
+ options: string[];
1053
+ };
1054
+ };
1055
+ };
1056
+ accountPopover: {
1057
+ title: string;
1058
+ description: string;
1059
+ type: import("./admin-settings-interfaces").IAdminControlType;
1060
+ value: {
1061
+ color: {
1062
+ title: string;
1063
+ locationInTheme: string;
1064
+ type: import("./admin-settings-interfaces").IAdminControlType;
1065
+ };
1066
+ backgroundColor: {
1067
+ title: string;
1068
+ locationInTheme: string;
1069
+ type: import("./admin-settings-interfaces").IAdminControlType;
1070
+ };
1071
+ links: {
1072
+ title: string;
1073
+ description: string;
1074
+ type: import("./admin-settings-interfaces").IAdminControlType;
1075
+ value: {
1076
+ color: {
1077
+ title: string;
1078
+ type: import("./admin-settings-interfaces").IAdminControlType;
1079
+ value: {
1080
+ static: {
1081
+ title: string;
1082
+ locationInTheme: string;
1083
+ type: import("./admin-settings-interfaces").IAdminControlType;
1084
+ };
1085
+ hover: {
1086
+ title: string;
1087
+ locationInTheme: string;
1088
+ type: import("./admin-settings-interfaces").IAdminControlType;
1089
+ };
1090
+ visited: {
1091
+ title: string;
1092
+ locationInTheme: string;
1093
+ type: import("./admin-settings-interfaces").IAdminControlType;
1094
+ };
1095
+ };
1096
+ };
1097
+ };
1098
+ };
1099
+ };
1100
+ };
1101
+ };
1102
+ };
1103
+ };
1104
+ export default AdminThemeTemplate;
@@ -0,0 +1,3 @@
1
+ import { IDefaultRetailerSettings } from "./retailer-settings.interfaces";
2
+ declare const defaultConfig: IDefaultRetailerSettings;
3
+ export default defaultConfig;
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
- {
2
- "name": "@thryveai/theme-interfaces",
3
- "version": "1.5.16",
4
- "description": "Shared Interfaces for all ThryveAi storefront retailer themes.",
5
- "scripts": {
6
- "build": "tsc",
7
- "push": "npm run build && npm publish"
8
- },
9
- "author": "Simon Markey",
10
- "license": "ISC",
11
- "devDependencies": {
12
- "typescript": "4.5.4"
13
- }
14
- }
1
+ {
2
+ "name": "@thryveai/theme-interfaces",
3
+ "version": "1.5.17",
4
+ "description": "Shared Interfaces for all ThryveAi storefront retailer themes.",
5
+ "scripts": {
6
+ "build": "tsc",
7
+ "push": "npm run build && npm publish"
8
+ },
9
+ "author": "Simon Markey",
10
+ "license": "ISC",
11
+ "devDependencies": {
12
+ "typescript": "4.5.4"
13
+ }
14
+ }
@@ -375,7 +375,8 @@ export interface IProductCardsProps {
375
375
  };
376
376
  }
377
377
  export declare type IProductCardLayouts = {
378
- ProductGrids: "default";
378
+ ContainersGrid: "default";
379
+ ContainersCarousel: "default";
379
380
  };
380
381
  export declare type IProductCardLayoutObjects<T> = {
381
382
  [Place in keyof IProductCardLayouts]: {