amotify 0.2.82 → 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.
- package/demo/esbuild/app.tsx +55 -6
- package/demo/esbuild/public/index.js +35 -35
- package/dist/fn/Input/Autocomplete.d.ts +1 -1
- package/dist/fn/Input/Autocomplete.js +1 -1
- package/dist/fn/Input/Label.js +1 -1
- package/dist/fn/Input/Select.d.ts +1 -1
- package/dist/fn/Input/Select.js +1 -1
- package/dist/fn/Sheet.js +1 -1
- package/dist/fn/Table/Data.js +1 -1
- package/package.json +1 -1
package/demo/esbuild/app.tsx
CHANGED
|
@@ -86,16 +86,65 @@ let Test = () => {
|
|
|
86
86
|
optionElms.push( <option key={ i } value={ i }>{ i }</option> )
|
|
87
87
|
}
|
|
88
88
|
return <>
|
|
89
|
-
<
|
|
90
|
-
|
|
91
|
-
<Box
|
|
92
|
-
backgroundColor='posi'
|
|
89
|
+
<Row.Center
|
|
90
|
+
flexCenter
|
|
93
91
|
freeCSS={ {
|
|
94
92
|
height: '100vh'
|
|
95
93
|
} }
|
|
96
94
|
>
|
|
97
|
-
|
|
98
|
-
|
|
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
|
|