@open-tender/types 0.2.66 → 0.2.68
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.
|
@@ -450,7 +450,11 @@ export interface ThemeMenuItemsTags extends ThemeMenuItemsText {
|
|
|
450
450
|
}
|
|
451
451
|
export interface ThemeMenuItemsTagsAllergens extends Record<string, string> {
|
|
452
452
|
justifyContent: ThemeJustifyContent;
|
|
453
|
+
gap: string;
|
|
454
|
+
gapMobile: string;
|
|
453
455
|
flexDirection: ThemeFlexDirection;
|
|
456
|
+
padding: string;
|
|
457
|
+
paddingMobile: string;
|
|
454
458
|
}
|
|
455
459
|
export interface ThemeMenuItems extends Record<string, ThemeMenuItemsText | ThemeMenuItemsContainer | ThemeMenuItemsBox | ThemeMenuItemsImage | ThemeMenuItemsContent | ThemeMenuItemsTags | ThemeMenuItemsTagsAllergens> {
|
|
456
460
|
allergens: ThemeMenuItemsTags;
|
|
@@ -498,7 +502,11 @@ export interface ThemeTagsBox extends Record<string, string | number> {
|
|
|
498
502
|
minWidthMobile: string;
|
|
499
503
|
padding: string;
|
|
500
504
|
paddingMobile: string;
|
|
505
|
+
transition: string;
|
|
506
|
+
width: string;
|
|
507
|
+
widthMobile: string;
|
|
501
508
|
}
|
|
509
|
+
export declare type ThemeTagsImagePosition = 'TOP' | 'BOTTOM' | 'LEFT' | 'RIGHT' | 'HIDDEN';
|
|
502
510
|
export interface ThemeTagsImage extends Record<string, string | number | boolean> {
|
|
503
511
|
asImg: boolean;
|
|
504
512
|
aspectRatio: number;
|
|
@@ -516,7 +524,7 @@ export interface ThemeTagsImage extends Record<string, string | number | boolean
|
|
|
516
524
|
minWidthMobile: string;
|
|
517
525
|
padding: string;
|
|
518
526
|
paddingMobile: string;
|
|
519
|
-
position:
|
|
527
|
+
position: ThemeTagsImagePosition;
|
|
520
528
|
}
|
|
521
529
|
export interface ThemeTagsText extends Record<string, string> {
|
|
522
530
|
color: string;
|
|
@@ -450,7 +450,11 @@ export interface ThemeMenuItemsTags extends ThemeMenuItemsText {
|
|
|
450
450
|
}
|
|
451
451
|
export interface ThemeMenuItemsTagsAllergens extends Record<string, string> {
|
|
452
452
|
justifyContent: ThemeJustifyContent;
|
|
453
|
+
gap: string;
|
|
454
|
+
gapMobile: string;
|
|
453
455
|
flexDirection: ThemeFlexDirection;
|
|
456
|
+
padding: string;
|
|
457
|
+
paddingMobile: string;
|
|
454
458
|
}
|
|
455
459
|
export interface ThemeMenuItems extends Record<string, ThemeMenuItemsText | ThemeMenuItemsContainer | ThemeMenuItemsBox | ThemeMenuItemsImage | ThemeMenuItemsContent | ThemeMenuItemsTags | ThemeMenuItemsTagsAllergens> {
|
|
456
460
|
allergens: ThemeMenuItemsTags;
|
|
@@ -498,7 +502,11 @@ export interface ThemeTagsBox extends Record<string, string | number> {
|
|
|
498
502
|
minWidthMobile: string;
|
|
499
503
|
padding: string;
|
|
500
504
|
paddingMobile: string;
|
|
505
|
+
transition: string;
|
|
506
|
+
width: string;
|
|
507
|
+
widthMobile: string;
|
|
501
508
|
}
|
|
509
|
+
export declare type ThemeTagsImagePosition = 'TOP' | 'BOTTOM' | 'LEFT' | 'RIGHT' | 'HIDDEN';
|
|
502
510
|
export interface ThemeTagsImage extends Record<string, string | number | boolean> {
|
|
503
511
|
asImg: boolean;
|
|
504
512
|
aspectRatio: number;
|
|
@@ -516,7 +524,7 @@ export interface ThemeTagsImage extends Record<string, string | number | boolean
|
|
|
516
524
|
minWidthMobile: string;
|
|
517
525
|
padding: string;
|
|
518
526
|
paddingMobile: string;
|
|
519
|
-
position:
|
|
527
|
+
position: ThemeTagsImagePosition;
|
|
520
528
|
}
|
|
521
529
|
export interface ThemeTagsText extends Record<string, string> {
|
|
522
530
|
color: string;
|
package/package.json
CHANGED