amotify 0.2.79 → 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.
- package/demo/esbuild/app.tsx +12 -51
- package/demo/esbuild/public/index.css +1 -1
- package/demo/esbuild/public/index.js +40 -40
- package/dist/@styles/componentClasses/index.css +1 -1
- package/dist/@styles/componentClasses/index.js +1 -1
- package/dist/@styles/index.css +1 -1
- package/dist/@styles/index.js +1 -1
- package/dist/@styles/style.css +1 -1
- package/dist/@styles/style.js +1 -1
- package/dist/fn/Cropper.js +1 -1
- package/dist/fn/Input/Autocomplete.d.ts +2 -1
- package/dist/fn/Input/Autocomplete.js +1 -1
- package/dist/fn/Input/Label.js +1 -1
- package/dist/fn/Input/Segmented.js +1 -1
- package/dist/fn/Input/Select.js +1 -1
- package/dist/fn/Input/Time/Picker.js +1 -1
- package/dist/fn/Input/Time/index.d.ts +2 -2
- package/dist/fn/Input/Time/index.js +1 -1
- package/dist/fn/Input/core.js +1 -1
- package/dist/fn/RootViewController.js +1 -1
- package/dist/fn/Sheet.d.ts +1 -0
- package/dist/fn/Sheet.js +1 -1
- package/dist/fn/Snackbar.js +1 -1
- package/dist/fn/SwipeView.js +1 -1
- package/dist/fn/Table/Data.js +1 -1
- package/dist/fn/Tips.js +1 -1
- package/dist/temps/designBook.js +4 -4
- package/package.json +2 -2
package/demo/esbuild/app.tsx
CHANGED
|
@@ -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
|
-
<
|
|
86
|
-
|
|
87
|
-
|
|
89
|
+
<DesignBook
|
|
90
|
+
/>
|
|
91
|
+
<Box
|
|
92
|
+
backgroundColor='posi'
|
|
88
93
|
freeCSS={ {
|
|
89
|
-
|
|
94
|
+
height: '100vh'
|
|
90
95
|
} }
|
|
91
96
|
>
|
|
92
|
-
|
|
93
|
-
|
|
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: $$.
|
|
111
|
+
themeColor: $$.localStrage.get( 'prf.themeColor' ) || 'battery',
|
|
151
112
|
// darkMode: $$.getLocalStrageData( 'prf.darkMode' ) || 'dark'
|
|
152
113
|
} )
|
|
153
114
|
|