playbook_ui_docs 14.9.0.pre.alpha.play1742globalheightfixes4925 → 14.9.0.pre.alpha.play17004992

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: 8c8ba8872c2beeaf0e2ad2b7fa03aa91b246fadefecad9f7b2d8ef96b7b00c8b
4
- data.tar.gz: dac0d901217e696767ab06e23b388c9bc5c34e6005da6de2efc07008a65632cf
3
+ metadata.gz: 6d938ef74047c80359926c33dfd58abd04d77346b3f72c6a4266cfd21e3acb6b
4
+ data.tar.gz: 9349009950675d6d29c2f365664a393f40430a6986e14dcd426e3f530ebb1abf
5
5
  SHA512:
6
- metadata.gz: 347e00e439a0954eaa33e48871fff6e83d19ca9576e4ff4a1095a8c9c8407cad4282c3ae5211a43338fb9f632b8c8cf8aa441839a3eb05752dcb2ee4caeaff6e
7
- data.tar.gz: 462b48b5b2edf73d09232155395ffafef466ee7d61ad0d6c4403135b18d2cefbfcc33d3d694659b10b890f19986e405b71ff7179e1f6c8cfe66bc8ed12e54b9b
6
+ metadata.gz: 3fd879f7c5cbacec83f8138a947b28668692d01741f1c4f2bdd620224e81d1b7fee2531bd06d1b40122ac33eae2f632ea5af81b768e0a868fd1e71c1a17f67a1
7
+ data.tar.gz: 4d9fe2f20f2490e8ebe69f2ac3aa1fcea3bd25ef4ffcc2977180fc2f104dd486ca30b0b26d2bd186106cf1914c4fcdd9b8ba6a2c442cefa42388643227c390be
@@ -0,0 +1,88 @@
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
@@ -16,6 +16,7 @@ examples:
16
16
  - text_input_add_on: Add On
17
17
  - text_input_inline: Inline
18
18
  - text_input_no_label: No Label
19
+ - text_input_mask: Mask
19
20
 
20
21
  swift:
21
22
  - text_input_default_swift: Default
@@ -5,3 +5,4 @@ export { default as TextInputDisabled } from './_text_input_disabled.jsx'
5
5
  export { default as TextInputAddOn } from './_text_input_add_on.jsx'
6
6
  export { default as TextInputInline } from './_text_input_inline.jsx'
7
7
  export { default as TextInputNoLabel } from './_text_input_no_label.jsx'
8
+ export { default as TextInputMask } from './_text_input_mask.jsx'