playbook_ui_docs 14.4.0.pre.rc.0 → 14.4.0.pre.rc.2

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: c54ba703b184e586be6b60ae78c1906b177980ba3df3acb632c62c25fa50ef34
4
- data.tar.gz: ec484d6808853c43e08c09ea1847c83314cd338575f255f9344207396f4448f4
3
+ metadata.gz: 5aa593fb310da39720c8922b768ce6704b7c98e4fc4666db3f16c47d19278685
4
+ data.tar.gz: 72e6a2c53209789bf81db0df89635efbaae5c4fe8925081ce6c9a89edf4efe2a
5
5
  SHA512:
6
- metadata.gz: 808f9245ee0a6c7ff53fc321ea929b2ed4eafadd0019774941e15901f21b8bbd41d43e2f4c6c3a457ce1247f766d192852a073d9d7e3d64c7d2e887bb1dc9fd3
7
- data.tar.gz: 2cb4480e4d498adf7a1789194588fa9d4375ba0c33a9e5e2ee6d1a9af4fa1d570e735302c5f6c69b29838fe49ce5773e1fa6eab85c78b6d6b76496a33cfff008
6
+ metadata.gz: 0cade30d585e1291b96c5ea5d35df64851dbf21e0c8416272d63fc8eabc67fc57acb84e6ebf90d047e3acea25222cbc65b857f166702a2ea078e68768a2faee2
7
+ data.tar.gz: 2c0946ec402e5c0369b3f01060e4e703ee6a606da52bde81c750d096f070493fcac6810458c8b618bb9e278159a544bd409527f3beefa541a65b81b641066322
@@ -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'