playbook_ui 14.5.0.pre.rc.11 → 14.5.0.pre.rc.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d17aeb4ed6b65547cd38d026d2c9c1671a41f95f24ffe2fc2e53cf837e53c4d2
4
- data.tar.gz: 78941a30f341fc25df571a6c6b7de5646b18d2126944d24fbd2a260666a09208
3
+ metadata.gz: 95add811bb02c8df2266f1c07efeca30f3b61a89c1b6fd75d0e9c40c4e488195
4
+ data.tar.gz: 4809448248d80d73583654f235817f4d6a5ebd8c7c828abb4434888e8b5f7a73
5
5
  SHA512:
6
- metadata.gz: 4f4f6c8bf7cd779aeb8d2a95b2d3451ae0ff87073042d08e8dc5d17916815e60014c05a2392d281f54cefbbb7d2d79726cf746593a53a6770bef603c20a20b2a
7
- data.tar.gz: e210d3a7456c34e31df53f0c3e2dc0139ed25cf6784ee7506fd2f228b58c731c5b8aab90be9fc1b9073e7b7a09c9e3520f7fb5ea185cf9dadd89141048710595
6
+ metadata.gz: c51b5c0c3c15a3cb5a093183bdeb9810f4b6baacce482f94b505589e93dcb425ddac90fc017035084c459aac57654edbde2186cb6ae217acf806afab748f20bc
7
+ data.tar.gz: 9fb8fbd615c00074de744447be6c49e60d18837407369ea796fb0c77ff335731ea563d58f2f9740b0ba8e680b21a0b5bc86013a2c06512f7d7405da1acd8d52d
@@ -10,6 +10,7 @@
10
10
  <%= pb_rails("radio", props: {
11
11
  custom_children: true,
12
12
  label: "Select",
13
+ margin_bottom: "sm",
13
14
  name: "Group1",
14
15
  value: "Select",
15
16
  }) do %>
@@ -22,6 +23,7 @@
22
23
  <%= pb_rails("radio", props: {
23
24
  custom_children: true,
24
25
  label: "Typeahead",
26
+ margin_bottom: "sm",
25
27
  name: "Group1",
26
28
  value: "Typeahead",
27
29
  }) do %>
@@ -19,12 +19,14 @@ const RadioChildren = (props) => {
19
19
  <Radio
20
20
  customChildren
21
21
  label="Select"
22
+ marginBottom="sm"
22
23
  name="Group1"
23
24
  tabIndex={0}
24
25
  value="Select"
25
26
  {...props}
26
27
  >
27
- <Select
28
+ <Select
29
+ marginBottom="none"
28
30
  minWidth="xs"
29
31
  options={options}
30
32
  />
@@ -32,17 +34,18 @@ const RadioChildren = (props) => {
32
34
  <Radio
33
35
  customChildren
34
36
  label="Typeahead"
37
+ marginBottom="sm"
35
38
  name="Group1"
36
39
  tabIndex={0}
37
40
  value="Typeahead"
38
41
  {...props}
39
42
  >
40
43
  <Typeahead
44
+ marginBottom="none"
41
45
  minWidth="xs"
42
46
  options={options}
43
47
  />
44
48
  </Radio>
45
- <br />
46
49
  <Radio
47
50
  customChildren
48
51
  defaultChecked={false}