playbook_ui_docs 14.4.0.pre.rc.0 → 14.4.0.pre.rc.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_radio/docs/_radio_children.jsx +1 -4
- data/app/pb_kits/playbook/pb_typeahead/docs/example.yml +0 -2
- data/app/pb_kits/playbook/pb_typeahead/docs/index.js +0 -1
- data/dist/playbook-doc.js +1 -1
- metadata +2 -4
- data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_margin_bottom.html.erb +0 -88
- data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_margin_bottom.jsx +0 -60
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3970e97ce261175a94dd81ae1895757a995e932d7e431f29c522e9b9aa0f15d9
|
4
|
+
data.tar.gz: 3c6cfe1ef944894af032a0034e8c1015c38924799f5d30b53e813f3d324fdd60
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d47139523c6701121d68d7b3d86ea280a91b06e2ce898a20199330a185a0d6fda30ba45b28185021bd2d3cabc9334faae77586501b564e4540f289f151e73b4
|
7
|
+
data.tar.gz: 83d5656cc066f98ae5b6a57719b142d10547d5f2cd390eb06ef3f535c6612a3254f711d6aeaed5d4661f826aff02c8a6bff0d457ed42c6ba5f99efbe8c069c87
|
@@ -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'
|