amotify 0.2.109 → 0.2.111

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.
@@ -55,34 +55,48 @@ let Test = () => {
55
55
  return <Box
56
56
  minHeight={ 'viewHeight' }
57
57
  >
58
- <DesignBook
59
- />
58
+ {/* <DesignBook
59
+ /> */}
60
60
  <Row.Center
61
- display='none'
62
61
  flexCenter
63
- freeCSS={ {
64
- height: '100vh'
65
- } }
62
+ padding={ 3 }
66
63
  >
67
- <Input.Search
68
- freeCSS={ { minWidth: 12 * 12 } }
69
- name='search'
70
- label='Input.Search'
71
- required
72
- options={ Options }
73
- // DynamicOptionsOnSearch={ async ( keyword ) => {
74
- // console.log( 'keyword',keyword )
75
- // let options: Input.Autocomplete.Option[] = []
76
- // for ( let i = 0; i < 100; i++ ) {
77
- // options.push( {
78
- // value: i,
79
- // label: String( i ),
80
- // searchValue: keyword
81
- // } )
82
- // }
83
- // return options
84
- // } }
85
- />
64
+ <Button.Prime
65
+ onClick={ () => {
66
+ Sheet.open( {
67
+ type: 'normal.middleCenter',
68
+ content: () => {
69
+ return <Sheet.Body>
70
+ <Column
71
+ padding={ 2 }
72
+ gap={ 2 }
73
+ >
74
+ <Box
75
+ backgroundColor='gray'
76
+ flexCenter
77
+ freeCSS={ {
78
+ pageBreakAfter: 'always'
79
+ } }
80
+ >
81
+ AAAAA
82
+ </Box>
83
+ <Box
84
+ backgroundColor='nega'
85
+ flexCenter
86
+ freeCSS={ {
87
+ pageBreakAfter: 'always'
88
+ } }
89
+ >
90
+ BBB
91
+ </Box>
92
+ </Column>
93
+ </Sheet.Body>
94
+ }
95
+ } )
96
+ } }
97
+ >
98
+ OpenSheet
99
+ </Button.Prime>
86
100
  </Row.Center>
87
101
  </Box>
88
102
  }