amotify 0.2.69 → 0.2.70

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.
@@ -38,6 +38,15 @@ let Test = () => {
38
38
  maxWidth: 12 * 32
39
39
  } }
40
40
  >
41
+ <Input.Autocomplete
42
+ value={ { b: 'b' } }
43
+ options={ [
44
+ { value: { a: 'a' },label: 'a' },
45
+ { value: { b: 'b' },label: 'b' },
46
+ { value: { c: 'c' },label: 'c' },
47
+ { value: { d: 'd' },label: 'd' },
48
+ ] }
49
+ />
41
50
  <Input.TextField
42
51
  form='testForm'
43
52
  name='test'
@@ -71,8 +80,8 @@ let Test = () => {
71
80
  Submit
72
81
  </Button>
73
82
  </Column>
74
- {/* <DesignBook
75
- /> */}
83
+ <DesignBook
84
+ />
76
85
  </>
77
86
  }
78
87