@open-tender/types 0.2.32 → 0.2.34
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.
|
@@ -370,13 +370,19 @@ export interface ThemeLogo extends Record<string, string> {
|
|
|
370
370
|
width: string;
|
|
371
371
|
widthMobile: string;
|
|
372
372
|
}
|
|
373
|
-
export interface
|
|
374
|
-
|
|
373
|
+
export interface ThemeMenuItemsContainer extends Record<string, string | number> {
|
|
374
|
+
maxWidth: string;
|
|
375
375
|
gap: string;
|
|
376
376
|
gapHalf: string;
|
|
377
|
+
gapMobile: string;
|
|
378
|
+
gapMobileHalf: string;
|
|
377
379
|
justifyContent: ThemeJustifyContent;
|
|
380
|
+
margin: string;
|
|
381
|
+
marginMobile: string;
|
|
382
|
+
padding: string;
|
|
383
|
+
paddingMobile: string;
|
|
378
384
|
perRow: number;
|
|
379
|
-
|
|
385
|
+
perRowMobile: number;
|
|
380
386
|
}
|
|
381
387
|
export interface ThemeMenuItemsBox extends Record<string, string | number> {
|
|
382
388
|
bgColor: string;
|
|
@@ -394,6 +400,8 @@ export interface ThemeMenuItemsBox extends Record<string, string | number> {
|
|
|
394
400
|
minWidthMobile: string;
|
|
395
401
|
padding: string;
|
|
396
402
|
paddingMobile: string;
|
|
403
|
+
width: string;
|
|
404
|
+
widthMobile: string;
|
|
397
405
|
}
|
|
398
406
|
export interface ThemeMenuItemsImage extends Record<string, string | number | boolean> {
|
|
399
407
|
asImg: boolean;
|
|
@@ -424,12 +432,12 @@ export interface ThemeMenuItemsText extends Record<string, string> {
|
|
|
424
432
|
fontSize: string;
|
|
425
433
|
fontSizeMobile: string;
|
|
426
434
|
}
|
|
427
|
-
export interface ThemeMenuItems extends Record<string, ThemeMenuItemsText |
|
|
435
|
+
export interface ThemeMenuItems extends Record<string, ThemeMenuItemsText | ThemeMenuItemsContainer | ThemeMenuItemsBox | ThemeMenuItemsImage | ThemeMenuItemsContent> {
|
|
428
436
|
box: ThemeMenuItemsBox;
|
|
429
437
|
calories: ThemeMenuItemsText;
|
|
438
|
+
container: ThemeMenuItemsContainer;
|
|
430
439
|
content: ThemeMenuItemsContent;
|
|
431
440
|
image: ThemeMenuItemsImage;
|
|
432
|
-
layout: ThemeMenuItemsLayout;
|
|
433
441
|
price: ThemeMenuItemsText;
|
|
434
442
|
text: ThemeMenuItemsText;
|
|
435
443
|
title: ThemeMenuItemsText;
|
|
@@ -370,13 +370,19 @@ export interface ThemeLogo extends Record<string, string> {
|
|
|
370
370
|
width: string;
|
|
371
371
|
widthMobile: string;
|
|
372
372
|
}
|
|
373
|
-
export interface
|
|
374
|
-
|
|
373
|
+
export interface ThemeMenuItemsContainer extends Record<string, string | number> {
|
|
374
|
+
maxWidth: string;
|
|
375
375
|
gap: string;
|
|
376
376
|
gapHalf: string;
|
|
377
|
+
gapMobile: string;
|
|
378
|
+
gapMobileHalf: string;
|
|
377
379
|
justifyContent: ThemeJustifyContent;
|
|
380
|
+
margin: string;
|
|
381
|
+
marginMobile: string;
|
|
382
|
+
padding: string;
|
|
383
|
+
paddingMobile: string;
|
|
378
384
|
perRow: number;
|
|
379
|
-
|
|
385
|
+
perRowMobile: number;
|
|
380
386
|
}
|
|
381
387
|
export interface ThemeMenuItemsBox extends Record<string, string | number> {
|
|
382
388
|
bgColor: string;
|
|
@@ -394,6 +400,8 @@ export interface ThemeMenuItemsBox extends Record<string, string | number> {
|
|
|
394
400
|
minWidthMobile: string;
|
|
395
401
|
padding: string;
|
|
396
402
|
paddingMobile: string;
|
|
403
|
+
width: string;
|
|
404
|
+
widthMobile: string;
|
|
397
405
|
}
|
|
398
406
|
export interface ThemeMenuItemsImage extends Record<string, string | number | boolean> {
|
|
399
407
|
asImg: boolean;
|
|
@@ -424,12 +432,12 @@ export interface ThemeMenuItemsText extends Record<string, string> {
|
|
|
424
432
|
fontSize: string;
|
|
425
433
|
fontSizeMobile: string;
|
|
426
434
|
}
|
|
427
|
-
export interface ThemeMenuItems extends Record<string, ThemeMenuItemsText |
|
|
435
|
+
export interface ThemeMenuItems extends Record<string, ThemeMenuItemsText | ThemeMenuItemsContainer | ThemeMenuItemsBox | ThemeMenuItemsImage | ThemeMenuItemsContent> {
|
|
428
436
|
box: ThemeMenuItemsBox;
|
|
429
437
|
calories: ThemeMenuItemsText;
|
|
438
|
+
container: ThemeMenuItemsContainer;
|
|
430
439
|
content: ThemeMenuItemsContent;
|
|
431
440
|
image: ThemeMenuItemsImage;
|
|
432
|
-
layout: ThemeMenuItemsLayout;
|
|
433
441
|
price: ThemeMenuItemsText;
|
|
434
442
|
text: ThemeMenuItemsText;
|
|
435
443
|
title: ThemeMenuItemsText;
|
package/package.json
CHANGED