playbook_ui_docs 14.3.1.pre.alpha.PBNTR515typeaheadmarginbottomredux3752 → 14.3.1.pre.alpha.PLAY14973742

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui_docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 14.3.1.pre.alpha.PBNTR515typeaheadmarginbottomredux3752
4
+ version: 14.3.1.pre.alpha.PLAY14973742
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -1885,7 +1885,6 @@ files:
1885
1885
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_error_state.md
1886
1886
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_inline.html.erb
1887
1887
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_inline.jsx
1888
- - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_margin_bottom.jsx
1889
1888
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_multi_kit.html.erb
1890
1889
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_multi_kit.jsx
1891
1890
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_context.html.erb
@@ -1,60 +0,0 @@
1
- import React from 'react'
2
-
3
- import Typeahead from '../_typeahead'
4
-
5
- const options = [
6
- { label: 'Orange', value: '#FFA500' },
7
- { label: 'Red', value: '#FF0000' },
8
- { label: 'Green', value: '#00FF00' },
9
- { label: 'Blue', value: '#0000FF' },
10
- ]
11
-
12
- const TypeaheadMarginBottom = (props) => {
13
- return (
14
- <>
15
- <Typeahead
16
- label="None"
17
- marginBottom="none"
18
- options={options}
19
- {...props}
20
- />
21
- <Typeahead
22
- label="XXS"
23
- marginBottom="xxs"
24
- options={options}
25
- {...props}
26
- />
27
- <Typeahead
28
- label="XS"
29
- marginBottom="xs"
30
- options={options}
31
- {...props}
32
- />
33
- <Typeahead
34
- label="Default - SM"
35
- options={options}
36
- {...props}
37
- />
38
- <Typeahead
39
- label="MD"
40
- marginBottom="md"
41
- options={options}
42
- {...props}
43
- />
44
- <Typeahead
45
- label="LG"
46
- marginBottom="lg"
47
- options={options}
48
- {...props}
49
- />
50
- <Typeahead
51
- label="XL"
52
- marginBottom="xl"
53
- options={options}
54
- {...props}
55
- />
56
- </>
57
- )
58
- }
59
-
60
- export default TypeaheadMarginBottom