@trafilea/afrodita-components 5.0.0-beta.126 → 5.0.0-beta.128
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/build/index.esm.js +3 -1
- package/build/index.esm.js.map +1 -1
- package/build/index.js +3 -1
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.esm.js
CHANGED
|
@@ -4367,6 +4367,7 @@ var CustomButton = newStyled.button(function (_a) {
|
|
|
4367
4367
|
fontWeight: 600,
|
|
4368
4368
|
fontSize: theme.component.dropdown.fontSize,
|
|
4369
4369
|
padding: theme.component.dropdown.padding,
|
|
4370
|
+
fontFamily: theme.fonts.config[0].family,
|
|
4370
4371
|
color: theme.component.dropdown.color,
|
|
4371
4372
|
fill: theme.component.dropdown.fill,
|
|
4372
4373
|
width: wide ? '100%' : 'auto',
|
|
@@ -4417,6 +4418,7 @@ var DropdownOptions = newStyled(BaseSelect$1.Options)(function (_a) {
|
|
|
4417
4418
|
boxSizing: 'border-box',
|
|
4418
4419
|
borderRadius: theme.component.dropdown.options.borderRadius,
|
|
4419
4420
|
background: theme.colors.shades.white.color,
|
|
4421
|
+
fontFamily: theme.fonts.config[0].family,
|
|
4420
4422
|
padding: 0,
|
|
4421
4423
|
marginTop: '0.125rem',
|
|
4422
4424
|
position: 'absolute',
|
|
@@ -5104,7 +5106,7 @@ var PriceLabel = function (_a) {
|
|
|
5104
5106
|
weight: 700,
|
|
5105
5107
|
};
|
|
5106
5108
|
var OriginalPrice = function () { return (jsx$1(Price, __assign$1({ size: originalPriceStyled ? size : ComponentSize.Small, color: theme.colors.shades['300'].color, margin: true, underlined: originalPriceUnderlined, "data-testid": getTestId(testId, 'original-product-price') }, { children: originalPrice }), void 0)); };
|
|
5107
|
-
return (jsxs$1(Container$M, { children: [jsx$1(Price, __assign$1({ margin: true, "data-testid": getTestId(testId, 'final-product-price') }, priceCommonProps, { style: finalPriceStyle }, { children: finalPrice }), void 0), originalPrice && jsx$1(OriginalPrice, {}, void 0), discount && (jsx$1(TagContainer, __assign$1({ size: size }, { children: jsx$1(DiscountTag, __assign$1({}, discount, { size: size }), void 0) }), void 0))] }, void 0));
|
|
5109
|
+
return (jsxs$1(Container$M, { children: [jsx$1(Price, __assign$1({ margin: true, "data-testid": getTestId(testId, 'final-product-price') }, priceCommonProps, { style: finalPriceStyle }, { children: finalPrice }), void 0), !!originalPrice && jsx$1(OriginalPrice, {}, void 0), discount && (jsx$1(TagContainer, __assign$1({ size: size }, { children: jsx$1(DiscountTag, __assign$1({}, discount, { size: size }), void 0) }), void 0))] }, void 0));
|
|
5108
5110
|
};
|
|
5109
5111
|
var templateObject_1$1a, templateObject_2$L, templateObject_3$z;
|
|
5110
5112
|
|