playbook_ui_docs 14.9.0.pre.alpha.PLAY1731inputmasking4927 → 14.9.0.pre.alpha.PLAY16264818

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.
Files changed (25) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_custom.jsx +49 -53
  3. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_custom_rails.html.erb +36 -29
  4. data/app/pb_kits/playbook/pb_bread_crumbs/docs/_bread_crumbs_default.jsx +0 -6
  5. data/app/pb_kits/playbook/pb_select/docs/_select_form.jsx +108 -0
  6. data/app/pb_kits/playbook/pb_select/docs/example.yml +1 -0
  7. data/app/pb_kits/playbook/pb_select/docs/index.js +1 -0
  8. data/app/pb_kits/playbook/pb_table/docs/example.yml +0 -5
  9. data/app/pb_kits/playbook/pb_table/docs/index.js +0 -5
  10. data/app/pb_kits/playbook/pb_text_input/docs/example.yml +0 -1
  11. data/app/pb_kits/playbook/pb_text_input/docs/index.js +0 -1
  12. data/dist/playbook-doc.js +1 -1
  13. metadata +3 -14
  14. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns.html.erb +0 -95
  15. data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible.jsx +0 -75
  16. data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible.md +0 -1
  17. data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_custom_click.jsx +0 -108
  18. data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_custom_click.md +0 -2
  19. data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_custom_content.jsx +0 -94
  20. data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_custom_content.md +0 -0
  21. data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_rows.jsx +0 -83
  22. data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_rows.md +0 -3
  23. data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_table.jsx +0 -120
  24. data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_table.md +0 -1
  25. data/app/pb_kits/playbook/pb_text_input/docs/_text_input_mask.jsx +0 -88
@@ -1,88 +0,0 @@
1
- import React, { useState } from 'react'
2
-
3
- import Caption from '../../pb_caption/_caption'
4
- import TextInput from '../../pb_text_input/_text_input'
5
- import Title from '../../pb_title/_title'
6
-
7
- const TextInputMask = (props) => {
8
- const [ssn, setSSN] = useState('')
9
- const handleOnChangeSSN = ({ target }) => {
10
- setSSN(target.value)
11
- }
12
- const ref = React.createRef()
13
-
14
- const [formFields, setFormFields] = useState({
15
- currency: '',
16
- zipCode: '',
17
- postalCode: '',
18
- ssn: '',
19
- })
20
-
21
- const handleOnChangeFormField = ({ target }) => {
22
- const { name, value } = target
23
- setFormFields({ ...formFields, [name]: value })
24
- }
25
-
26
- return (
27
- <div>
28
- <TextInput
29
- label="Currency"
30
- mask="currency"
31
- name="currency"
32
- onChange={handleOnChangeFormField}
33
- value={formFields.currency}
34
- {...props}
35
- />
36
- <TextInput
37
- label="Zip Code"
38
- mask="zipCode"
39
- name="zipCode"
40
- onChange={handleOnChangeFormField}
41
- value={formFields.zipCode}
42
- {...props}
43
- />
44
- <TextInput
45
- label="Postal Code"
46
- mask="postalCode"
47
- name="postalCode"
48
- onChange={handleOnChangeFormField}
49
- value={formFields.postalCode}
50
- {...props}
51
- />
52
- <TextInput
53
- label="SSN"
54
- mask="ssn"
55
- name="ssn"
56
- onChange={handleOnChangeFormField}
57
- value={formFields.ssn}
58
- {...props}
59
- />
60
-
61
- <br />
62
- <br />
63
-
64
- <Title>{'Event Handler Props'}</Title>
65
-
66
- <br />
67
- <Caption>{'onChange'}</Caption>
68
-
69
- <br />
70
-
71
- <TextInput
72
- label="SSN"
73
- mask="ssn"
74
- onChange={handleOnChangeSSN}
75
- placeholder="Enter SSN"
76
- ref={ref}
77
- value={ssn}
78
- {...props}
79
- />
80
-
81
- {ssn !== '' && (
82
- <React.Fragment>{`SSN is: ${ssn}`}</React.Fragment>
83
- )}
84
- </div>
85
- )
86
- }
87
-
88
- export default TextInputMask