diff --git a/lib/components/src/controls/options/Checkbox.tsx b/lib/components/src/controls/options/Checkbox.tsx index 88b491cd5e5..95b77aeb73a 100644 --- a/lib/components/src/controls/options/Checkbox.tsx +++ b/lib/components/src/controls/options/Checkbox.tsx @@ -1,31 +1,42 @@ -import React, { FC, ChangeEvent, useState } from 'react'; +import React, { FC, ChangeEvent, useState, Fragment } from 'react'; import { styled } from '@storybook/theming'; import { ControlProps, OptionsMultiSelection, NormalizedOptionsConfig } from '../types'; import { selectedKeys, selectedValues } from './helpers'; -const CheckboxesWrapper = styled.div<{ isInline: boolean }>(({ isInline }) => +const Wrapper = styled.div<{ isInline: boolean }>(({ isInline }) => isInline ? { display: 'flex', flexWrap: 'wrap', - alignItems: 'center', - '> * + *': { - marginLeft: 10, + alignItems: 'flex-start', + + label: { + display: 'inline-flex', + marginRight: 15, + }, + } + : { + label: { + display: 'flex', }, } - : {} ); -const CheckboxFieldset = styled.fieldset({ - border: 0, - padding: 0, - margin: 0, -}); +const Text = styled.span({}); -const CheckboxLabel = styled.label({ - padding: '3px 0 3px 5px', - lineHeight: '18px', - display: 'inline-block', +const Label = styled.label({ + lineHeight: '20px', + alignItems: 'center', + marginBottom: 8, + + '&:last-child': { + marginBottom: 0, + }, + + input: { + margin: 0, + marginRight: 6, + }, }); type CheckboxConfig = NormalizedOptionsConfig & { isInline: boolean }; @@ -53,25 +64,23 @@ export const CheckboxControl: FC = ({ }; return ( - - - {Object.keys(options).map((key: string) => { - const id = `${name}-${key}`; - return ( -
- - {key} -
- ); - })} -
-
+ + {Object.keys(options).map((key: string) => { + const id = `${name}-${key}`; + return ( + + ); + })} + ); }; diff --git a/lib/components/src/controls/options/Radio.tsx b/lib/components/src/controls/options/Radio.tsx index 1f0febb4f05..5830d49e2b6 100644 --- a/lib/components/src/controls/options/Radio.tsx +++ b/lib/components/src/controls/options/Radio.tsx @@ -3,23 +3,46 @@ import { styled } from '@storybook/theming'; import { ControlProps, OptionsSingleSelection, NormalizedOptionsConfig } from '../types'; import { selectedKey } from './helpers'; -const RadiosWrapper = styled.div<{ isInline: boolean }>(({ isInline }) => +const Wrapper = styled.div<{ isInline: boolean }>(({ isInline }) => isInline ? { display: 'flex', flexWrap: 'wrap', - alignItems: 'center', - '> * + *': { - marginLeft: 10, + alignItems: 'flex-start', + + label: { + display: 'inline-flex', + marginRight: 15, + }, + } + : { + label: { + display: 'flex', }, } - : {} ); -const RadioLabel = styled.label({ - padding: '3px 0 3px 5px', - lineHeight: '18px', - display: 'inline-block', +const Fieldset = styled.fieldset({ + border: 0, + padding: 0, + margin: 0, +}); + +const Text = styled.span({}); + +const Label = styled.label({ + lineHeight: '20px', + alignItems: 'center', + marginBottom: 8, + + '&:last-child': { + marginBottom: 0, + }, + + input: { + margin: 0, + marginRight: 6, + }, }); type RadioConfig = NormalizedOptionsConfig & { isInline: boolean }; @@ -27,11 +50,11 @@ type RadioProps = ControlProps & RadioConfig; export const RadioControl: FC = ({ name, options, value, onChange, isInline }) => { const selection = selectedKey(value, options); return ( - + {Object.keys(options).map((key) => { const id = `${name}-${key}`; return ( -
+
+ {key} + ); })} -
+ ); };