amotify 0.2.64 → 0.2.65

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.
@@ -32,27 +32,22 @@ import { faRobot } from '@fortawesome/free-solid-svg-icons/faRobot'
32
32
 
33
33
  let Test = () => {
34
34
  return <>
35
- <Button
36
- submitOption={ {
37
- formName: 'testForm',
38
- callback: ( form ) => {
39
- console.log( form )
40
- }
41
- } }
42
- >
43
- Submit
44
- </Button>
45
- <Button.Clear.S>
46
- adsfvds
47
- </Button.Clear.S>
48
- <Button.Sub.L>
49
- adsfvds
50
- </Button.Sub.L>
51
- <Button>
52
- avsdfsg
53
- </Button>
54
- <DesignBook
55
- />
35
+ <Box height={ 'viewHeight' }>
36
+ <Input.Filer
37
+ cellStyles={ {
38
+ padding: 3
39
+ } }
40
+ tone='cloud'
41
+ accept='.xlsx'
42
+ isNameEditable={ false }
43
+ onUpdateValidValue={ ( { value } ) => {
44
+ if ( !value.length ) return
45
+ // Hooks.readSpreadSheet( value[ 0 ],p )
46
+ } }
47
+ />
48
+ </Box>
49
+ {/* <DesignBook
50
+ /> */}
56
51
  </>
57
52
  }
58
53