@trafilea/afrodita-components 5.0.0-beta.123 → 5.0.0-beta.125

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.d.ts CHANGED
@@ -1519,6 +1519,7 @@ declare type ThemeComponent = {
1519
1519
  options: {
1520
1520
  borderColor: string;
1521
1521
  color: string;
1522
+ borderRadius: string;
1522
1523
  };
1523
1524
  };
1524
1525
  modal: {
@@ -4415,7 +4415,7 @@ var DropdownOptions = newStyled(BaseSelect$1.Options)(function (_a) {
4415
4415
  alignItems: 'flex-start',
4416
4416
  border: "0.063rem solid ".concat(theme.component.dropdown.options.borderColor),
4417
4417
  boxSizing: 'border-box',
4418
- borderRadius: theme.component.dropdown.borderRadius,
4418
+ borderRadius: theme.component.dropdown.options.borderRadius,
4419
4419
  background: theme.colors.shades.white.color,
4420
4420
  padding: 0,
4421
4421
  marginTop: '0.125rem',
@@ -4890,6 +4890,7 @@ var SizeSelector = function (_a) {
4890
4890
  return (jsx(SelectorSecondary, { css: {
4891
4891
  padding: '0.75rem 1rem 0.625rem',
4892
4892
  margin: '0 0.5rem 0.625rem 0',
4893
+ minWidth: '4rem',
4893
4894
  }, size: ComponentSize.Medium, text: size.label, active: active, disabled: size.disabled, onClick: function () { return onChange(size); }, testId: "size-variant-".concat(size.label.split('/')[0]), width: width }, size.label));
4894
4895
  }) }), void 0)] }), void 0));
4895
4896
  };