Skip to content

Commit 086334c

Browse files
fixed imports
1 parent 65f6ec6 commit 086334c

File tree

4 files changed

+3
-12
lines changed

4 files changed

+3
-12
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ import { AlignCenter } from "lowcoder-design";
3131
import { AlignLeft } from "lowcoder-design";
3232
import { AlignRight } from "lowcoder-design";
3333
import { LayoutActionComp } from "./layoutActionComp";
34-
import { clickEvent, eventHandlerControl } from "@lowcoder-ee/index.sdk";
3534
import { defaultTheme } from "@lowcoder-ee/constants/themeConstants";
35+
import { clickEvent, eventHandlerControl } from "@lowcoder-ee/comps/controls/eventHandlerControl";
3636

3737
const TabBar = React.lazy(() => import("antd-mobile/es/components/tab-bar"));
3838
const TabBarItem = React.lazy(() =>

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
jsonMenuItems,
4141
menuItemStyleOptions
4242
} from "./navLayoutConstants";
43-
import { clickEvent, eventHandlerControl } from "@lowcoder-ee/index.sdk";
43+
import { clickEvent, eventHandlerControl } from "@lowcoder-ee/comps/controls/eventHandlerControl";
4444

4545
const { Header } = Layout;
4646

client/packages/lowcoder/src/comps/comps/selectInputComp/stepControl.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,7 @@ import { RefControl } from "comps/controls/refControl";
1818
import { dropdownControl } from "comps/controls/dropdownControl";
1919
import { useContext, useState, useEffect } from "react";
2020
import { EditorContext } from "comps/editorState";
21-
import { ThemeContext } from "@lowcoder-ee/comps/utils/themeContext";
22-
import { setInitialCompStyles } from "@lowcoder-ee/comps/utils/themeUtil";
23-
import { CompTypeContext } from "@lowcoder-ee/comps/utils/compTypeContext";
24-
import { useMergeCompStyles } from "@lowcoder-ee/index.sdk";
25-
21+
import { useMergeCompStyles } from "@lowcoder-ee/util/hooks";
2622

2723
const sizeOptions = [
2824
{

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,6 @@ import { EditorContext } from "comps/editorState";
2323
import { clickEvent, eventHandlerControl } from "../controls/eventHandlerControl";
2424

2525
const EventOptions = [clickEvent] as const;
26-
import { ThemeContext } from "../utils/themeContext";
27-
import { CompTypeContext } from "../utils/compTypeContext";
28-
import { changeChildAction } from "lowcoder-core";
29-
import { setInitialCompStyles } from "../utils/themeUtil";
30-
import { BoolControl } from "../controls/boolControl";
3126
import { useMergeCompStyles } from "@lowcoder-ee/util/hooks";
3227

3328
const getStyle = (style: TextStyleType) => {

0 commit comments

Comments
 (0)