@open-tender/types 0.2.68 → 0.2.69

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.
@@ -408,6 +408,7 @@ export interface ThemeMenuItemsBox extends Record<string, string | number> {
408
408
  width: string;
409
409
  widthMobile: string;
410
410
  }
411
+ export declare type ThemeImagePosition = 'TOP' | 'BOTTOM' | 'LEFT' | 'RIGHT' | 'HIDDEN';
411
412
  export interface ThemeMenuItemsImage extends Record<string, string | number | boolean> {
412
413
  asImg: boolean;
413
414
  aspectRatio: number;
@@ -425,7 +426,7 @@ export interface ThemeMenuItemsImage extends Record<string, string | number | bo
425
426
  minWidthMobile: string;
426
427
  padding: string;
427
428
  paddingMobile: string;
428
- position: string;
429
+ position: ThemeImagePosition;
429
430
  }
430
431
  export interface ThemeMenuItemsContent extends Record<string, string> {
431
432
  padding: string;
@@ -506,7 +507,6 @@ export interface ThemeTagsBox extends Record<string, string | number> {
506
507
  width: string;
507
508
  widthMobile: string;
508
509
  }
509
- export declare type ThemeTagsImagePosition = 'TOP' | 'BOTTOM' | 'LEFT' | 'RIGHT' | 'HIDDEN';
510
510
  export interface ThemeTagsImage extends Record<string, string | number | boolean> {
511
511
  asImg: boolean;
512
512
  aspectRatio: number;
@@ -524,7 +524,7 @@ export interface ThemeTagsImage extends Record<string, string | number | boolean
524
524
  minWidthMobile: string;
525
525
  padding: string;
526
526
  paddingMobile: string;
527
- position: ThemeTagsImagePosition;
527
+ position: ThemeImagePosition;
528
528
  }
529
529
  export interface ThemeTagsText extends Record<string, string> {
530
530
  color: string;
@@ -408,6 +408,7 @@ export interface ThemeMenuItemsBox extends Record<string, string | number> {
408
408
  width: string;
409
409
  widthMobile: string;
410
410
  }
411
+ export declare type ThemeImagePosition = 'TOP' | 'BOTTOM' | 'LEFT' | 'RIGHT' | 'HIDDEN';
411
412
  export interface ThemeMenuItemsImage extends Record<string, string | number | boolean> {
412
413
  asImg: boolean;
413
414
  aspectRatio: number;
@@ -425,7 +426,7 @@ export interface ThemeMenuItemsImage extends Record<string, string | number | bo
425
426
  minWidthMobile: string;
426
427
  padding: string;
427
428
  paddingMobile: string;
428
- position: string;
429
+ position: ThemeImagePosition;
429
430
  }
430
431
  export interface ThemeMenuItemsContent extends Record<string, string> {
431
432
  padding: string;
@@ -506,7 +507,6 @@ export interface ThemeTagsBox extends Record<string, string | number> {
506
507
  width: string;
507
508
  widthMobile: string;
508
509
  }
509
- export declare type ThemeTagsImagePosition = 'TOP' | 'BOTTOM' | 'LEFT' | 'RIGHT' | 'HIDDEN';
510
510
  export interface ThemeTagsImage extends Record<string, string | number | boolean> {
511
511
  asImg: boolean;
512
512
  aspectRatio: number;
@@ -524,7 +524,7 @@ export interface ThemeTagsImage extends Record<string, string | number | boolean
524
524
  minWidthMobile: string;
525
525
  padding: string;
526
526
  paddingMobile: string;
527
- position: ThemeTagsImagePosition;
527
+ position: ThemeImagePosition;
528
528
  }
529
529
  export interface ThemeTagsText extends Record<string, string> {
530
530
  color: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.2.68",
3
+ "version": "0.2.69",
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",