playbook_ui 14.3.1.pre.alpha.PBNTR515typeaheadmarginbottomredux3747 → 14.3.1.pre.alpha.PBNTR515typeaheadmarginbottomredux3751
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_typeahead/components/Control.tsx +17 -23
- data/dist/chunks/{_typeahead-BOTSVWKl.js → _typeahead-B2Nx6LQp.js} +1 -1
- data/dist/chunks/{_weekday_stacked-C9XGqbdf.js → _weekday_stacked-C3ENHbH6.js} +1 -1
- data/dist/chunks/vendor.js +1 -1
- data/dist/playbook-doc.js +1 -1
- data/dist/playbook-rails-react-bindings.js +1 -1
- data/dist/playbook-rails.js +1 -1
- data/lib/playbook/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a219596b775169bccb9efbd0978160c01ecc1cd985a72f6aa015e16b98f7f301
|
4
|
+
data.tar.gz: 42741cad793cf0972f85960cb2202aabffe7588182cdc00139ed1500e85e6878
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4cbc5f3762c485e6b86f6fa5f47e2ad29280a4a8b6d61bc74e109a9f2f761d616e5e3fe89e074c4c2c891b4a6242bab8bdb3143bf171bf59bda4624c14d9c492
|
7
|
+
data.tar.gz: 00fab0aa7e859e5b8d84d0c22ad05367e637a8a3ce287acb27a55ab6fadebf2396ac2a642a8daa22a35f12749d1198574c705b06fa462f33bf2e7d153998230d
|
@@ -4,32 +4,26 @@ import { components } from 'react-select'
|
|
4
4
|
import Flex from '../../pb_flex/_flex'
|
5
5
|
import TextInput from '../../pb_text_input/_text_input'
|
6
6
|
|
7
|
-
|
8
7
|
type Props = {
|
9
8
|
selectProps: any,
|
10
9
|
}
|
11
10
|
|
12
|
-
const TypeaheadControl = (props: Props) =>
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
</Flex>
|
30
|
-
</TextInput>
|
31
|
-
</div>
|
32
|
-
)
|
33
|
-
}
|
11
|
+
const TypeaheadControl = (props: Props) => (
|
12
|
+
<div className="pb_typeahead_wrapper">
|
13
|
+
<TextInput
|
14
|
+
dark={props.selectProps.dark}
|
15
|
+
error={props.selectProps.error}
|
16
|
+
label={props.selectProps.label}
|
17
|
+
marginBottom="none"
|
18
|
+
>
|
19
|
+
<Flex>
|
20
|
+
<components.Control
|
21
|
+
className="text_input"
|
22
|
+
{...props}
|
23
|
+
/>
|
24
|
+
</Flex>
|
25
|
+
</TextInput>
|
26
|
+
</div>
|
27
|
+
)
|
34
28
|
|
35
29
|
export default TypeaheadControl
|