amotify 0.2.80 → 0.2.81

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.
@@ -81,60 +81,21 @@ const OpenSheetB = () => {
81
81
  } )
82
82
  }
83
83
  let Test = () => {
84
+ let optionElms: ReactElement[] = []
85
+ for ( let i = 0; i < 100; i++ ) {
86
+ optionElms.push( <option key={ i } value={ i }>{ i }</option> )
87
+ }
84
88
  return <>
85
- <Column
86
- // display='none'
87
- padding={ 1 }
89
+ <DesignBook
90
+ />
91
+ <Box
92
+ backgroundColor='posi'
88
93
  freeCSS={ {
89
- maxWidth: 12 * 32
94
+ height: '100vh'
90
95
  } }
91
96
  >
92
- {/* <Box freeCSS={ { height: '1000vh' } } backgroundColor='posi'>
93
- A
94
- </Box> */}
95
- <Button.Prime
96
- onClick={ () => {
97
- OpenSheetA()
98
-
99
- setTimeout( () => {
100
- return
101
- Sheet.open( {
102
- sheetID: 'sheetA',
103
- type: 'normal.middleCenter',
104
- hold_state: true,
105
- content: () => {
106
- return <Sheet.Body>
107
- <Column padding={ 1 }>
108
- <Button.Sub
109
- color='cloud'
110
- ssSphere={ 3 }
111
- onClick={ () => {
112
- Sheet.close( 'sheetA' )
113
- } }
114
- ><FAI.Times /></Button.Sub>
115
- <Text.Paragraph>SheetA(holdStateAAAA)</Text.Paragraph>
116
- </Column>
117
- </Sheet.Body>
118
- }
119
- } )
120
- },1000 );
121
- } }
122
- >
123
- Open Sheet A
124
- </Button.Prime>
125
- <Button.Prime
126
- onClick={ () => {
127
- OpenSheetB()
128
- } }
129
- >
130
- Open Sheet B
131
- </Button.Prime>
132
- {/* <Box freeCSS={ { height: '100vh' } } backgroundColor='posi'>
133
- A
134
- </Box> */}
135
- </Column>
136
- <DesignBook
137
- />
97
+ dcsf
98
+ </Box>
138
99
  </>
139
100
  }
140
101
 
@@ -147,7 +108,7 @@ $$.scope( () => {
147
108
  appRoot: root,
148
109
  roundness: 3,
149
110
 
150
- themeColor: $$.getLocalStrageData( 'prf.themeColor' ) || 'battery',
111
+ themeColor: $$.localStrage.get( 'prf.themeColor' ) || 'battery',
151
112
  // darkMode: $$.getLocalStrageData( 'prf.darkMode' ) || 'dark'
152
113
  } )
153
114