@open-tender/types 0.4.7 → 0.4.9

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.
@@ -581,7 +581,7 @@ export interface ThemeModifiersColors extends Record<string, string> {
581
581
  bgColor: string;
582
582
  borderColor: string;
583
583
  }
584
- export declare type ThemeModifiersBoxType = 'DEFAULT' | 'CARDS' | 'SQUARES';
584
+ export declare type ThemeModifiersBoxType = 'DEFAULT' | 'CARDS' | 'SQUARES' | 'SIMPLE';
585
585
  export interface ThemeModifiersBox extends Record<string, string | number> {
586
586
  border: string;
587
587
  borderMobile: string;
@@ -661,7 +661,7 @@ export interface ThemeBottomTabsIcons {
661
661
  size: number;
662
662
  strokeWidth: number;
663
663
  }
664
- export interface ThemeBottomTabs {
664
+ export interface ThemeBottomTabs extends Record<string, ThemeBottomTabsBox | ThemeBottomTabsButtons | ThemeBottomTabsIcons> {
665
665
  box: ThemeBottomTabsBox;
666
666
  buttons: ThemeBottomTabsButtons;
667
667
  icons: ThemeBottomTabsIcons;
@@ -697,6 +697,7 @@ export interface Theme {
697
697
  bgColors: ThemeBackgroundColors;
698
698
  boldWeight: string;
699
699
  border: ThemeBorder;
700
+ bottomTabs: ThemeBottomTabs;
700
701
  boxShadow: ThemeBoxShadow;
701
702
  breakpoints: ThemeBreakpoints;
702
703
  buttons: ThemeButtons;
@@ -581,7 +581,7 @@ export interface ThemeModifiersColors extends Record<string, string> {
581
581
  bgColor: string;
582
582
  borderColor: string;
583
583
  }
584
- export declare type ThemeModifiersBoxType = 'DEFAULT' | 'CARDS' | 'SQUARES';
584
+ export declare type ThemeModifiersBoxType = 'DEFAULT' | 'CARDS' | 'SQUARES' | 'SIMPLE';
585
585
  export interface ThemeModifiersBox extends Record<string, string | number> {
586
586
  border: string;
587
587
  borderMobile: string;
@@ -661,7 +661,7 @@ export interface ThemeBottomTabsIcons {
661
661
  size: number;
662
662
  strokeWidth: number;
663
663
  }
664
- export interface ThemeBottomTabs {
664
+ export interface ThemeBottomTabs extends Record<string, ThemeBottomTabsBox | ThemeBottomTabsButtons | ThemeBottomTabsIcons> {
665
665
  box: ThemeBottomTabsBox;
666
666
  buttons: ThemeBottomTabsButtons;
667
667
  icons: ThemeBottomTabsIcons;
@@ -697,6 +697,7 @@ export interface Theme {
697
697
  bgColors: ThemeBackgroundColors;
698
698
  boldWeight: string;
699
699
  border: ThemeBorder;
700
+ bottomTabs: ThemeBottomTabs;
700
701
  boxShadow: ThemeBoxShadow;
701
702
  breakpoints: ThemeBreakpoints;
702
703
  buttons: ThemeButtons;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.4.7",
3
+ "version": "0.4.9",
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",