amotify 0.2.107 → 0.2.109
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/.env +2 -0
- package/demo/esbuild/app.tsx +4 -2
- package/demo/esbuild/designBook.tsx +2 -1
- package/demo/esbuild/public/index.css +1 -1
- package/demo/esbuild/public/index.js +64 -64
- package/dist/@declares/property.d.ts +1 -1
- 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/@styles/var.css +1 -1
- package/dist/fn/Cropper.js +1 -1
- package/dist/fn/Sheet.js +1 -1
- package/package.json +2 -1
package/.env
ADDED
package/demo/esbuild/app.tsx
CHANGED
|
@@ -52,7 +52,9 @@ let Test = () => {
|
|
|
52
52
|
Options.push( { value: 'optionJP' + i,label: '選択肢-' + i } )
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
-
return
|
|
55
|
+
return <Box
|
|
56
|
+
minHeight={ 'viewHeight' }
|
|
57
|
+
>
|
|
56
58
|
<DesignBook
|
|
57
59
|
/>
|
|
58
60
|
<Row.Center
|
|
@@ -82,7 +84,7 @@ let Test = () => {
|
|
|
82
84
|
// } }
|
|
83
85
|
/>
|
|
84
86
|
</Row.Center>
|
|
85
|
-
|
|
87
|
+
</Box>
|
|
86
88
|
}
|
|
87
89
|
|
|
88
90
|
$$.scope( () => {
|
|
@@ -2944,7 +2944,8 @@ let DesignBook = () => {
|
|
|
2944
2944
|
<Column
|
|
2945
2945
|
gap={ 0 }
|
|
2946
2946
|
minHeight={ 'contentHeight' }
|
|
2947
|
-
backgroundColor={ 'layer.1' }
|
|
2947
|
+
// backgroundColor={ 'layer.1' }
|
|
2948
|
+
backgroundColor='gray'
|
|
2948
2949
|
position={ 'relative' }
|
|
2949
2950
|
freeCSS={ {
|
|
2950
2951
|
zIndex: 1
|