mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2024-11-14 17:35:35 +01:00
Merge branch 'radio-checkbox-whitespace' into 'dev'
Radio checkbox whitespace See merge request turris/reforis/foris-js!25 [skip ci]
This commit is contained in:
commit
18eb28f368
2
Makefile
2
Makefile
|
@ -35,6 +35,8 @@ lint:
|
|||
|
||||
test:
|
||||
npm test
|
||||
test-js-update-snapshots:
|
||||
npm test -- -u
|
||||
|
||||
create-messages:
|
||||
pybabel extract -F babel.cfg -o ./translations/forisjs.pot .
|
||||
|
|
2
package-lock.json
generated
2
package-lock.json
generated
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "foris",
|
||||
"version": "1.1.0",
|
||||
"version": "1.1.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "foris",
|
||||
"version": "1.1.0",
|
||||
"version": "1.1.1",
|
||||
"description": "Set of components and utils for Foris and its plugins.",
|
||||
"author": "CZ.NIC, z.s.p.o.",
|
||||
"repository": {
|
||||
|
@ -73,7 +73,6 @@
|
|||
"test": "jest",
|
||||
"test:watch": "jest --watch",
|
||||
"test:coverage": "jest --coverage --colors",
|
||||
"test:update-snapshots": "jest -u",
|
||||
"docs": "npx styleguidist build ",
|
||||
"docs:watch": "styleguidist server"
|
||||
},
|
||||
|
|
|
@ -32,8 +32,8 @@ export function CheckBox({
|
|||
}) {
|
||||
const uid = useUID();
|
||||
return (
|
||||
<div className={useDefaultSize ? formFieldsSize : ""} style={{ marginBottom: "1rem" }}>
|
||||
<div className="custom-control custom-checkbox" style={{ marginBottom: "0" }}>
|
||||
<div className={`form-group ${useDefaultSize ? formFieldsSize : ""}`.trim()}>
|
||||
<div className="custom-control custom-checkbox ">
|
||||
<input
|
||||
className="custom-control-input"
|
||||
type="checkbox"
|
||||
|
@ -42,9 +42,9 @@ export function CheckBox({
|
|||
|
||||
{...props}
|
||||
/>
|
||||
<label className="custom-control-label" htmlFor={uid} style={helpText ? { marginBottom: "0" } : null}>{label}</label>
|
||||
<label className="custom-control-label" htmlFor={uid}>{label}</label>
|
||||
{helpText && <small className="form-text text-muted">{helpText}</small>}
|
||||
</div>
|
||||
{helpText ? <small className="form-text text-muted">{helpText}</small> : null}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -52,16 +52,10 @@ export function RadioSet({
|
|||
});
|
||||
|
||||
return (
|
||||
<div className={`form-group ${formFieldsSize}`} style={{ marginBottom: "1rem" }}>
|
||||
{label
|
||||
? (
|
||||
<label className="col-12" htmlFor={uid} style={{ paddingLeft: "0" }}>
|
||||
{label}
|
||||
</label>
|
||||
)
|
||||
: null}
|
||||
<div className={`form-group ${formFieldsSize}`}>
|
||||
{label && <label htmlFor={uid} className="d-block">{label}</label>}
|
||||
{radios}
|
||||
{helpText ? <small className="form-text text-muted">{helpText}</small> : null}
|
||||
{helpText && <small className="form-text text-muted">{helpText}</small>}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
@ -77,7 +71,7 @@ function Radio({
|
|||
}) {
|
||||
return (
|
||||
<>
|
||||
<div className="custom-control custom-radio custom-control-inline">
|
||||
<div className={`custom-control custom-radio ${!helpText ? "custom-control-inline" : ""}`.trim()}>
|
||||
<input
|
||||
id={id}
|
||||
className="custom-control-input"
|
||||
|
@ -86,8 +80,8 @@ function Radio({
|
|||
{...props}
|
||||
/>
|
||||
<label className="custom-control-label" htmlFor={id}>{label}</label>
|
||||
{helpText && <small className="form-text text-muted mt-0 mb-3">{helpText}</small>}
|
||||
</div>
|
||||
{helpText ? <small className="form-text text-muted">{helpText}</small> : null}
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -2,6 +2,8 @@ Set of radio Bootstrap component input with label and predefined sizes and struc
|
|||
|
||||
All additional `props` are passed to the `<input type="number">` HTML component.
|
||||
|
||||
Unless `helpText` is set for one of the options they are displayed inline.
|
||||
|
||||
```js
|
||||
import {useState} from 'react';
|
||||
const CHOICES=[
|
||||
|
|
|
@ -2,12 +2,10 @@
|
|||
|
||||
exports[`<Checkbox/> Render checkbox 1`] = `
|
||||
<div
|
||||
class="col-sm-12 offset-lg-1 col-lg-10"
|
||||
style="margin-bottom: 1rem;"
|
||||
class="form-group col-sm-12 offset-lg-1 col-lg-10"
|
||||
>
|
||||
<div
|
||||
class="custom-control custom-checkbox"
|
||||
style="margin-bottom: 0px;"
|
||||
class="custom-control custom-checkbox "
|
||||
>
|
||||
<input
|
||||
checked=""
|
||||
|
@ -18,27 +16,24 @@ exports[`<Checkbox/> Render checkbox 1`] = `
|
|||
<label
|
||||
class="custom-control-label"
|
||||
for="1"
|
||||
style="margin-bottom: 0px;"
|
||||
>
|
||||
Test label
|
||||
</label>
|
||||
<small
|
||||
class="form-text text-muted"
|
||||
>
|
||||
Some help text
|
||||
</small>
|
||||
</div>
|
||||
<small
|
||||
class="form-text text-muted"
|
||||
>
|
||||
Some help text
|
||||
</small>
|
||||
</div>
|
||||
`;
|
||||
|
||||
exports[`<Checkbox/> Render uncheked checkbox 1`] = `
|
||||
<div
|
||||
class="col-sm-12 offset-lg-1 col-lg-10"
|
||||
style="margin-bottom: 1rem;"
|
||||
class="form-group col-sm-12 offset-lg-1 col-lg-10"
|
||||
>
|
||||
<div
|
||||
class="custom-control custom-checkbox"
|
||||
style="margin-bottom: 0px;"
|
||||
class="custom-control custom-checkbox "
|
||||
>
|
||||
<input
|
||||
class="custom-control-input"
|
||||
|
@ -48,15 +43,14 @@ exports[`<Checkbox/> Render uncheked checkbox 1`] = `
|
|||
<label
|
||||
class="custom-control-label"
|
||||
for="1"
|
||||
style="margin-bottom: 0px;"
|
||||
>
|
||||
Test label
|
||||
</label>
|
||||
<small
|
||||
class="form-text text-muted"
|
||||
>
|
||||
Some help text
|
||||
</small>
|
||||
</div>
|
||||
<small
|
||||
class="form-text text-muted"
|
||||
>
|
||||
Some help text
|
||||
</small>
|
||||
</div>
|
||||
`;
|
||||
|
|
|
@ -3,12 +3,10 @@
|
|||
exports[`<RadioSet/> Render radio set 1`] = `
|
||||
<div
|
||||
class="form-group col-sm-12 offset-lg-1 col-lg-10"
|
||||
style="margin-bottom: 1rem;"
|
||||
>
|
||||
<label
|
||||
class="col-12"
|
||||
class="d-block"
|
||||
for="1"
|
||||
style="padding-left: 0px;"
|
||||
>
|
||||
Radios set label
|
||||
</label>
|
||||
|
|
Loading…
Reference in New Issue
Block a user