@open-tender/types 0.4.7 → 0.4.8
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.
|
@@ -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;
|
|
@@ -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