Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 18822d7

Browse files
committedMay 29, 2025·
remove direct imports from lowcoder-ee
1 parent 5b3438c commit 18822d7

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed
 

‎client/packages/lowcoder/src/comps/comps/listViewComp/listView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import { getBackgroundStyle } from "@lowcoder-ee/util/styleUtils";
2525
import { DndContext } from "@dnd-kit/core";
2626
import { SortableContext, useSortable } from "@dnd-kit/sortable";
2727
import { CSS } from "@dnd-kit/utilities";
28-
import { JSONObject } from "@lowcoder-ee/index.sdk";
28+
import { JSONObject } from "@lowcoder-ee/util/jsonTypes";
2929

3030
const ListViewWrapper = styled.div<{ $style: any; $paddingWidth: string,$animationStyle:AnimationStyleType }>`
3131
height: 100%;

‎client/packages/lowcoder/src/comps/hooks/screenInfoComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useCallback, useEffect, useMemo, useState } from "react";
22
import { hookToStateComp } from "../generators/hookToComp";
3-
import { CanvasContainerID } from "@lowcoder-ee/index.sdk";
3+
import { CanvasContainerID } from "@lowcoder-ee/constants/domLocators";
44

55
enum ScreenTypes {
66
Mobile = 'mobile',

‎client/packages/lowcoder/src/pages/ComponentDoc/examples/CalendarInputComp/Timer.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { TimerComp } from "comps/comps/timerComp";
22
import Example from "../../common/Example";
33
import ExampleGroup from "../../common/ExampleGroup";
4-
import { startButtonStyle } from "@lowcoder-ee/index.sdk";
54

65
export default function TimerExample() {
76
return (

‎client/packages/lowcoder/src/pages/ComponentDoc/examples/selectInputComp/Tree.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { TreeComp } from "comps/comps/treeComp/treeComp";
22
import { trans } from "i18n";
33
import Example from "../../common/Example";
44
import ExampleGroup from "../../common/ExampleGroup";
5-
import { InputFieldStyle } from "@lowcoder-ee/index.sdk";
65

76
export default function TreeExample() {
87
const blackListConfig: string[] = ["options.manual.manual"];

0 commit comments

Comments
 (0)
Please sign in to comment.