tidy up inspector controls
This commit is contained in:
parent
c032afc07a
commit
0a3962690b
25
src/index.js
25
src/index.js
|
@ -100,7 +100,7 @@ registerBlockType('room-vw/iconify', {
|
||||||
return (
|
return (
|
||||||
<Fragment>
|
<Fragment>
|
||||||
<InspectorControls>
|
<InspectorControls>
|
||||||
<PanelBody title="Icon settings">
|
<PanelBody title="Icon size">
|
||||||
<RangeControl
|
<RangeControl
|
||||||
label={`Font size (${attributes.fontUnit})`}
|
label={`Font size (${attributes.fontUnit})`}
|
||||||
value={attributes.fontSize}
|
value={attributes.fontSize}
|
||||||
|
@ -111,15 +111,6 @@ registerBlockType('room-vw/iconify', {
|
||||||
setAttributes({ fontSize: value });
|
setAttributes({ fontSize: value });
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<PanelRow></PanelRow>
|
|
||||||
<PanelRow>
|
|
||||||
<ToggleControl
|
|
||||||
label="Is isInline"
|
|
||||||
checked={attributes.isInline}
|
|
||||||
onChange={(state) => {
|
|
||||||
setAttributes({ isInline: state });
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<ToggleControl
|
<ToggleControl
|
||||||
label="Use ems"
|
label="Use ems"
|
||||||
checked={attributes.fontUnit === 'em'}
|
checked={attributes.fontUnit === 'em'}
|
||||||
|
@ -132,7 +123,19 @@ registerBlockType('room-vw/iconify', {
|
||||||
});
|
});
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</PanelRow>
|
</PanelBody>
|
||||||
|
<PanelBody title="Icon variations">
|
||||||
|
<ToggleControl
|
||||||
|
label="Inline"
|
||||||
|
checked={attributes.isInline}
|
||||||
|
onChange={(state) => {
|
||||||
|
setAttributes({ isInline: state });
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<p>Color</p>
|
||||||
|
<p>Rotate</p>
|
||||||
|
<p>Flip</p>
|
||||||
|
<p>Etc</p>
|
||||||
</PanelBody>
|
</PanelBody>
|
||||||
</InspectorControls>
|
</InspectorControls>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue