amotify 0.2.140 → 0.2.141

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.
@@ -44,31 +44,25 @@ let Test = () => {
44
44
  <Column
45
45
  padding={ 2 }
46
46
  >
47
+ <Row.Left>
48
+ <Input.Slider
49
+ min={ 0 }
50
+ max={ 100 }
51
+ step={ 25 }
52
+ form='test'
53
+ name='slider'
54
+ />
55
+ </Row.Left>
47
56
  <Button.Sub
48
- onClick={ () => {
49
- console.log( Accordion.fn.isOpen( accordionID ) )
57
+ submitOption={ {
58
+ formName: 'test',
59
+ callback: ( data ) => {
60
+ console.log( data )
61
+ }
50
62
  } }
51
63
  >
52
- Hello World
64
+ Submit
53
65
  </Button.Sub>
54
- <Button.Sub
55
- onClick={ () => {
56
- Accordion.fn.toggle( accordionID )
57
- } }
58
- >
59
- Open Accordion
60
- </Button.Sub>
61
- <Accordion
62
- accordionID={ accordionID }
63
- // defaultOpen={ false }
64
- >
65
- <Box
66
- ssCardBox
67
- padding={ 2 }
68
- >
69
- { val_value }
70
- </Box>
71
- </Accordion>
72
66
  </Column>
73
67
  </Plate>
74
68
  {/* <DesignBook