Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite30af23

Browse files
authored
Merge pull request#1776 from lowcoder-org/dev
Dev -> Main for v2.7.2
2 parents6284ae7 +854a10e commite30af23

File tree

87 files changed

+1415
-552
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+1415
-552
lines changed

‎client/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.0
1+
2.7.2

‎client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"lowcoder-frontend",
3-
"version":"2.7.0",
3+
"version":"2.7.2",
44
"type":"module",
55
"private":true,
66
"workspaces": [

‎client/packages/lowcoder-comps/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"lowcoder-comps",
3-
"version":"2.7.1",
3+
"version":"2.7.2",
44
"type":"module",
55
"license":"MIT",
66
"dependencies": {

‎client/packages/lowcoder-design/src/components/Modal/handler.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
importstyled,{css}from"styled-components";
2-
import{memo,useMemo}from"react";
2+
import{RefObject}from"react";
33

44
typeResizeHandleAxis="s"|"w"|"e"|"n"|"sw"|"nw"|"se"|"ne";
55
typeReactRef<TextendsHTMLElement>={
@@ -84,10 +84,9 @@ const ResizeHandle = styled.div<{ $axis: string }>`
8484
${(props)=>(["sw","nw","se","ne"].indexOf(props.$axis)>=0 ?CornerHandle :"")};
8585
`;
8686

87-
// Memoize Handle component
88-
constHandle=memo((axis:ResizeHandleAxis,ref:ReactRef<HTMLDivElement>)=>{
89-
return<ResizeHandleref={ref}$axis={axis}className="react-resizable-handle"/>;
90-
});
87+
constHandle=(resizeHandle:ResizeHandleAxis,ref:RefObject<HTMLDivElement>)=>{
88+
return<ResizeHandleref={ref}$axis={resizeHandle}className="react-resizable-handle"/>;
89+
};
9190

9291
Handle.displayName='Handle';
9392

‎client/packages/lowcoder-design/src/icons/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ export { ReactComponent as RecyclerIcon } from "./remix/delete-bin-line.svg";
255255
export{ReactComponentasMarketplaceIcon}from"./v1/icon-application-marketplace.svg";
256256
export{ReactComponentasFavoritesIcon}from"./v1/icon-application-favorites.svg";
257257
export{ReactComponentasHomeSettingIcon}from"./remix/settings-4-line.svg";
258-
export{ReactComponentasEnterpriseIcon}from"./remix/earth-line.svg";
258+
export{ReactComponentasEnterpriseIcon}from"./remix/shield-star-line.svg";
259259
export{ReactComponentasVerticalIcon}from"./remix/vertical.svg";
260260
export{ReactComponentasHorizontalIcon}from"./remix/horizontal.svg";
261261

‎client/packages/lowcoder-sdk-webpack-bundle/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name":"lowcoder-sdk-webpack-bundle",
33
"description":"",
4-
"version":"2.7.0",
4+
"version":"2.7.2",
55
"main":"index.jsx",
66
"scripts": {
77
"test":"echo\"Error: no test specified\" && exit 1",

‎client/packages/lowcoder-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"lowcoder-sdk",
3-
"version":"2.7.0",
3+
"version":"2.7.2",
44
"type":"module",
55
"files": [
66
"src",

‎client/packages/lowcoder/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"lowcoder",
3-
"version":"2.7.0",
3+
"version":"2.7.2",
44
"private":true,
55
"type":"module",
66
"main":"src/index.sdk.ts",

‎client/packages/lowcoder/src/api/newsApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export const getHubspotContent = async () => {
132132
};
133133
try{
134134
constresult=awaitNewsApi.secureRequest(apiBody);
135-
returnresult?.data[0]?.hubspot?.length>0 ?result.data[0].hubspotasany[] :[];
135+
returnresult?.data[0]?.results?.length>0 ?result.data[0].resultsasany[] :[];
136136
}catch(error){
137137
console.error("Error getting news:",error);
138138
throwerror;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp