@bytebrand/fe-ui-core 4.2.103 → 4.2.104

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytebrand/fe-ui-core",
3
- "version": "4.2.103",
3
+ "version": "4.2.104",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -1,7 +1,7 @@
1
1
  @import '../../theme/mixins.styl'
2
2
 
3
3
  .detailedInfo
4
- padding: 15px 15px 7px 15px
4
+ padding: 15px 15px 0px 15px
5
5
  width: 100%
6
6
  position: relative
7
7
  background-color: white
@@ -20,4 +20,7 @@
20
20
  transition: 0.45s;
21
21
  transition-timing-function: ease-out;
22
22
  transform: translateY(0);
23
- opacity: 1;
23
+ opacity: 1;
24
+
25
+ .tabContent
26
+ padding-bottom: 7px
@@ -21,7 +21,8 @@ const Price: React.FunctionComponent<IVehicleDetailedSidebarPriceProps> = ({
21
21
  const tabsProps = {
22
22
  tabsTitles,
23
23
  onTabPriceSelect,
24
- priceTabActiveIndex
24
+ priceTabActiveIndex,
25
+ tabContentClassName: styles.tabContent
25
26
  };
26
27
 
27
28
  return (
@@ -250,6 +250,7 @@ export interface IVehicleDetailedSidebarProps {
250
250
  infoSections: { title: string, value: string, icon?: string }[];
251
251
  isAlternative?: boolean;
252
252
  onCurrentSalesPriceChange: (price: number) => void;
253
+ className?: string;
253
254
  }
254
255
 
255
256
  interface IOfferRequestButtonWrapper {