Skip to content

Commit 94b19a0

Browse files
author
FalkWolsky
committed
Small Fixes and SDK Version increase
1 parent b134ab1 commit 94b19a0

File tree

2 files changed

+40
-7
lines changed

2 files changed

+40
-7
lines changed

client/packages/lowcoder-sdk/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lowcoder-sdk",
3-
"version": "2.5.4",
3+
"version": "2.5.5",
44
"type": "module",
55
"files": [
66
"src",

client/packages/lowcoder/src/comps/queries/queryComp/queryPropertyView.tsx

+39-6
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const Wrapper = styled.div`
4747
font-size: 13px;
4848
line-height: 1.5;
4949
color: grey;
50-
margin-bottom: 8px;
50+
margin-bottom: 12px;
5151
}
5252
5353
.section {
@@ -567,11 +567,44 @@ const ComponentButton = (props: {
567567
return (
568568
<Tooltip title={props.path} placement="top">
569569
<DataSourceButton onClick={handleClick}>
570-
<div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
571-
{Icon && <Icon style={{ width: "32px"}} />}
572-
<div>
573-
<div style={{ fontSize: "14px", fontWeight: "bold" }}>{props.componentName}</div>
574-
<div style={{ fontSize: "12px", fontWeight: "400" }}>{props.componentType}</div>
570+
<div style={{ display: "flex", alignItems: "flex-start", gap: "5px", width: "100%"}}>
571+
<div style={{ flex: 1}}>
572+
{Icon && (
573+
<Icon style={{ margin: "0px", width: "32px" }} />
574+
)}
575+
</div>
576+
<div style={{ flex: 2, overflow: "hidden", textOverflow: "ellipsis", whiteSpace: "nowrap" }}>
577+
<div
578+
style={{
579+
marginTop: "5px",
580+
fontSize: "14px",
581+
fontWeight: "bold",
582+
maxWidth: "100%",
583+
overflow: "hidden",
584+
textOverflow: "ellipsis",
585+
whiteSpace: "nowrap",
586+
}}
587+
title={props.componentName} // Tooltip to show full name on hover
588+
>
589+
{props.componentName?.length > 100
590+
? `${props.componentName.slice(0, 100)}...`
591+
: props.componentName}
592+
</div>
593+
<div
594+
style={{
595+
fontSize: "12px",
596+
fontWeight: "400",
597+
maxWidth: "100%",
598+
overflow: "hidden",
599+
textOverflow: "ellipsis",
600+
whiteSpace: "nowrap",
601+
}}
602+
title={props.componentType} // Tooltip for type too
603+
>
604+
{props.componentType?.length > 100
605+
? `${props.componentType.slice(0, 100)}...`
606+
: props.componentType}
607+
</div>
575608
</div>
576609
</div>
577610
</DataSourceButton>

0 commit comments

Comments
 (0)