Skip to content

Commit 1b9dafc

Browse files
committed
Changed filename to propertyView
1 parent fde1bac commit 1b9dafc

File tree

107 files changed

+66
-66
lines changed

Some content is hidden

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

107 files changed

+66
-66
lines changed

client/packages/lowcoder/src/comps/comps/autoCompleteComp/autoCompleteComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ import {
4747
componentSize,
4848
} from "./autoCompleteConstants";
4949
import {viewMode} from "@lowcoder-ee/util/editor";
50-
const SetPropertyViewFn = React.lazy( async () => await import("./setProperty"));
50+
const SetPropertyViewFn = React.lazy( async () => await import("./propertyView"));
5151
const InputStyle = styled(Input) <{ $style: InputLikeStyleType }>`
5252
box-shadow: ${props=>`${props.$style?.boxShadow} ${props.$style?.boxShadowColor}`};
5353
${(props) => css`

client/packages/lowcoder/src/comps/comps/avatar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import { DropdownOptionControl } from "../controls/optionsControl";
3232
import React, { ReactElement, useContext } from "react";
3333
import { CompNameContext, EditorContext } from "../editorState";
3434
import {viewMode} from "@lowcoder-ee/util/editor";
35-
const SetPropertyViewFn = React.lazy( async () => await import("./setProperty/avatar"));
35+
const SetPropertyViewFn = React.lazy( async () => await import("@lowcoder-ee/comps/comps/propertyView/avatar"));
3636

3737
const AvatarWrapper = styled(Avatar) <AvatarProps & { $cursorPointer?: boolean, $style: AvatarStyleType }>`
3838
background: ${(props) => props.$style.background};

client/packages/lowcoder/src/comps/comps/avatarGroup.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import { dropdownControl } from "../controls/dropdownControl";
1919
import { JSONObject } from "util/jsonTypes";
2020
import {MultiIconDisplay} from "@lowcoder-ee/comps/comps/multiIconDisplay";
2121
import {viewMode} from "@lowcoder-ee/util/editor";
22-
const SetPropertyViewAvatarGroup1 = React.lazy( async () => await import("./setProperty/avatarGroup").then(module => ({default: module.SetPropertyViewAvatarGroup1})))
23-
const SetPropertyViewAvatarGroup2 = React.lazy( async () => await import("./setProperty/avatarGroup").then(module => ({default: module.SetPropertyViewAvatarGroup2})))
22+
const SetPropertyViewAvatarGroup1 = React.lazy( async () => await import("@lowcoder-ee/comps/comps/propertyView/avatarGroup").then(module => ({default: module.SetPropertyViewAvatarGroup1})))
23+
const SetPropertyViewAvatarGroup2 = React.lazy( async () => await import("@lowcoder-ee/comps/comps/propertyView/avatarGroup").then(module => ({default: module.SetPropertyViewAvatarGroup2})))
2424
const MacaroneList = [
2525
'#fde68a',
2626
'#eecff3',

client/packages/lowcoder/src/comps/comps/buttonComp/buttonComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { AnimationStyle } from "@lowcoder-ee/comps/controls/styleControlConstant
2424
import { styleControl } from "@lowcoder-ee/comps/controls/styleControl";
2525
import {viewMode} from "@lowcoder-ee/util/editor";
2626

27-
const SetPropertyViewButtonComp = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewButtonComp})))
27+
const SetPropertyViewButtonComp = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewButtonComp})))
2828
const FormLabel = styled(CommonBlueLabel)`
2929
font-size: 13px;
3030
margin-right: 4px;

client/packages/lowcoder/src/comps/comps/buttonComp/dropdownComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import {
2020
} from "./buttonCompConstants";
2121
import { styleControl } from "@lowcoder-ee/comps/controls/styleControl";
2222
import {viewMode} from "@lowcoder-ee/util/editor";
23-
const SetPropertyViewDropDownComp = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewDropDownComp})))
23+
const SetPropertyViewDropDownComp = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewDropDownComp})))
2424

2525
const StyledDropdownButton = styled(DropdownButton)`
2626
width: 100%;

client/packages/lowcoder/src/comps/comps/buttonComp/floatButtonComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { IconControl } from "comps/controls/iconControl";
1414
import styled from "styled-components";
1515
import { ButtonEventHandlerControl } from "comps/controls/eventHandlerControl";
1616
import { manualOptionsControl } from "comps/controls/optionsControl";
17-
import {SetPropertyViewFloatButton} from "@lowcoder-ee/comps/comps/buttonComp/setProperty";
17+
import {SetPropertyViewFloatButton} from "@lowcoder-ee/comps/comps/buttonComp/propertyView";
1818
import {viewMode} from "@lowcoder-ee/util/editor";
1919

2020
const StyledFloatButton = styled(FloatButton)<{

client/packages/lowcoder/src/comps/comps/buttonComp/linkComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { RefControl } from "comps/controls/refControl";
1616

1717
import React from "react";
1818
import {viewMode} from "@lowcoder-ee/util/editor";
19-
const SetPropertyViewLinkComp = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewLinkComp})))
19+
const SetPropertyViewLinkComp = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewLinkComp})))
2020

2121
const Link = styled(Button)<{
2222
$style: LinkStyleType;

client/packages/lowcoder/src/comps/comps/buttonComp/scannerComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { BoolControl } from "comps/controls/boolControl";
2323
import type { ItemType } from "antd/es/menu/interface";
2424
import { RefControl } from "comps/controls/refControl";
2525
import {viewMode} from "@lowcoder-ee/util/editor";
26-
const SetPropertyViewScannerComp = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewScannerComp})))
26+
const SetPropertyViewScannerComp = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewScannerComp})))
2727

2828
const Error = styled.div`
2929
color: #f5222d;

0 commit comments

Comments
 (0)