File tree 3 files changed +13
-18
lines changed
client/packages/lowcoder/src/comps
3 files changed +13
-18
lines changed Original file line number Diff line number Diff line change 1
- import { trans } from "i18n" ;
2
- import {
3
- CommonNameConfig ,
4
- MultiBaseComp ,
5
- NameConfig ,
6
- stringExposingStateControl ,
7
- UICompBuilder ,
8
- withExposingConfigs ,
9
- withMethodExposing
10
- } from "lowcoder-sdk" ;
1
+ import { MultiBaseComp } from "lowcoder-core" ;
2
+ import { UICompBuilder } from "comps/generators/uiCompBuilder" ;
3
+ import { stringExposingStateControl } from "comps/controls/codeStateControl" ;
4
+ import { withMethodExposing } from "comps/generators/withMethodExposing" ;
11
5
import { TourChildrenMap , TourPropertyView } from "./tourPropertyView" ;
12
6
import { Tour , TourProps } from "antd" ;
13
7
import React , { useContext } from "react" ;
14
- import { EditorContext } from "@lowcoder-ee/ comps/editorState" ;
15
- import { GridItemComp } from "@lowcoder-ee/ comps/comps/gridItemComp" ;
16
- import { HookComp } from "@lowcoder-ee/ comps/hooks/hookComp" ;
17
- import { TemporaryStateItemComp } from "@lowcoder-ee/ comps/comps/temporaryStateComp" ;
8
+ import { EditorContext } from "comps/editorState" ;
9
+ import { GridItemComp } from "comps/comps/gridItemComp" ;
10
+ import { HookComp } from "comps/hooks/hookComp" ;
11
+ import { TemporaryStateItemComp } from "comps/comps/temporaryStateComp" ;
18
12
19
13
/**
20
14
* This component builds the Property Panel and the fake 'UI' for the Tour component
Original file line number Diff line number Diff line change @@ -2,10 +2,11 @@ import { RecordConstructorToComp } from "lowcoder-core";
2
2
import { BoolControl } from "../../controls/boolControl" ;
3
3
import { ArrowControl , BoolCodeControl , MaskControl } from "../../controls/codeControl" ;
4
4
import { Section } from "lowcoder-design" ;
5
- import { TourStepControl } from "@lowcoder-ee/comps/controls/tourStepControl" ;
6
- import { booleanExposingStateControl , dropdownControl } from "lowcoder-sdk" ;
5
+ import { TourStepControl } from "comps/controls/tourStepControl" ;
6
+ import { booleanExposingStateControl } from "comps/controls/codeStateControl" ;
7
+ import { dropdownControl } from "comps/controls/dropdownControl" ;
7
8
import { trans } from "i18n" ;
8
- import { PlacementOptions , TypeOptions } from "@lowcoder-ee/comps/comps/tourComp /tourControlConstants" ;
9
+ import { PlacementOptions , TypeOptions } from ". /tourControlConstants" ;
9
10
import {
10
11
TourArrowTooltip ,
11
12
TourMaskTooltip ,
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ import { RemoteCompInfo } from "types/remoteComp";
63
63
import { ScannerComp } from "./comps/buttonComp/scannerComp" ;
64
64
import { SignatureComp } from "./comps/signatureComp" ;
65
65
import { TimeLineComp } from "./comps/timelineComp/timelineComp" ;
66
+ import { TourComp } from "./comps/tourComp/tourComp" ;
66
67
import { CommentComp } from "./comps/commentComp/commentComp" ;
67
68
import { MentionComp } from "./comps/textInputComp/mentionComp" ;
68
69
import { AutoCompleteComp } from "./comps/autoCompleteComp/autoCompleteComp" ;
@@ -143,7 +144,6 @@ import {
143
144
FloatingTextComp ,
144
145
IconModal ,
145
146
} from "lowcoder-design" ;
146
- import { TourComp } from "@lowcoder-ee/comps/comps/tourComp/tourComp" ;
147
147
148
148
type Registry = {
149
149
[ key in UICompType ] ?: UICompManifest ;
You can’t perform that action at this time.
0 commit comments