Skip to content

Commit 0e05cf6

Browse files
fixed imports in tag component
1 parent c130120 commit 0e05cf6

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed

client/packages/lowcoder/src/comps/comps/tagsComp/tagsCompView.tsx

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,3 @@
1-
import {
2-
BoolCodeControl,
3-
ButtonEventHandlerControl,
4-
InputLikeStyle,
5-
NameConfig,
6-
Section,
7-
UICompBuilder,
8-
hiddenPropertyView,
9-
sectionNames,
10-
showDataLoadingIndicatorsPropertyView,
11-
styleControl,
12-
withExposingConfigs
13-
} from "@lowcoder-ee/index.sdk";
141
import styled from "styled-components";
152
import React, { useContext } from "react";
163
import { trans } from "i18n";
@@ -20,6 +7,15 @@ import { PresetStatusColorTypes } from "antd/es/_util/colors";
207
import { hashToNum } from "util/stringUtils";
218
import { TagsCompOptionsControl } from "comps/controls/optionsControl";
229
import { useCompClickEventHandler } from "@lowcoder-ee/comps/utils/useCompClickEventHandler";
10+
import { styleControl } from "@lowcoder-ee/comps/controls/styleControl";
11+
import { ButtonEventHandlerControl } from "@lowcoder-ee/comps/controls/eventHandlerControl";
12+
import { InputLikeStyle } from "@lowcoder-ee/comps/controls/styleControlConstants";
13+
import { BoolCodeControl } from "@lowcoder-ee/comps/controls/codeControl";
14+
import { UICompBuilder } from "@lowcoder-ee/comps/generators/uiCompBuilder";
15+
import { Section, sectionNames } from "lowcoder-design";
16+
import { NameConfig } from "@lowcoder-ee/comps/generators/withExposing";
17+
import { hiddenPropertyView, showDataLoadingIndicatorsPropertyView } from "@lowcoder-ee/comps/utils/propertyUtils";
18+
import { withExposingConfigs } from "@lowcoder-ee/comps/generators/withExposing";
2319

2420
const colors = PresetStatusColorTypes;
2521

@@ -145,7 +141,7 @@ const multiTags = (function () {
145141
.setPropertyViewFn((children: any) => {
146142
return (
147143
<>
148-
<Section name="Basic">
144+
<Section name={sectionNames.basic}>
149145
{children.options.propertyView({})}
150146
</Section>
151147

0 commit comments

Comments
 (0)