amotify 0.2.170 → 0.2.172

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.
@@ -29,9 +29,30 @@ import {
29
29
  } from './designBook'
30
30
 
31
31
  let Test = () => {
32
- return <Box>
32
+ return <Box padding={ 4 }>
33
+ <Input.TextField.Password
34
+ label="Password"
35
+ />
33
36
  <DesignBook
34
37
  />
38
+
39
+ <Box padding={ 2 } backgroundColor='posi'>
40
+ <Box padding={ 2 } backgroundColor='nega'>
41
+ <Box padding={ 2 } backgroundColor='warn'
42
+ onClick={ ( event ) => {
43
+ $$( event.target )
44
+ .parent()
45
+ .parent()
46
+ .callback( ( input ) => {
47
+ let Input = input[ 0 ]
48
+ console.log( "Input",input[ 0 ] )
49
+ } )
50
+ } }
51
+ >
52
+ Submit
53
+ </Box>
54
+ </Box>
55
+ </Box>
35
56
  </Box>
36
57
  }
37
58