1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-11-14 17:35:35 +01:00

Update Snapshots

This commit is contained in:
Aleksandr Gumroian 2024-04-29 14:27:33 +02:00
parent c8fbdc5bba
commit 5ed48bf2a3
No known key found for this signature in database
GPG Key ID: 9E77849C64F0A733
11 changed files with 329 additions and 327 deletions

View File

@ -2,55 +2,51 @@
exports[`<Checkbox/> Render checkbox 1`] = ` exports[`<Checkbox/> Render checkbox 1`] = `
<div <div
class="form-group" class="mb-3 form-check"
> >
<div <input
class="custom-control custom-checkbox " checked=""
class="form-check-input"
id="1"
type="checkbox"
/>
<label
class="form-check-label"
for="1"
> >
<input Test label
checked="" </label>
class="custom-control-input" <div
id="1" class="form-text"
type="checkbox" >
/> <small>
<label Some help text
class="custom-control-label" </small>
for="1"
>
Test label
<small
class="form-text text-muted"
>
Some help text
</small>
</label>
</div> </div>
</div> </div>
`; `;
exports[`<Checkbox/> Render uncheked checkbox 1`] = ` exports[`<Checkbox/> Render uncheked checkbox 1`] = `
<div <div
class="form-group" class="mb-3 form-check"
> >
<div <input
class="custom-control custom-checkbox " class="form-check-input"
id="1"
type="checkbox"
/>
<label
class="form-check-label"
for="1"
> >
<input Test label
class="custom-control-input" </label>
id="1" <div
type="checkbox" class="form-text"
/> >
<label <small>
class="custom-control-label" Some help text
for="1" </small>
>
Test label
<small
class="form-text text-muted"
>
Some help text
</small>
</label>
</div> </div>
</div> </div>
`; `;

View File

@ -2,9 +2,10 @@
exports[`<NumberInput/> Render number input 1`] = ` exports[`<NumberInput/> Render number input 1`] = `
<div <div
class="form-group" class="mb-3"
> >
<label <label
class="form-label"
for="1" for="1"
> >
Test label Test label
@ -18,33 +19,31 @@ exports[`<NumberInput/> Render number input 1`] = `
type="number" type="number"
value="1" value="1"
/> />
<div <button
class="input-group-append" aria-label="Increase"
class="btn btn-outline-secondary"
type="button"
> >
<button <i
aria-label="Increase" class="fas fa-plus"
class="btn btn-outline-secondary" />
type="button" </button>
> <button
<i aria-label="Decrease"
class="fas fa-plus" class="btn btn-outline-secondary"
/> type="button"
</button> >
<button <i
aria-label="Decrease" class="fas fa-minus"
class="btn btn-outline-secondary" />
type="button" </button>
>
<i
class="fas fa-minus"
/>
</button>
</div>
</div> </div>
<small <div
class="form-text text-muted" class="form-text"
> >
Some help text <small>
</small> Some help text
</small>
</div>
</div> </div>
`; `;

View File

@ -2,9 +2,10 @@
exports[`<PasswordInput/> Render password input 1`] = ` exports[`<PasswordInput/> Render password input 1`] = `
<div <div
class="form-group" class="mb-3"
> >
<label <label
class="form-label"
for="1" for="1"
> >
Test label Test label
@ -20,10 +21,12 @@ exports[`<PasswordInput/> Render password input 1`] = `
value="Some password" value="Some password"
/> />
</div> </div>
<small <div
class="form-text text-muted" class="form-text"
> >
Some help text <small>
</small> Some help text
</small>
</div>
</div> </div>
`; `;

View File

@ -2,7 +2,7 @@
exports[`<RadioSet/> Render radio set 1`] = ` exports[`<RadioSet/> Render radio set 1`] = `
<div <div
class="form-group" class="mb-3"
> >
<label <label
class="d-block" class="d-block"
@ -11,61 +11,63 @@ exports[`<RadioSet/> Render radio set 1`] = `
Radios set label Radios set label
</label> </label>
<div <div
class="custom-control custom-radio" class="mb-2"
> >
<input <input
checked="" checked=""
class="custom-control-input" class="form-check-input me-2"
id="test_name-0" id="test_name-0"
name="test_name" name="test_name"
type="radio" type="radio"
value="value" value="value"
/> />
<label <label
class="custom-control-label" class="form-check-label"
for="test_name-0" for="test_name-0"
> >
label label
</label> </label>
</div> </div>
<div <div
class="custom-control custom-radio" class="mb-2"
> >
<input <input
class="custom-control-input" class="form-check-input me-2"
id="test_name-1" id="test_name-1"
name="test_name" name="test_name"
type="radio" type="radio"
value="another value" value="another value"
/> />
<label <label
class="custom-control-label" class="form-check-label"
for="test_name-1" for="test_name-1"
> >
another label another label
</label> </label>
</div> </div>
<div <div
class="custom-control custom-radio" class="mb-2"
> >
<input <input
class="custom-control-input" class="form-check-input me-2"
id="test_name-2" id="test_name-2"
name="test_name" name="test_name"
type="radio" type="radio"
value="another on value" value="another on value"
/> />
<label <label
class="custom-control-label" class="form-check-label"
for="test_name-2" for="test_name-2"
> >
another one label another one label
</label> </label>
</div> </div>
<small <div
class="form-text text-muted" class="form-text"
> >
Some help text <small>
</small> Some help text
</small>
</div>
</div> </div>
`; `;

View File

@ -3,15 +3,16 @@
exports[`<Select/> Test with snapshot. 1`] = ` exports[`<Select/> Test with snapshot. 1`] = `
<div> <div>
<div <div
class="form-group" class="mb-3"
> >
<label <label
class="form-label"
for="1" for="1"
> >
Test label Test label
</label> </label>
<select <select
class="custom-select" class="form-select"
id="1" id="1"
> >
<option <option
@ -30,11 +31,13 @@ exports[`<Select/> Test with snapshot. 1`] = `
three three
</option> </option>
</select> </select>
<small <div
class="form-text text-muted" class="form-text"
> >
Help text <small>
</small> Help text
</small>
</div>
</div> </div>
</div> </div>
`; `;

View File

@ -2,26 +2,25 @@
exports[`<Switch/> Render switch 1`] = ` exports[`<Switch/> Render switch 1`] = `
<div <div
class="form-group" class="form-check form-switch mb-3 null"
> >
<div <input
class="custom-control custom-switch" checked=""
class="form-check-input"
id="1"
role="switch"
type="checkbox"
/>
<label
class="form-check-label"
for="1"
> >
<input Test label
checked="" </label>
class="custom-control-input" <div
id="1" class="form-text"
type="checkbox" >
/> <small>
<label
class="custom-control-label"
for="1"
>
Test label
</label>
<small
class="form-text text-muted mt-0 mb-3"
>
Some help text Some help text
</small> </small>
</div> </div>
@ -30,25 +29,24 @@ exports[`<Switch/> Render switch 1`] = `
exports[`<Switch/> Render uncheked switch 1`] = ` exports[`<Switch/> Render uncheked switch 1`] = `
<div <div
class="form-group" class="form-check form-switch mb-3 null"
> >
<div <input
class="custom-control custom-switch" class="form-check-input"
id="1"
role="switch"
type="checkbox"
/>
<label
class="form-check-label"
for="1"
> >
<input Test label
class="custom-control-input" </label>
id="1" <div
type="checkbox" class="form-text"
/> >
<label <small>
class="custom-control-label"
for="1"
>
Test label
</label>
<small
class="form-text text-muted mt-0 mb-3"
>
Some help text Some help text
</small> </small>
</div> </div>

View File

@ -2,9 +2,10 @@
exports[`<TextInput/> Render text input 1`] = ` exports[`<TextInput/> Render text input 1`] = `
<div <div
class="form-group" class="mb-3"
> >
<label <label
class="form-label"
for="1" for="1"
> >
Test label Test label
@ -19,10 +20,12 @@ exports[`<TextInput/> Render text input 1`] = `
value="Some text" value="Some text"
/> />
</div> </div>
<small <div
class="form-text text-muted" class="form-text"
> >
Some help text <small>
</small> Some help text
</small>
</div>
</div> </div>
`; `;

View File

@ -5,7 +5,7 @@ exports[`<WiFiSettings/> Snapshot 2.4 GHz 1`] = `
- First value - First value
+ Second value + Second value
@@ -241,207 +241,95 @@ @@ -243,207 +243,95 @@
value=\\"0\\" value=\\"0\\"
> >
auto auto
@ -255,53 +255,51 @@ exports[`<WiFiSettings/> Snapshot both modules disabled. 1`] = `
> >
<form> <form>
<div <div
class="form-group switch" class="form-check form-switch mb-3 d-flex align-items-center"
> >
<div <input
class="custom-control custom-switch custom-control-inline switch-heading" class="form-check-input me-2"
id="1"
role="switch"
type="checkbox"
/>
<label
class="form-check-label"
for="1"
> >
<input <h2
class="custom-control-input" class="mb-0"
id="1"
type="checkbox"
/>
<label
class="custom-control-label"
for="1"
> >
<h2> Wi-Fi 1
Wi-Fi 1 </h2>
</h2> </label>
</label>
</div>
</div> </div>
<hr /> <hr />
<div <div
class="form-group switch" class="form-check form-switch mb-3 d-flex align-items-center"
> >
<div <input
class="custom-control custom-switch custom-control-inline switch-heading" class="form-check-input me-2"
id="2"
role="switch"
type="checkbox"
/>
<label
class="form-check-label"
for="2"
> >
<input <h2
class="custom-control-input" class="mb-0"
id="2"
type="checkbox"
/>
<label
class="custom-control-label"
for="2"
> >
<h2> Wi-Fi 2
Wi-Fi 2 </h2>
</h2> </label>
</label>
</div>
</div> </div>
<div <div
class="text-end" class="text-end"
> >
<button <button
class="btn btn-primary col-sm-12 col-md-3 col-lg-2 d-inline-flex justify-content-center align-items-center" class="btn btn-primary col-12 col-md-3 col-lg-2 d-inline-flex justify-content-center align-items-center"
type="submit" type="submit"
> >
<span> <span>
@ -324,7 +322,7 @@ exports[`<WiFiSettings/> Snapshot both modules disabled. 1`] = `
class="text-end" class="text-end"
> >
<button <button
class="btn btn-primary col-sm-12 col-md-3 col-lg-2 d-inline-flex justify-content-center align-items-center" class="btn btn-primary col-12 col-md-3 col-lg-2 d-inline-flex justify-content-center align-items-center"
type="button" type="button"
> >
<span> <span>
@ -341,16 +339,17 @@ exports[`<WiFiSettings/> Snapshot guest network. 1`] = `
- First value - First value
+ Second value + Second value
@@ -524,10 +524,92 @@ @@ -527,10 +527,94 @@
> <small>
Enables Wi-Fi for guests, which is separated from LAN network. Devices connected to this network are allowed to access the internet, but aren't allowed to access other devices and the configuration interface of the router. Parameters of the guest network can be set in the Guest network tab. Enables Wi-Fi for guests, which is separated from LAN network. Devices connected to this network are allowed to access the internet, but aren't allowed to access other devices and the configuration interface of the router. Parameters of the guest network can be set in the Guest network tab.
</small> </small>
</div> </div>
</div> </div>
+ <div + <div
+ class=\\"form-group\\" + class=\\"mb-3\\"
+ > + >
+ <label + <label
+ class=\\"form-label\\"
+ for=\\"24\\" + for=\\"24\\"
+ > + >
+ SSID + SSID
@ -380,16 +379,19 @@ exports[`<WiFiSettings/> Snapshot guest network. 1`] = `
+ </button> + </button>
+ </div> + </div>
+ </div> + </div>
+ <small + <div
+ class=\\"form-text text-muted\\" + class=\\"form-text\\"
+ > + >
+ SSID which contains non-standard characters could cause problems on some devices. + <small>
+ </small> + SSID which contains non-standard characters could cause problems on some devices.
+ </small>
+ </div>
+ </div> + </div>
+ <div + <div
+ class=\\"form-group\\" + class=\\"mb-3\\"
+ > + >
+ <label + <label
+ class=\\"form-label\\"
+ for=\\"25\\" + for=\\"25\\"
+ > + >
+ Password + Password
@ -399,47 +401,45 @@ exports[`<WiFiSettings/> Snapshot guest network. 1`] = `
+ > + >
+ <input + <input
+ autocomplete=\\"current-password\\" + autocomplete=\\"current-password\\"
+ class=\\"form-control is-invalid\\" + class=\\"form-control is-invalid\\"
+ id=\\"25\\" + id=\\"25\\"
+ required=\\"\\" + required=\\"\\"
+ type=\\"password\\" + type=\\"password\\"
+ value=\\"\\" + value=\\"\\"
+ /> + />
+ <div + <button
+ class=\\"input-group-append\\" + class=\\"input-group-text\\"
+ type=\\"button\\"
+ > + >
+ <button + <i
+ class=\\"input-group-text\\" + class=\\"fa fa-eye\\"
+ type=\\"button\\" + />
+ > + </button>
+ <i
+ class=\\"fa fa-eye\\"
+ />
+ </button>
+ </div>
+ </div> + </div>
+ <div + <div
+ class=\\"invalid-feedback\\" + class=\\"invalid-feedback\\"
+ > + >
+ Password must contain at least 8 symbols + Password must contain at least 8 symbols
+ </div> + </div>
+ <small + <div
+ class=\\"form-text text-muted\\" + class=\\"form-text\\"
+ > + >
+ WPA2/3 pre-shared key, that is required to connect to the network. + <small>
+ </small> + WPA2/3 pre-shared key, that is required to connect to the network.
+ </small>
+ </div>
+ </div> + </div>
<hr /> <hr />
<div <div
class=\\"form-group switch\\" class=\\"form-check form-switch mb-3 d-flex align-items-center\\"
> >
<div <input
@@ -551,10 +633,11 @@ @@ -553,10 +637,11 @@
<div <div
class=\\"text-end\\" class=\\"text-end\\"
> >
<button <button
class=\\"btn btn-primary col-sm-12 col-md-3 col-lg-2 d-inline-flex justify-content-center align-items-center\\" class=\\"btn btn-primary col-12 col-md-3 col-lg-2 d-inline-flex justify-content-center align-items-center\\"
+ disabled=\\"\\" + disabled=\\"\\"
type=\\"submit\\" type=\\"submit\\"
> >
@ -453,16 +453,17 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
- First value - First value
+ Second value + Second value
@@ -22,10 +22,512 @@ @@ -21,10 +21,516 @@
Wi-Fi 1 >
</h2> Wi-Fi 1
</label> </h2>
</div> </label>
</div> </div>
+ <div + <div
+ class=\\"form-group\\" + class=\\"mb-3\\"
+ > + >
+ <label + <label
+ class=\\"form-label\\"
+ for=\\"4\\" + for=\\"4\\"
+ > + >
+ SSID + SSID
@ -477,32 +478,31 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
+ type=\\"text\\" + type=\\"text\\"
+ value=\\"TestSSID1\\" + value=\\"TestSSID1\\"
+ /> + />
+ <div + <button
+ class=\\"input-group-append\\" + class=\\"input-group-text\\"
+ type=\\"button\\"
+ > + >
+ <button + <img
+ class=\\"input-group-text\\" + alt=\\"QR\\"
+ type=\\"button\\" + src=\\"/reforis/static/reforis/imgs/QR_icon.svg\\"
+ > + style=\\"opacity: 0.67;\\"
+ <img + width=\\"20\\"
+ alt=\\"QR\\" + />
+ src=\\"/reforis/static/reforis/imgs/QR_icon.svg\\" + </button>
+ style=\\"opacity: 0.67;\\"
+ width=\\"20\\"
+ />
+ </button>
+ </div>
+ </div> + </div>
+ <small + <div
+ class=\\"form-text text-muted\\" + class=\\"form-text\\"
+ > + >
+ SSID which contains non-standard characters could cause problems on some devices. + <small>
+ </small> + SSID which contains non-standard characters could cause problems on some devices.
+ </small>
+ </div>
+ </div> + </div>
+ <div + <div
+ class=\\"form-group\\" + class=\\"mb-3\\"
+ > + >
+ <label + <label
+ class=\\"form-label\\"
+ for=\\"5\\" + for=\\"5\\"
+ > + >
+ Password + Password
@ -518,51 +518,48 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
+ type=\\"password\\" + type=\\"password\\"
+ value=\\"TestPass\\" + value=\\"TestPass\\"
+ /> + />
+ <div + <button
+ class=\\"input-group-append\\" + class=\\"input-group-text\\"
+ type=\\"button\\"
+ > + >
+ <button + <i
+ class=\\"input-group-text\\" + class=\\"fa fa-eye\\"
+ type=\\"button\\" + />
+ > + </button>
+ <i
+ class=\\"fa fa-eye\\"
+ />
+ </button>
+ </div>
+ </div> + </div>
+ <small + <div
+ class=\\"form-text text-muted\\" + class=\\"form-text\\"
+ > + >
+ WPA2/3 pre-shared key, that is required to connect to the network. + <small>
+ </small> + WPA2/3 pre-shared key, that is required to connect to the network.
+ </small>
+ </div>
+ </div> + </div>
+ <div + <div
+ class=\\"form-group\\" + class=\\"form-check form-switch mb-3 null\\"
+ > + >
+ <div + <input
+ class=\\"custom-control custom-switch\\" + class=\\"form-check-input\\"
+ id=\\"6\\"
+ role=\\"switch\\"
+ type=\\"checkbox\\"
+ />
+ <label
+ class=\\"form-check-label\\"
+ for=\\"6\\"
+ > + >
+ <input + Hide SSID
+ class=\\"custom-control-input\\" + </label>
+ id=\\"6\\" + <div
+ type=\\"checkbox\\" + class=\\"form-text\\"
+ /> + >
+ <label + <small>
+ class=\\"custom-control-label\\"
+ for=\\"6\\"
+ >
+ Hide SSID
+ </label>
+ <small
+ class=\\"form-text text-muted mt-0 mb-3\\"
+ >
+ If set, network is not visible when scanning for available networks. + If set, network is not visible when scanning for available networks.
+ </small> + </small>
+ </div> + </div>
+ </div> + </div>
+ <div + <div
+ class=\\"form-group\\" + class=\\"mb-3\\"
+ > + >
+ <label + <label
+ class=\\"d-block\\" + class=\\"d-block\\"
@ -571,56 +568,59 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
+ GHz + GHz
+ </label> + </label>
+ <div + <div
+ class=\\"custom-control custom-radio custom-control-inline\\" + class=\\"mb-2 form-check form-check-inline\\"
+ > + >
+ <input + <input
+ class=\\"custom-control-input\\" + class=\\"form-check-input me-2\\"
+ id=\\"hwmode-0-0\\" + id=\\"hwmode-0-0\\"
+ name=\\"hwmode-0\\" + name=\\"hwmode-0\\"
+ type=\\"radio\\" + type=\\"radio\\"
+ value=\\"11g\\" + value=\\"11g\\"
+ /> + />
+ <label + <label
+ class=\\"custom-control-label\\" + class=\\"form-check-label\\"
+ for=\\"hwmode-0-0\\" + for=\\"hwmode-0-0\\"
+ > + >
+ 2.4 + 2.4
+ </label> + </label>
+ </div> + </div>
+ <div + <div
+ class=\\"custom-control custom-radio custom-control-inline\\" + class=\\"mb-2 form-check form-check-inline\\"
+ > + >
+ <input + <input
+ checked=\\"\\" + checked=\\"\\"
+ class=\\"custom-control-input\\" + class=\\"form-check-input me-2\\"
+ id=\\"hwmode-0-1\\" + id=\\"hwmode-0-1\\"
+ name=\\"hwmode-0\\" + name=\\"hwmode-0\\"
+ type=\\"radio\\" + type=\\"radio\\"
+ value=\\"11a\\" + value=\\"11a\\"
+ /> + />
+ <label + <label
+ class=\\"custom-control-label\\" + class=\\"form-check-label\\"
+ for=\\"hwmode-0-1\\" + for=\\"hwmode-0-1\\"
+ > + >
+ 5 + 5
+ </label> + </label>
+ </div> + </div>
+ <small + <div
+ class=\\"form-text text-muted\\" + class=\\"form-text\\"
+ > + >
+ The 2.4 GHz band is more widely supported by clients, but tends to have more interference. The 5 GHz band is a newer standard and may not be supported by all your devices. It usually has less interference, but the signal does not carry so well indoors. + <small>
+ </small> + The 2.4 GHz band is more widely supported by clients, but tends to have more interference. The 5 GHz band is a newer standard and may not be supported by all your devices. It usually has less interference, but the signal does not carry so well indoors.
+ </small>
+ </div>
+ </div> + </div>
+ <div + <div
+ class=\\"form-group\\" + class=\\"mb-3\\"
+ > + >
+ <label + <label
+ class=\\"form-label\\"
+ for=\\"8\\" + for=\\"8\\"
+ > + >
+ 802.11n/ac/ax mode + 802.11n/ac/ax mode
+ </label> + </label>
+ <select + <select
+ class=\\"custom-select\\" + class=\\"form-select\\"
+ id=\\"8\\" + id=\\"8\\"
+ > + >
+ <option + <option
@ -654,22 +654,25 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
+ 802.11ac - 80 MHz wide channel + 802.11ac - 80 MHz wide channel
+ </option> + </option>
+ </select> + </select>
+ <small + <div
+ class=\\"form-text text-muted\\" + class=\\"form-text\\"
+ > + >
+ Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 MHz wide channels can yield higher throughput but can cause more interference in the network. If you don't know what to choose, use the default option with 20 MHz wide channel. + <small>
+ </small> + Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 MHz wide channels can yield higher throughput but can cause more interference in the network. If you don't know what to choose, use the default option with 20 MHz wide channel.
+ </small>
+ </div>
+ </div> + </div>
+ <div + <div
+ class=\\"form-group\\" + class=\\"mb-3\\"
+ > + >
+ <label + <label
+ class=\\"form-label\\"
+ for=\\"9\\" + for=\\"9\\"
+ > + >
+ Channel + Channel
+ </label> + </label>
+ <select + <select
+ class=\\"custom-select\\" + class=\\"form-select\\"
+ id=\\"9\\" + id=\\"9\\"
+ > + >
+ <option + <option
@ -880,15 +883,16 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
+ </select> + </select>
+ </div> + </div>
+ <div + <div
+ class=\\"form-group\\" + class=\\"mb-3\\"
+ > + >
+ <label + <label
+ class=\\"form-label\\"
+ for=\\"10\\" + for=\\"10\\"
+ > + >
+ Encryption + Encryption
+ </label> + </label>
+ <select + <select
+ class=\\"custom-select\\" + class=\\"form-select\\"
+ id=\\"10\\" + id=\\"10\\"
+ > + >
+ <option + <option
@ -907,63 +911,63 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
+ WPA2 only + WPA2 only
+ </option> + </option>
+ </select> + </select>
+ <small + <div
+ class=\\"form-text text-muted\\" + class=\\"form-text\\"
+ > + >
+ The WPA3 standard is the new most secure encryption method that is suggested to be used with any device that supports it. The older devices without WPA3 support require older WPA2. If you experience issues with connecting older devices, try to enable WPA2. + <small>
+ </small> + The WPA3 standard is the new most secure encryption method that is suggested to be used with any device that supports it. The older devices without WPA3 support require older WPA2. If you experience issues with connecting older devices, try to enable WPA2.
+ </small>
+ </div>
+ </div> + </div>
+ <div + <div
+ class=\\"form-group\\" + class=\\"form-check form-switch mb-3 null\\"
+ > + >
+ <div + <input
+ class=\\"custom-control custom-switch\\" + class=\\"form-check-input\\"
+ id=\\"11\\"
+ role=\\"switch\\"
+ type=\\"checkbox\\"
+ />
+ <label
+ class=\\"form-check-label\\"
+ for=\\"11\\"
+ > + >
+ <input + Disable Management Frame Protection
+ class=\\"custom-control-input\\" + </label>
+ id=\\"11\\" + <div
+ type=\\"checkbox\\" + class=\\"form-text\\"
+ /> + >
+ <label + <small>
+ class=\\"custom-control-label\\"
+ for=\\"11\\"
+ >
+ Disable Management Frame Protection
+ </label>
+ <small
+ class=\\"form-text text-muted mt-0 mb-3\\"
+ >
+ In case you have trouble connecting to WiFi Access Point, try disabling Management Frame Protection. + In case you have trouble connecting to WiFi Access Point, try disabling Management Frame Protection.
+ </small> + </small>
+ </div> + </div>
+ </div> + </div>
+ <div + <div
+ class=\\"form-group\\" + class=\\"form-check form-switch mb-3 null\\"
+ > + >
+ <div + <input
+ class=\\"custom-control custom-switch\\" + class=\\"form-check-input\\"
+ id=\\"12\\"
+ role=\\"switch\\"
+ type=\\"checkbox\\"
+ />
+ <label
+ class=\\"form-check-label\\"
+ for=\\"12\\"
+ > + >
+ <input + Enable Guest Wi-Fi
+ class=\\"custom-control-input\\" + </label>
+ id=\\"12\\" + <div
+ type=\\"checkbox\\" + class=\\"form-text\\"
+ /> + >
+ <label + <small>
+ class=\\"custom-control-label\\"
+ for=\\"12\\"
+ >
+ Enable Guest Wi-Fi
+ </label>
+ <small
+ class=\\"form-text text-muted mt-0 mb-3\\"
+ >
+ Enables Wi-Fi for guests, which is separated from LAN network. Devices connected to this network are allowed to access the internet, but aren't allowed to access other devices and the configuration interface of the router. Parameters of the guest network can be set in the Guest network tab. + Enables Wi-Fi for guests, which is separated from LAN network. Devices connected to this network are allowed to access the internet, but aren't allowed to access other devices and the configuration interface of the router. Parameters of the guest network can be set in the Guest network tab.
+ </small> + </small>
+ </div> + </div>
+ </div> + </div>
<hr /> <hr />
<div <div
class=\\"form-group switch\\" class=\\"form-check form-switch mb-3 d-flex align-items-center\\"
> >
<div" <input"
`; `;

View File

@ -25,15 +25,10 @@ exports[`<RebootButton/> Render modal. 1`] = `
Warning! Warning!
</h5> </h5>
<button <button
class="close" aria-label="Close"
class="btn-close"
type="button" type="button"
> />
<span
aria-hidden="true"
>
×
</span>
</button>
</div> </div>
<div <div
class="modal-body" class="modal-body"

View File

@ -6,14 +6,13 @@ exports[`AlertContext should render alert 1`] = `
id="alert-container" id="alert-container"
> >
<div <div
class="alert alert-dismissible alert-danger" class="alert alert-danger alert-dismissible"
> >
<button <button
class="close" aria-label="Close"
class="btn-close"
type="button" type="button"
> />
×
</button>
Alert content Alert content
</div> </div>
</div> </div>

View File

@ -3,7 +3,7 @@
exports[`<SubmitButton/> Render load 1`] = ` exports[`<SubmitButton/> Render load 1`] = `
<div> <div>
<button <button
class="btn btn-primary col-sm-12 col-md-3 col-lg-2 d-inline-flex justify-content-center align-items-center" class="btn btn-primary col-12 col-md-3 col-lg-2 d-inline-flex justify-content-center align-items-center"
disabled="" disabled=""
type="submit" type="submit"
> >
@ -22,7 +22,7 @@ exports[`<SubmitButton/> Render load 1`] = `
exports[`<SubmitButton/> Render ready 1`] = ` exports[`<SubmitButton/> Render ready 1`] = `
<div> <div>
<button <button
class="btn btn-primary col-sm-12 col-md-3 col-lg-2 d-inline-flex justify-content-center align-items-center" class="btn btn-primary col-12 col-md-3 col-lg-2 d-inline-flex justify-content-center align-items-center"
type="submit" type="submit"
> >
<span> <span>
@ -35,7 +35,7 @@ exports[`<SubmitButton/> Render ready 1`] = `
exports[`<SubmitButton/> Render saving 1`] = ` exports[`<SubmitButton/> Render saving 1`] = `
<div> <div>
<button <button
class="btn btn-primary col-sm-12 col-md-3 col-lg-2 d-inline-flex justify-content-center align-items-center" class="btn btn-primary col-12 col-md-3 col-lg-2 d-inline-flex justify-content-center align-items-center"
disabled="" disabled=""
type="submit" type="submit"
> >