amotify 0.2.83 → 0.2.84

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.
@@ -86,16 +86,65 @@ let Test = () => {
86
86
  optionElms.push( <option key={ i } value={ i }>{ i }</option> )
87
87
  }
88
88
  return <>
89
- <DesignBook
90
- />
91
- <Box
92
- backgroundColor='posi'
89
+ <Row.Center
90
+ flexCenter
93
91
  freeCSS={ {
94
92
  height: '100vh'
95
93
  } }
96
94
  >
97
- dcsf
98
- </Box>
95
+ <Button.Prime
96
+ onClick={ () => {
97
+ Sheet.open( {
98
+ type: 'normal.middleCenter',
99
+ hold_state: true,
100
+ content: () => {
101
+ return <Sheet.Body>
102
+ <Column
103
+ padding={ 2 }
104
+ >
105
+ <Button.Sub
106
+ ssEffectsOnActive='ripple.theme'
107
+ onClick={ ( e ) => {
108
+ Tooltips.open( {
109
+ parent: e.currentTarget,
110
+ closeAtParentBlur: false,
111
+ content: <Tooltips.Body>
112
+ <Column
113
+ padding={ 4 }
114
+ >
115
+ AAAA
116
+ </Column>
117
+ </Tooltips.Body>
118
+ } )
119
+ } }
120
+ >
121
+ Open Tooltips
122
+ </Button.Sub>
123
+ </Column>
124
+ </Sheet.Body>
125
+ }
126
+ } )
127
+ } }
128
+ >
129
+ Submit
130
+ </Button.Prime>
131
+ <Button.Prime
132
+ onClick={ () => {
133
+ OpenSheetA()
134
+ } }
135
+ >
136
+ Sheet A
137
+ </Button.Prime>
138
+ <Button.Prime
139
+ onClick={ () => {
140
+ OpenSheetB()
141
+ } }
142
+ >
143
+ Sheet B
144
+ </Button.Prime>
145
+ </Row.Center>
146
+ {/* <DesignBook
147
+ /> */}
99
148
  </>
100
149
  }
101
150