baseui 0.0.0-next-3a57782 → 0.0.0-next-24fa4ce

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.
@@ -204,10 +204,11 @@ export const RadioMarkInner = styled('div', props => {
204
204
  borderTopRightRadius: '50%',
205
205
  borderBottomRightRadius: '50%',
206
206
  borderBottomLeftRadius: '50%',
207
- height: props.$checked ? sizing.scale200 : sizing.scale550,
207
+ height: '100%',
208
208
  transitionDuration: animation.timing200,
209
209
  transitionTimingFunction: animation.easeOutCurve,
210
- width: props.$checked ? sizing.scale200 : sizing.scale550
210
+ width: '100%',
211
+ transform: props.$checked ? 'scale(.3)' : 'scale(.7)'
211
212
  };
212
213
  });
213
214
  RadioMarkInner.displayName = "RadioMarkInner";
@@ -186,10 +186,11 @@ export var RadioMarkInner = styled('div', function (props) {
186
186
  borderTopRightRadius: '50%',
187
187
  borderBottomRightRadius: '50%',
188
188
  borderBottomLeftRadius: '50%',
189
- height: props.$checked ? sizing.scale200 : sizing.scale550,
189
+ height: '100%',
190
190
  transitionDuration: animation.timing200,
191
191
  transitionTimingFunction: animation.easeOutCurve,
192
- width: props.$checked ? sizing.scale200 : sizing.scale550
192
+ width: '100%',
193
+ transform: props.$checked ? 'scale(.3)' : 'scale(.7)'
193
194
  };
194
195
  });
195
196
  RadioMarkInner.displayName = "RadioMarkInner";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "baseui",
3
- "version": "0.0.0-next-3a57782",
3
+ "version": "0.0.0-next-24fa4ce",
4
4
  "description": "A React Component library implementing the Base design language",
5
5
  "keywords": [
6
6
  "react",
@@ -190,10 +190,11 @@ var RadioMarkInner = (0, _styles.styled)('div', function (props) {
190
190
  borderTopRightRadius: '50%',
191
191
  borderBottomRightRadius: '50%',
192
192
  borderBottomLeftRadius: '50%',
193
- height: props.$checked ? sizing.scale200 : sizing.scale550,
193
+ height: '100%',
194
194
  transitionDuration: animation.timing200,
195
195
  transitionTimingFunction: animation.easeOutCurve,
196
- width: props.$checked ? sizing.scale200 : sizing.scale550
196
+ width: '100%',
197
+ transform: props.$checked ? 'scale(.3)' : 'scale(.7)'
197
198
  };
198
199
  });
199
200
  exports.RadioMarkInner = RadioMarkInner;