@open-tender/types 0.2.32 → 0.2.33

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,21 @@ export interface ThemeLogo extends Record<string, string> {
370
370
  width: string;
371
371
  widthMobile: string;
372
372
  }
373
- export interface ThemeMenuItemsLayout extends Record<string, string | number> {
374
- containerMaxWidth: string;
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;
385
+ perRowMobile: number;
379
386
  width: string;
387
+ widthMobile: string;
380
388
  }
381
389
  export interface ThemeMenuItemsBox extends Record<string, string | number> {
382
390
  bgColor: string;
@@ -394,6 +402,8 @@ export interface ThemeMenuItemsBox extends Record<string, string | number> {
394
402
  minWidthMobile: string;
395
403
  padding: string;
396
404
  paddingMobile: string;
405
+ width: string;
406
+ widthMobile: string;
397
407
  }
398
408
  export interface ThemeMenuItemsImage extends Record<string, string | number | boolean> {
399
409
  asImg: boolean;
@@ -424,12 +434,12 @@ export interface ThemeMenuItemsText extends Record<string, string> {
424
434
  fontSize: string;
425
435
  fontSizeMobile: string;
426
436
  }
427
- export interface ThemeMenuItems extends Record<string, ThemeMenuItemsText | ThemeMenuItemsLayout | ThemeMenuItemsBox | ThemeMenuItemsImage | ThemeMenuItemsContent> {
437
+ export interface ThemeMenuItems extends Record<string, ThemeMenuItemsText | ThemeMenuItemsContainer | ThemeMenuItemsBox | ThemeMenuItemsImage | ThemeMenuItemsContent> {
428
438
  box: ThemeMenuItemsBox;
429
439
  calories: ThemeMenuItemsText;
440
+ container: ThemeMenuItemsContainer;
430
441
  content: ThemeMenuItemsContent;
431
442
  image: ThemeMenuItemsImage;
432
- layout: ThemeMenuItemsLayout;
433
443
  price: ThemeMenuItemsText;
434
444
  text: ThemeMenuItemsText;
435
445
  title: ThemeMenuItemsText;
@@ -370,13 +370,21 @@ export interface ThemeLogo extends Record<string, string> {
370
370
  width: string;
371
371
  widthMobile: string;
372
372
  }
373
- export interface ThemeMenuItemsLayout extends Record<string, string | number> {
374
- containerMaxWidth: string;
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;
385
+ perRowMobile: number;
379
386
  width: string;
387
+ widthMobile: string;
380
388
  }
381
389
  export interface ThemeMenuItemsBox extends Record<string, string | number> {
382
390
  bgColor: string;
@@ -394,6 +402,8 @@ export interface ThemeMenuItemsBox extends Record<string, string | number> {
394
402
  minWidthMobile: string;
395
403
  padding: string;
396
404
  paddingMobile: string;
405
+ width: string;
406
+ widthMobile: string;
397
407
  }
398
408
  export interface ThemeMenuItemsImage extends Record<string, string | number | boolean> {
399
409
  asImg: boolean;
@@ -424,12 +434,12 @@ export interface ThemeMenuItemsText extends Record<string, string> {
424
434
  fontSize: string;
425
435
  fontSizeMobile: string;
426
436
  }
427
- export interface ThemeMenuItems extends Record<string, ThemeMenuItemsText | ThemeMenuItemsLayout | ThemeMenuItemsBox | ThemeMenuItemsImage | ThemeMenuItemsContent> {
437
+ export interface ThemeMenuItems extends Record<string, ThemeMenuItemsText | ThemeMenuItemsContainer | ThemeMenuItemsBox | ThemeMenuItemsImage | ThemeMenuItemsContent> {
428
438
  box: ThemeMenuItemsBox;
429
439
  calories: ThemeMenuItemsText;
440
+ container: ThemeMenuItemsContainer;
430
441
  content: ThemeMenuItemsContent;
431
442
  image: ThemeMenuItemsImage;
432
- layout: ThemeMenuItemsLayout;
433
443
  price: ThemeMenuItemsText;
434
444
  text: ThemeMenuItemsText;
435
445
  title: ThemeMenuItemsText;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.2.32",
3
+ "version": "0.2.33",
4
4
  "description": "A library of types for use with Open Tender applications that utilize our cloud-based Order API.",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",