@lark-apaas/client-toolkit 1.1.17-safety-test.1 → 1.1.18
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.
|
@@ -35,6 +35,7 @@ const Component = ()=>{
|
|
|
35
35
|
}, [
|
|
36
36
|
isMobile
|
|
37
37
|
]);
|
|
38
|
+
if ('production' !== process.env.NODE_ENV) return null;
|
|
38
39
|
if (!visible) return null;
|
|
39
40
|
if (isMobile) return /*#__PURE__*/ jsxs(Sheet, {
|
|
40
41
|
open: open,
|
|
@@ -66,7 +67,7 @@ const Component = ()=>{
|
|
|
66
67
|
className: "flex flex-col bg-white overflow-hidden rounded-t-2xl relative",
|
|
67
68
|
children: [
|
|
68
69
|
/*#__PURE__*/ jsx(X, {
|
|
69
|
-
className: "absolute top-2 left-4 size-6",
|
|
70
|
+
className: "absolute top-2 left-4 size-6 text-[#2B2F36]",
|
|
70
71
|
onClick: ()=>setOpen(false)
|
|
71
72
|
}),
|
|
72
73
|
/*#__PURE__*/ jsx("img", {
|
|
@@ -172,9 +173,9 @@ const Component = ()=>{
|
|
|
172
173
|
})
|
|
173
174
|
}),
|
|
174
175
|
/*#__PURE__*/ jsx(PopoverContent, {
|
|
175
|
-
className: "overflow-hidden p-0 m-0 border-0",
|
|
176
|
+
className: "overflow-hidden p-0 m-0 border-0 rounded-xl!",
|
|
176
177
|
style: {
|
|
177
|
-
boxShadow: '0 6px 12px 0
|
|
178
|
+
boxShadow: '0 6px 12px 0 #41444a0a, 0 8px 24px 0 #41444a0a'
|
|
178
179
|
},
|
|
179
180
|
side: "top",
|
|
180
181
|
align: "end",
|
package/package.json
CHANGED