playbook_ui_docs 14.3.0.pre.rc.11 → 14.3.1.pre.alpha.PLAY14973742

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: 327b5c81e7a4c5acd41521c726de5370505025031476138e97fc882630257041
4
- data.tar.gz: a6224b64c9f26ca5455a23aca917d3ac8557cb24645e7858236f499c0c2235f3
3
+ metadata.gz: fbd6fb7a55bed07aabf48add7a6f4beda7900a9bac30b68b102369ab9aed0798
4
+ data.tar.gz: 5e129ea89ba5e5c988bc25801b984cae125f399bd5cd46a1f7e5deee87c47d53
5
5
  SHA512:
6
- metadata.gz: 4e358265e1e43c59dc32a0ef2c7718e275cabe652e494524f7b53d7c82f551a2da40fa0ba31d60b62444c80e5d77f459f3497c9f09fbebc1ae9d188c898039f3
7
- data.tar.gz: 1c28076bcd8ba962990ba8528362ec56f5e5caf4330a0c9f552ea151afda56e7bab20b93c68ac28575a549cc7b395ecc8e6ab338f65e131b31044b9a21c90b61
6
+ metadata.gz: fd8b0a56bf19a5d44c9347b3a5d1de7271f2f5d30bd8f843f1993455ecaa495f3fe09dd9799086d5ec07fd67a2b8f2a764a9596320d1ea247809c1aba0b08646
7
+ data.tar.gz: 5fb064ab05c80decba073c7efa542b23db6cfdb2eb433bec890e1bbd3fda142e2b8fb2df77530117e72537efb20250abae8b1e71c4df0fe8989d13c75fc54d4d
@@ -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'