amotify 0.2.42 → 0.2.44
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 +0 -40
- package/demo/esbuild/public/index.css +1 -1
- package/demo/esbuild/public/index.js +78 -78
- 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/Input/Autocomplete.d.ts +2 -1
- package/dist/fn/Input/Autocomplete.js +1 -1
- package/dist/fn/Input/Color.d.ts +14 -0
- package/dist/fn/Input/Color.js +1 -0
- package/dist/fn/Input/Filer.d.ts +12 -13
- package/dist/fn/Input/Filer.js +1 -1
- package/dist/fn/Input/TextField copy.js +3 -0
- package/dist/fn/Input/core.d.ts +1 -1
- package/dist/fn/Input/index.d.ts +2 -0
- package/dist/fn/Input/index.js +1 -1
- package/dist/temps/designBook.js +4 -4
- package/package.json +1 -1
- package/dist/fn/Tooltips copy.js +0 -1
package/demo/esbuild/app.tsx
CHANGED
|
@@ -29,47 +29,7 @@ import '../../dist/@styles/style.css'
|
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
let Test = () => {
|
|
32
|
-
|
|
33
|
-
const Open = ( sheetIndex: number ) => {
|
|
34
|
-
Sheet.open( {
|
|
35
|
-
sheetID: 'sheetID-' + sheetIndex,
|
|
36
|
-
type: 'normal.middleCenter',
|
|
37
|
-
content: () => {
|
|
38
|
-
return <Sheet.Body>
|
|
39
|
-
<Column
|
|
40
|
-
padding={ 2 }
|
|
41
|
-
gap={ 2 }
|
|
42
|
-
>
|
|
43
|
-
<Input.TextField
|
|
44
|
-
label='test'
|
|
45
|
-
required
|
|
46
|
-
/>
|
|
47
|
-
<Button.Button.Prime.R
|
|
48
|
-
onClick={ () => {
|
|
49
|
-
Open( sheetIndex + 1 )
|
|
50
|
-
} }
|
|
51
|
-
>
|
|
52
|
-
Nested Sheet
|
|
53
|
-
</Button.Button.Prime.R>
|
|
54
|
-
</Column>
|
|
55
|
-
</Sheet.Body>
|
|
56
|
-
}
|
|
57
|
-
} )
|
|
58
|
-
}
|
|
59
|
-
// useEffect( () => {
|
|
60
|
-
// Open( 0 )
|
|
61
|
-
// },[] )
|
|
62
|
-
|
|
63
32
|
return <>
|
|
64
|
-
{/* Hello
|
|
65
|
-
|
|
66
|
-
<Button.Button.Border.R
|
|
67
|
-
onClick={ () => {
|
|
68
|
-
Open( 0 )
|
|
69
|
-
} }
|
|
70
|
-
>
|
|
71
|
-
Open Sheet
|
|
72
|
-
</Button.Button.Border.R> */}
|
|
73
33
|
<DesignBook
|
|
74
34
|
/>
|
|
75
35
|
</>
|