@bytebrand/fe-ui-core 4.0.251 → 4.0.253
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,4 +1,4 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import _get from 'lodash/get';
|
|
3
3
|
import styles from './MakeModel.styl';
|
|
4
4
|
import MaterialSelect from '../../_common/MaterialSelect/MaterialSelect';
|
|
@@ -145,7 +145,7 @@ class MakeModel extends React.Component<IMakeModelProps> {
|
|
|
145
145
|
|
|
146
146
|
return (
|
|
147
147
|
<>
|
|
148
|
-
<h3 className={styles.titleText}>{t('filterGroups.MAKE_MODEL_SUB')}</h3>
|
|
148
|
+
{/* <h3 className={styles.titleText}>{t('filterGroups.MAKE_MODEL_SUB')}</h3> */}
|
|
149
149
|
{this.renderMmsGroups()}
|
|
150
150
|
{MMS_GROUPS.length <= 2 ? this.renderMoreMmsButton() : false}
|
|
151
151
|
{isMobileOnly && (
|
|
@@ -173,8 +173,9 @@ export interface IVehicleDetailedSidebarPriceProps {
|
|
|
173
173
|
priceTabActiveIndex?: number;
|
|
174
174
|
onTabPriceSelect?(event: React.ChangeEvent<{}>, index: number): void;
|
|
175
175
|
isAlternative?: boolean;
|
|
176
|
-
currentSalesPrice?: number;
|
|
176
|
+
// currentSalesPrice?: number;
|
|
177
177
|
originalSalesPrice?: number;
|
|
178
|
+
common: { isStrikeShown?: boolean, currentSalesPrice?: number }
|
|
178
179
|
}
|
|
179
180
|
export interface ITabsProps {
|
|
180
181
|
t?: (key: string, options?: object) => string;
|