ekm-ui 0.2.0 → 0.3.0
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/.turbo/turbo-build.log +12 -12
- package/CHANGELOG.md +2 -1
- package/dist/card-payment-block.css +1 -1
- package/dist/card-payment-block.css.map +1 -1
- package/dist/card-payment-block.mjs +1 -1
- package/dist/{chunk-3CISFAGD.mjs → chunk-2IZBG5JT.mjs} +2 -2
- package/dist/{chunk-3CISFAGD.mjs.map → chunk-2IZBG5JT.mjs.map} +1 -1
- package/dist/drag-and-drop.mjs +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/layout/layout.css +1 -1
- package/dist/layout/layout.css.map +1 -1
- package/dist/layout/layout.mjs +1 -1
- package/dist/stacked-list-item.css +1 -1
- package/dist/stacked-list-item.css.map +1 -1
- package/dist/stacked-list-item.mjs +1 -1
- package/package.json +1 -1
- package/src/drag-and-drop.tsx +2 -2
|
@@ -24,7 +24,7 @@ import './chunk-OT256LE6.mjs';
|
|
|
24
24
|
import './chunk-FRIXS4BL.mjs';
|
|
25
25
|
import './chunk-YTTLKTRL.mjs';
|
|
26
26
|
import './chunk-T2OVPC6F.mjs';
|
|
27
|
-
import './chunk-
|
|
27
|
+
import './chunk-2IZBG5JT.mjs';
|
|
28
28
|
import './chunk-ZPLTGYYM.mjs';
|
|
29
29
|
import './chunk-QRNTMHBL.mjs';
|
|
30
30
|
import './chunk-ER4YVWM3.mjs';
|
package/package.json
CHANGED
package/src/drag-and-drop.tsx
CHANGED
|
@@ -152,11 +152,11 @@ export function DragAndDrop({ subtitle = 'PNG, WEBP, JPG, JPEG or GIF', filetype
|
|
|
152
152
|
onDragOver={handleDragOver}
|
|
153
153
|
onDrop={handleDrop}
|
|
154
154
|
onDragLeave={handleDagExit}
|
|
155
|
-
className="flex items-center justify-center w-full"
|
|
155
|
+
className="flex items-center justify-center w-full h-full"
|
|
156
156
|
>
|
|
157
157
|
<label
|
|
158
158
|
htmlFor="dropzone-file"
|
|
159
|
-
className={`flex flex-col items-center justify-center w-full h-
|
|
159
|
+
className={`flex flex-col items-center justify-center w-full h-full border-2 border-dashed rounded-lg cursor-pointer ${DragStateClasses[dragState]}`}
|
|
160
160
|
>
|
|
161
161
|
{renderViewState()}
|
|
162
162
|
{dragState === DragStates.NONE && <input id="dropzone-file" type="file" className="hidden" onChange={handleFileSelection} />}
|