123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`MultipleCheckboxField render() renders with form context 1`] = `
- <div
- className="control-group"
- >
- <div
- className=""
- >
- <div
- className="controls"
- >
- <label
- className="control-label"
- style={
- Object {
- "borderBottom": "1px solid #f1eff3",
- "display": "block",
- "marginBottom": 10,
- }
- }
- />
- </div>
- </div>
- <div
- className="control-list"
- >
- <label
- className="checkbox"
- key="1"
- >
- <input
- checked={true}
- disabled={false}
- onChange={[Function]}
- type="checkbox"
- value="1"
- />
- On
- </label>
- <label
- className="checkbox"
- key="2"
- >
- <input
- checked={false}
- disabled={false}
- onChange={[Function]}
- type="checkbox"
- value="2"
- />
- Off
- </label>
- </div>
- </div>
- `;
- exports[`MultipleCheckboxField render() renders without form context 1`] = `
- <div
- className="control-group"
- >
- <div
- className=""
- >
- <div
- className="controls"
- >
- <label
- className="control-label"
- style={
- Object {
- "borderBottom": "1px solid #f1eff3",
- "display": "block",
- "marginBottom": 10,
- }
- }
- />
- </div>
- </div>
- <div
- className="control-list"
- >
- <label
- className="checkbox"
- key="1"
- >
- <input
- checked={true}
- disabled={false}
- onChange={[Function]}
- type="checkbox"
- value="1"
- />
- On
- </label>
- <label
- className="checkbox"
- key="2"
- >
- <input
- checked={false}
- disabled={false}
- onChange={[Function]}
- type="checkbox"
- value="2"
- />
- Off
- </label>
- </div>
- </div>
- `;
|