15 lines
642 B
TypeScript
15 lines
642 B
TypeScript
/* eslint-disable object-curly-newline */
|
|
import type { SectionsConfig } from 'Components/Calculation/types/sections';
|
|
|
|
const config: SectionsConfig = [
|
|
[['selectProduct'], { gridTemplateColumns: '1fr' }],
|
|
[['tbxLeaseObjectPrice', 'tbxVATInLeaseObjectPrice', 'tbxLeaseObjectPriceWthtVAT']],
|
|
[['selectSupplierCurrency', 'tbxSupplierDiscountRub', 'tbxSupplierDiscountPerc']],
|
|
[['tbxFirstPaymentPerc', 'tbxFirstPaymentRub']],
|
|
[['tbxLeasingPeriod', 'tbxSaleBonus', 'tbxRedemptionPaymentSum']],
|
|
[['selectSubsidy', 'labelSubsidySum']],
|
|
[['tbxLastPaymentPerc', 'tbxLastPaymentRub', 'radioLastPaymentRule']],
|
|
];
|
|
|
|
export default config;
|