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;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { BoolControl } from "comps/controls/boolControl";
1919
import { RefControl } from "comps/controls/refControl";
2020
import React from "react";
2121
import {viewMode} from "@lowcoder-ee/util/editor";
22-
const SetPropertyViewToggleButton = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewToggleButton})))
22+
const SetPropertyViewToggleButton = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewToggleButton})))
2323

2424
const IconWrapper = styled.div`
2525
display: flex;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { styleControl } from "comps/controls/styleControl";
1414
import { AnimationStyle, AnimationStyleType, CarouselStyle } from "comps/controls/styleControlConstants";
1515
import {viewMode} from "@lowcoder-ee/util/editor";
1616

17-
const SetPropertyViewFn = React.lazy( async () => await import("./setProperty/carouselComp"));
17+
const SetPropertyViewFn = React.lazy( async () => await import("@lowcoder-ee/comps/comps/propertyView/carouselComp"));
1818

1919
// TODO: dots at top position needs proper margin (should be the same as bottom position)
2020

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import { DisabledContext } from "comps/generators/uiCompBuilder";
3939
import SliderControl from "@lowcoder-ee/comps/controls/sliderControl";
4040
import { getBackgroundStyle } from "@lowcoder-ee/util/styleUtils";
4141
import {viewMode} from "@lowcoder-ee/util/editor";
42-
const SetPropertyViewFn = React.lazy( async () => await import("./setProperty"));
42+
const SetPropertyViewFn = React.lazy( async () => await import("./propertyView"));
4343

4444
const ContainWrapper = styled.div<{
4545
$style: ContainerStyleType & {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ import dayjs from "dayjs";
5151
import { getInitialsAndColorCode } from "util/stringUtils";
5252
import { default as CloseOutlined } from "@ant-design/icons/CloseOutlined";
5353
import {viewMode} from "@lowcoder-ee/util/editor";
54-
const SetPropertyViewFn = React.lazy( async () => await import("./setProperty"));
54+
const SetPropertyViewFn = React.lazy( async () => await import("./propertyView"));
5555

5656
dayjs.extend(relativeTime);
5757
// dayjs.locale("zh-cn");

client/packages/lowcoder/src/comps/comps/containerComp/cardComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { styleControl } from "comps/controls/styleControl";
2121
import { getBackgroundStyle } from "@lowcoder-ee/util/styleUtils";
2222

2323
import {viewMode} from "@lowcoder-ee/util/editor";
24-
const SetPropertyViewCardComp = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewCardComp})))
24+
const SetPropertyViewCardComp = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewCardComp})))
2525
const { Meta } = Card;
2626

2727
const Wrapper = styled.div<{

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import React from "react";
1616
import { AnimationStyle } from "@lowcoder-ee/comps/controls/styleControlConstants";
1717
import { styleControl } from "@lowcoder-ee/comps/controls/styleControl";
1818
import {viewMode} from "@lowcoder-ee/util/editor";
19-
const SetPropertyViewContainerComp = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewContainerComp})))
19+
const SetPropertyViewContainerComp = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewContainerComp})))
2020

2121
export const ContainerBaseComp = (function () {
2222
const childrenMap = {

client/packages/lowcoder/src/comps/comps/containerComp/pageLayoutComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { PageLayout } from "../pageLayoutComp/pageLayout";
1818
import { AnimationStyle } from "@lowcoder-ee/comps/controls/styleControlConstants";
1919
import { styleControl } from "@lowcoder-ee/comps/controls/styleControl";
2020
import {viewMode} from "@lowcoder-ee/util/editor";
21-
const SetPropertyViewPageLayout = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewPageLayout})))
21+
const SetPropertyViewPageLayout = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewPageLayout})))
2222

2323
export const ContainerBaseComp = (function () {
2424
const childrenMap = {

client/packages/lowcoder/src/comps/comps/containerComp/textContainerComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import React from "react";
2323
import { alignWithJustifyControl } from "comps/controls/alignControl";
2424
import {viewMode} from "@lowcoder-ee/util/editor";
2525

26-
const SetPropertyViewTextContainer = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewTextContainer})))
26+
const SetPropertyViewTextContainer = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewTextContainer})))
2727
const typeOptions = [
2828
{
2929
label: "Markdown",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { trans } from "i18n";
1212
import { AnimationStyle, AnimationStyleType, CustomStyle, CustomStyleType } from "@lowcoder-ee/comps/controls/styleControlConstants";
1313
import { styleControl } from "@lowcoder-ee/comps/controls/styleControl";
1414
import {viewMode} from "@lowcoder-ee/util/editor";
15-
const SetPropertyViewFn = React.lazy( async () => await import("./setProperty"));
15+
const SetPropertyViewFn = React.lazy( async () => await import("./propertyView"));
1616
// TODO: eventually to embedd in container so we have styling?
1717
// TODO: support different starter templates for different frameworks (react, ANT, Flutter, Angular, etc)
1818

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ import { DateRangeUIView } from "comps/comps/dateComp/dateRangeUIView";
3434
import { dropdownControl } from "comps/controls/dropdownControl";
3535
import { timeZoneOptions } from "./timeZone";
3636
import {viewMode} from "@lowcoder-ee/util/editor";
37-
const SetPropertyViewDateComp1 = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewDateComp1})));
38-
const SetPropertyViewDateComp2 = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewDateComp2})));
37+
const SetPropertyViewDateComp1 = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewDateComp1})));
38+
const SetPropertyViewDateComp2 = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewDateComp2})));
3939

4040

4141

client/packages/lowcoder/src/comps/comps/dateComp/timeComp.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ import { TimePickerProps } from "antd/es/time-picker";
4141
import { dropdownControl } from "comps/controls/dropdownControl";
4242
import { timeZoneOptions } from "./timeZone";
4343
import {viewMode} from "@lowcoder-ee/util/editor";
44-
const SetPropertyViewTimeComp1 = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewTimeComp1})))
45-
const SetPropertyViewTimeComp2 = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewTimeComp2})))
44+
const SetPropertyViewTimeComp1 = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewTimeComp1})))
45+
const SetPropertyViewTimeComp2 = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewTimeComp2})))
4646

4747

4848
const EventOptions = [changeEvent, focusEvent, blurEvent] as const;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { trans } from "i18n";
1212
import { AutoHeightControl } from "comps/controls/autoHeightControl";
1313
import React from "react";
1414
import {viewMode} from "@lowcoder-ee/util/editor";
15-
const SetPropertyViewFn = React.lazy( async () => await import("./setProperty/dividerComp"));
15+
const SetPropertyViewFn = React.lazy( async () => await import("@lowcoder-ee/comps/comps/propertyView/dividerComp"));
1616
type IProps = DividerProps & {
1717
$style: DividerStyleType;
1818
$animationStyle:AnimationStyleType;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import { CustomModal } from "lowcoder-design";
4141

4242
import React from "react";
4343
import {viewMode} from "@lowcoder-ee/util/editor";
44-
const SetPropertyViewFn = React.lazy( async () => await import("./setProperty"));
44+
const SetPropertyViewFn = React.lazy( async () => await import("./propertyView"));
4545
import type { ItemType } from "antd/es/menu/interface";
4646
import Skeleton from "antd/es/skeleton";
4747
import Menu from "antd/es/menu";

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { trans } from "i18n";
1111
import {viewMode} from "@lowcoder-ee/util/editor";
1212
import { AutoHeightControl } from "../controls/autoHeightControl";
1313
import { BoolControl } from "../controls/boolControl";
14-
const SetPropertyViewFn = React.lazy( async () => await import("./setProperty/fileViewerComp"));
14+
const SetPropertyViewFn = React.lazy( async () => await import("@lowcoder-ee/comps/comps/propertyView/fileViewerComp"));
1515

1616
const getStyle = (style: FileViewerStyleType) => {
1717
return css`

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ import { styled } from "styled-components";
5555
import { styleControl } from "@lowcoder-ee/comps/controls/styleControl";
5656
import { AnimationStyle } from "@lowcoder-ee/comps/controls/styleControlConstants";
5757
import {viewMode} from "@lowcoder-ee/util/editor";
58-
const SetPropertyViewFn = React.lazy( async () => await import("./setProperty"));
58+
const SetPropertyViewFn = React.lazy( async () => await import("./propertyView"));
5959

6060
const FormWrapper = styled.div`
6161
height: 100%;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import {
2525
eventHandlerControl,
2626
} from "../controls/eventHandlerControl";
2727
import {viewMode} from "@lowcoder-ee/util/editor";
28-
const SetPropertyViewFn = React.lazy( async () => await import("./setProperty/iconComp"));
28+
const SetPropertyViewFn = React.lazy( async () => await import("@lowcoder-ee/comps/comps/propertyView/iconComp"));
2929

3030
const Container = styled.div<{
3131
$style: IconStyleType | undefined;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { trans } from "i18n";
99
import log from "loglevel";
1010
import React from "react";
1111
import {viewMode} from "@lowcoder-ee/util/editor";
12-
const SetPropertyViewFn = React.lazy( async () => await import("./setProperty/iframeComp"));
12+
const SetPropertyViewFn = React.lazy( async () => await import("@lowcoder-ee/comps/comps/propertyView/iframeComp"));
1313
const Wrapper = styled.div<{$style: IframeStyleType; $animationStyle:AnimationStyleType}>`
1414
width: 100%;
1515
height: 100%;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { default as AntImage } from "antd/es/image";
3131
import { DEFAULT_IMG_URL } from "util/stringUtils";
3232
import { StringControl } from "../controls/codeControl";
3333
import {viewMode} from "@lowcoder-ee/util/editor";
34-
const SetPropertyViewFn = React.lazy( async () => await import("./setProperty/imageComp"));
34+
const SetPropertyViewFn = React.lazy( async () => await import("@lowcoder-ee/comps/comps/propertyView/imageComp"));
3535

3636

3737
const Container = styled.div<{ $style: ImageStyleType | undefined,$animationStyle:AnimationStyleType }>`

client/packages/lowcoder/src/comps/comps/jsonComp/jsonEditorComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { useExtensions } from "base/codeEditor/extensions";
2121
import { AutoHeightControl } from "@lowcoder-ee/comps/controls/autoHeightControl";
2222
import { BoolControl } from "@lowcoder-ee/comps/controls/boolControl";
2323
import {viewMode} from "@lowcoder-ee/util/editor";
24-
const SetPropertyViewJsonEditor = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewJsonEditor})))
24+
const SetPropertyViewJsonEditor = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewJsonEditor})))
2525
/**
2626
* JsonEditor Comp
2727
*/

client/packages/lowcoder/src/comps/comps/jsonComp/jsonExplorerComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { AnimationStyle, AnimationStyleType } from "@lowcoder-ee/comps/controls/
1313
import { styleControl } from "@lowcoder-ee/comps/controls/styleControl";
1414
import { AutoHeightControl } from "@lowcoder-ee/comps/controls/autoHeightControl";
1515
import {viewMode} from "@lowcoder-ee/util/editor";
16-
const SetPropertyViewJsonExplorer = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewJsonExplorer})))
16+
const SetPropertyViewJsonExplorer = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewJsonExplorer})))
1717
/**
1818
* JsonExplorer Comp
1919
*/

client/packages/lowcoder/src/comps/comps/jsonComp/jsonLottieComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
} from "../../generators/withExposing";
1717
import { defaultLottie } from "./jsonConstants";
1818
import {viewMode} from "@lowcoder-ee/util/editor";
19-
const SetPropertyViewJsonLottie = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewJsonLottie})))
19+
const SetPropertyViewJsonLottie = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewJsonLottie})))
2020
const Player = lazy(
2121
() => import('@lottiefiles/react-lottie-player')
2222
.then(module => ({default: module.Player}))

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import ArrayFieldTemplate from './ArrayFieldTemplate';
2727
import { Select } from 'antd';
2828
import Title from 'antd/es/typography/Title';
2929
import {viewMode} from "@lowcoder-ee/util/editor";
30-
const SetPropertyViewFn = React.lazy( async () => await import("./setProperty"));
30+
const SetPropertyViewFn = React.lazy( async () => await import("./propertyView"));
3131
Theme.widgets.DateWidget = DateWidget(false);
3232
Theme.widgets.DateTimeWidget = DateWidget(true);
3333
const Form = withTheme(Theme);

client/packages/lowcoder/src/comps/comps/layout/mobileTabLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import { clickEvent, eventHandlerControl } from "@lowcoder-ee/comps/controls/eve
3030
import {MultiIcon} from "@lowcoder-ee/comps/comps/multiIconDisplay";
3131
import {AlignCenter, AlignLeft, AlignRight} from "icons";
3232
import {viewMode} from "@lowcoder-ee/util/editor";
33-
const SetPropertyViewMobileTabLayout = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewMobileTabLayout})))
33+
const SetPropertyViewMobileTabLayout = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewMobileTabLayout})))
3434
const TabBar = React.lazy(() => import("antd-mobile/es/components/tab-bar"));
3535
const TabBarItem = React.lazy(() =>
3636
import("antd-mobile/es/components/tab-bar/tab-bar").then((module) => ({

client/packages/lowcoder/src/comps/comps/layout/navLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import {
4040
import { clickEvent, eventHandlerControl } from "@lowcoder-ee/comps/controls/eventHandlerControl";
4141
import { childrenToProps } from "@lowcoder-ee/comps/generators/multi";
4242
import {viewMode} from "@lowcoder-ee/util/editor";
43-
const SetPropertyViewNavLayout = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewNavLayout})))
43+
const SetPropertyViewNavLayout = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewNavLayout})))
4444
const { Header } = Layout;
4545

4646
const DEFAULT_WIDTH = 240;

client/packages/lowcoder/src/comps/comps/mediaComp/audioComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { trans } from "i18n";
1313
import { mediaCommonChildren, mediaMethods } from "./mediaUtils";
1414
import React from "react";
1515
import {viewMode} from "@lowcoder-ee/util/editor";
16-
const SetPropertyViewAudioComp = React.lazy( async () => await import("./setProperty").then(module => ({default: module.SetPropertyViewAudioComp})))
16+
const SetPropertyViewAudioComp = React.lazy( async () => await import("./propertyView").then(module => ({default: module.SetPropertyViewAudioComp})))
1717

1818
const Container = styled.div<{ $style: any; $animationStyle: AnimationStyleType }>`
1919
${props => props.$style};

0 commit comments

Comments
 (0)