playbook_ui_docs 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: 46c7537d3fa7a462969f7bb26e0e96830f23e2b4de941063013b393915d61e5a
4
- data.tar.gz: 188bdd92fa8d9f2c3b5a1cf89af2b085d2a33288fdfd6321d87ff5e0dfb87c98
3
+ metadata.gz: c958c4b4ce783d1a9305a5220c431982b627856ba0f98c61603d62f4bf43ebec
4
+ data.tar.gz: 72a39d276b451e91cad1061c30594a20b407bacfc4a3d684d95a38e3595b481b
5
5
  SHA512:
6
- metadata.gz: 1109144e315e4f548b69bd2ef7ad22f53f6855d347ed53e6be552dd5f6df845c5987a6f3d015bb8023b558c5dc2e9f7a895572c7b532920d31513c6a7d4e6ab5
7
- data.tar.gz: 3477ed50d3aab01b75909d7930dbdf24da871e240d41b773acbcf63fce3d6d74537d720fa7efd5f6f8574d6df0add01e540c23e0a1a6a9855201b88ebe225315
6
+ metadata.gz: 2cad86fb971dc794045d1220a44340801f460f4350470f924227efa5b98deaee1f7b7db31c0658ffde7c46183b12cea98da4bde7e313478efb148f8b229bff8c
7
+ data.tar.gz: dbbd7f99d927fd4aef03e5cb55843abeb27cb749368c7fccba83d8fe01103a07b279a2e4e0b17178c6170b97dd0b4f3f7e5f646d8ece6a59a2f52c49130de9b6
@@ -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}