playbook_ui_docs 14.5.0.pre.rc.10 → 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: 19e2b546ea82fe666166291c48a804a7f7efbaa87323a7b01c1091df33a0c311
4
- data.tar.gz: 5b70a856950624c4951eb1f511bc379b588ef9a6f9a8377e9e6bb490823391a0
3
+ metadata.gz: c958c4b4ce783d1a9305a5220c431982b627856ba0f98c61603d62f4bf43ebec
4
+ data.tar.gz: 72a39d276b451e91cad1061c30594a20b407bacfc4a3d684d95a38e3595b481b
5
5
  SHA512:
6
- metadata.gz: 2c2692154f92d60678d9aa5238350729523baf16d76130db30e1ebc76f564f1d6b58ca01de380949a7658749345adb4ef65e5e1b36e4b4a217ac84ba507dee05
7
- data.tar.gz: 70a22e0ae39a2d66ee36f40177ff3a235b22c947b31d16ba65754e1fd81b7064db80f9a1bf5dd3b2a88e06b59fe1280aab5c71d9051a345443026a3635980563
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}