@open-tender/types 0.2.84 → 0.2.85

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.
@@ -311,7 +311,8 @@ export interface ThemeInputs extends Record<string, string | boolean | ThemeInpu
311
311
  textTransform: ThemeTextTransform;
312
312
  weight: string;
313
313
  }
314
- export interface ThemeItemStyles extends Record<string, string | number> {
314
+ export declare type ThemeItemSizeType = 'BUTTONS' | 'ACCORDION';
315
+ export interface ThemeItemStyles extends Record<string, string | number | boolean> {
315
316
  imageAsImg: number;
316
317
  imageAspectRatio: number;
317
318
  imageBgSize: ThemeBackgroundSize;
@@ -323,6 +324,8 @@ export interface ThemeItemStyles extends Record<string, string | number> {
323
324
  imagePaddingAll: string;
324
325
  maxWidth: string;
325
326
  padding: string;
327
+ showSizeModImages: boolean;
328
+ sizeType: ThemeItemSizeType;
326
329
  }
327
330
  export interface ThemeItem extends Record<string, ThemeItemStyles> {
328
331
  desktop: ThemeItemStyles;
@@ -311,7 +311,8 @@ export interface ThemeInputs extends Record<string, string | boolean | ThemeInpu
311
311
  textTransform: ThemeTextTransform;
312
312
  weight: string;
313
313
  }
314
- export interface ThemeItemStyles extends Record<string, string | number> {
314
+ export declare type ThemeItemSizeType = 'BUTTONS' | 'ACCORDION';
315
+ export interface ThemeItemStyles extends Record<string, string | number | boolean> {
315
316
  imageAsImg: number;
316
317
  imageAspectRatio: number;
317
318
  imageBgSize: ThemeBackgroundSize;
@@ -323,6 +324,8 @@ export interface ThemeItemStyles extends Record<string, string | number> {
323
324
  imagePaddingAll: string;
324
325
  maxWidth: string;
325
326
  padding: string;
327
+ showSizeModImages: boolean;
328
+ sizeType: ThemeItemSizeType;
326
329
  }
327
330
  export interface ThemeItem extends Record<string, ThemeItemStyles> {
328
331
  desktop: ThemeItemStyles;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.2.84",
3
+ "version": "0.2.85",
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",