playbook_ui_docs 14.3.0.pre.rc.12 → 14.3.1.pre.alpha.dhhuynh2patch13743

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: 7aad977e017bcf1f6ca6ecccb324ba1bc60216374e889c2b7383cd63eb23ce5f
4
- data.tar.gz: dbc6af4dca18aa0093066bc9a2a79d8b87caeb45443f2e620c3490e1d1d6eb21
3
+ metadata.gz: 92f2597f89bc3d3c5e629b358a983bf928ffbd017ce22d8393218ab425eae835
4
+ data.tar.gz: b0f247526ee751ba2aa03ad142c3b2efb6cc617472c922acddbf617489c6645b
5
5
  SHA512:
6
- metadata.gz: 87a4ed02efde55b69ded34316a2bcbb652158252e40d6ed8d0563a0685851d9c40b0d261246ba5988ae325de29ec0302ea6daf154e62cf69642a6509364238c8
7
- data.tar.gz: 6d75b84e9cf29062e9f6b1164775567ad5eb19daf3e68c248c63599c97480ee5814d2253460b31673d82b292c0027a837689ec23194dc06290de27acdc87f2d1
6
+ metadata.gz: bff5dbad8253644e7c4cc977918cfc4885210774c2e6c138ab11f7f281ca5131fc349dfba60ff93effe6e2e56e0b51c36fab2a80a9b8bc250374613f01f65b3f
7
+ data.tar.gz: 0ec66c9ff48afaf51710d30ac96cc488964a0b4454ab2b5007ac8846768c8aceaba8eb9d234416d6172441a0887416138a111c8967aec45fe4e88c7a6f58cd34
@@ -18,32 +18,29 @@ const RadioChildren = (props) => {
18
18
  <div>
19
19
  <Radio
20
20
  label="Select"
21
- marginBottom="sm"
22
21
  name="Group1"
23
22
  tabIndex={0}
24
23
  value="Select"
25
24
  {...props}
26
25
  >
27
26
  <Select
28
- marginBottom="none"
29
27
  minWidth="xs"
30
28
  options={options}
31
29
  />
32
30
  </Radio>
33
31
  <Radio
34
32
  label="Typeahead"
35
- marginBottom="sm"
36
33
  name="Group1"
37
34
  tabIndex={0}
38
35
  value="Typeahead"
39
36
  {...props}
40
37
  >
41
38
  <Typeahead
42
- marginBottom="none"
43
39
  minWidth="xs"
44
40
  options={options}
45
41
  />
46
42
  </Radio>
43
+ <br />
47
44
  <Radio
48
45
  defaultChecked={false}
49
46
  label="Typography"
@@ -9,7 +9,6 @@ examples:
9
9
  - typeahead_inline: Inline
10
10
  - typeahead_multi_kit: Multi Kit Options
11
11
  - typeahead_error_state: Error State
12
- - typeahead_margin_bottom: Margin Bottom
13
12
 
14
13
  react:
15
14
  - typeahead_default: Default
@@ -24,4 +23,3 @@ examples:
24
23
  - typeahead_async_createable: Createable (+ Async Data)
25
24
  - typeahead_error_state: Error State
26
25
  - typeahead_custom_menu_list: Custom MenuList
27
- - typeahead_margin_bottom: Margin Bottom
@@ -10,4 +10,3 @@ export { default as TypeaheadCreateable } from './_typeahead_createable.jsx'
10
10
  export { default as TypeaheadAsyncCreateable } from './_typeahead_async_createable.jsx'
11
11
  export { default as TypeaheadErrorState } from './_typeahead_error_state.jsx'
12
12
  export { default as TypeaheadCustomMenuList } from './_typeahead_custom_menu_list.jsx'
13
- export { default as TypeaheadMarginBottom } from './_typeahead_margin_bottom.jsx'