@open-tender/types 0.2.67 → 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;
@@ -502,6 +503,9 @@ export interface ThemeTagsBox extends Record<string, string | number> {
502
503
  minWidthMobile: string;
503
504
  padding: string;
504
505
  paddingMobile: string;
506
+ transition: string;
507
+ width: string;
508
+ widthMobile: string;
505
509
  }
506
510
  export interface ThemeTagsImage extends Record<string, string | number | boolean> {
507
511
  asImg: boolean;
@@ -520,7 +524,7 @@ export interface ThemeTagsImage extends Record<string, string | number | boolean
520
524
  minWidthMobile: string;
521
525
  padding: string;
522
526
  paddingMobile: string;
523
- position: string;
527
+ position: ThemeImagePosition;
524
528
  }
525
529
  export interface ThemeTagsText extends Record<string, string> {
526
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;
@@ -502,6 +503,9 @@ export interface ThemeTagsBox extends Record<string, string | number> {
502
503
  minWidthMobile: string;
503
504
  padding: string;
504
505
  paddingMobile: string;
506
+ transition: string;
507
+ width: string;
508
+ widthMobile: string;
505
509
  }
506
510
  export interface ThemeTagsImage extends Record<string, string | number | boolean> {
507
511
  asImg: boolean;
@@ -520,7 +524,7 @@ export interface ThemeTagsImage extends Record<string, string | number | boolean
520
524
  minWidthMobile: string;
521
525
  padding: string;
522
526
  paddingMobile: string;
523
- position: string;
527
+ position: ThemeImagePosition;
524
528
  }
525
529
  export interface ThemeTagsText extends Record<string, string> {
526
530
  color: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.2.67",
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",