amotify 0.2.113 → 0.2.114

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.
@@ -52,9 +52,7 @@ let Test = () => {
52
52
  Options.push( { value: 'optionJP' + i,label: '選択肢-' + i } )
53
53
  }
54
54
 
55
- return <Box
56
- // minHeight={ 'viewHeight' }
57
- >
55
+ return <Box>
58
56
  {/* <DesignBook
59
57
  /> */}
60
58
  <Row.Center
@@ -65,6 +63,16 @@ let Test = () => {
65
63
  onClick={ () => {
66
64
  Sheet.open( {
67
65
  type: 'normal.middleCenter',
66
+ openAfter: () => {
67
+ // $$( '.AMOTIFY_be_origin' ).css( { 'display': 'none' } )
68
+
69
+ $$.interval.once( () => {
70
+ window.print()
71
+ },1000,'receipt/preview' )
72
+ },
73
+ closeAfter: () => {
74
+ // $$( '.AMOTIFY_be_origin' ).css( { 'display': 'block' } )
75
+ },
68
76
  content: () => {
69
77
  return <Sheet.Body>
70
78
  <Column
@@ -80,7 +88,7 @@ let Test = () => {
80
88
  >
81
89
  AAAAA
82
90
  </Box>
83
- <Box
91
+ {/* <Box
84
92
  backgroundColor='nega'
85
93
  flexCenter
86
94
  freeCSS={ {
@@ -88,7 +96,7 @@ let Test = () => {
88
96
  } }
89
97
  >
90
98
  BBB
91
- </Box>
99
+ </Box> */}
92
100
  </Column>
93
101
  </Sheet.Body>
94
102
  }