Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
8f02a47
rebrand API server
ludomikula May 10, 2023
ea88857
refactor: rename openlocks-core to lowcoder-core
falnyr May 11, 2023
6d89a13
refactor: rename openblocks-dev-utils to lowcoder-dev-utils
falnyr May 11, 2023
e0ecb33
refactor: rename openblocks-design to lowcoder-design
falnyr May 11, 2023
0c119ad
refactor: rename openblocks-comps to lowcoder-comps
falnyr May 11, 2023
cf0a870
refactor: rename openblocks-sdk to lowcoder-sdk
falnyr May 11, 2023
dec2350
refactor: rename openblocks-ee to lowcoder-sdk
falnyr May 11, 2023
18aaffc
refactor: rename openblocks- lowcoder-
falnyr May 11, 2023
b04b0ff
refactor: rename /openblocks to /lowcoder
falnyr May 11, 2023
f75715f
refactor: rename openblocks. to lowcoder.
falnyr May 11, 2023
c1a25c5
refactor: rename openblocks to lowcoder
falnyr May 11, 2023
2f5a085
refactor: rename Openblocks to Lowcoder
falnyr May 11, 2023
7130095
refactor: rename OpenBlocks to Lowcoder
falnyr May 11, 2023
c6f85fc
refactor: rename openBlocks to lowcoder
falnyr May 11, 2023
3a58d5f
refactor: renamed folders
falnyr May 11, 2023
a1c5c16
refactor: renamed folders and files
falnyr May 13, 2023
54dd179
Merge branch 'main' into feat/rebrand
falnyr May 13, 2023
30adab5
refactor: replaced openblocks references with lowcoder
falnyr May 13, 2023
ee73078
refactor: renamed folders for sonarcloud
falnyr May 13, 2023
dc9b82c
chore: bumped versions and pushed to npm registry
falnyr May 13, 2023
784c8e0
refactor: updated dependencies, switched to lowcoder folder
falnyr May 16, 2023
9a62020
Downgraded reactor-core version.
ludomikula May 16, 2023
980b84f
Merge branch 'main' into feat/rebrand
ludomikula May 16, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor: rename openlocks-core to lowcoder-core
  • Loading branch information
falnyr committed May 11, 2023
commit ea8885713e2959aeac122c2bb89295e4b5738960
2 changes: 1 addition & 1 deletion client/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export default {
projects: ["<rootDir>/packages/openblocks", "<rootDir>/packages/openblocks-core"],
projects: ["<rootDir>/packages/openblocks", "<rootDir>/packages/lowcoder-core"],
};
4 changes: 2 additions & 2 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"build": "yarn node ./scripts/build.js",
"test": "jest && yarn workspace openblocks-comps test",
"prepare": "yarn workspace openblocks prepare",
"build:core": "yarn workspace openblocks-core build",
"test:core": "yarn workspace openblocks-core test"
"build:core": "yarn workspace lowcoder-core build",
"test:core": "yarn workspace lowcoder-core test"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import _ from "lodash";
import { CompConstructor, CustomAction } from "openblocks-core";
import { CompConstructor, CustomAction } from "lowcoder-core";
import { evalAndReduce, isExposingMethodComp } from "openblocks-sdk";
import { ChartCompWithDefault } from "comps/chartComp/chartComp";
import log from "loglevel";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
CompAction,
CompActionTypes,
wrapChildAction,
} from "openblocks-core";
} from "lowcoder-core";
import { AxisFormatterComp, EchartsAxisType } from "./chartConfigs/cartesianAxisConfig";
import { chartChildrenMap, ChartSize, getDataKeys } from "./chartConstants";
import { chartPropertyView } from "./chartPropertyView";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { XAXisComponentOption, YAXisComponentOption } from "echarts";
import { ChartSize, XAxisDirectionType } from "../chartConstants";
import { i18n } from "openblocks-core";
import { i18n } from "lowcoder-core";
import {
MultiCompBuilder,
withContext,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { MultiCompBuilder } from "openblocks-sdk";
import { PieSeriesOption } from "echarts";
import { dropdownControl } from "openblocks-sdk";
import { ConstructorToView } from "openblocks-core";
import { ConstructorToView } from "lowcoder-core";
import { trans } from "i18n/comps";

const BarTypeOptions = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { eventHandlerControl } from "openblocks-sdk";
import { valueComp, withType } from "openblocks-sdk";
import { ValueFromOption } from "openblocks-sdk";
import { uiChildren } from "openblocks-sdk";
import { RecordConstructorToComp, RecordConstructorToView } from "openblocks-core";
import { RecordConstructorToComp, RecordConstructorToView } from "lowcoder-core";
import { BarChartConfig } from "./chartConfigs/barChartConfig";
import { XAxisConfig, YAxisConfig } from "./chartConfigs/cartesianAxisConfig";
import { LegendConfig } from "./chartConfigs/legendConfig";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { changeChildAction, CompAction } from "openblocks-core";
import { changeChildAction, CompAction } from "lowcoder-core";
import { ChartCompChildrenType, ChartTypeOptions, getDataKeys } from "./chartConstants";
import { newSeries } from "./seriesComp";
import {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import {
} from "openblocks-sdk";
import { trans } from "i18n/comps";

import { ConstructorToComp, ConstructorToDataType, ConstructorToView } from "openblocks-core";
import { CompAction, CustomAction, customAction, isMyCustomAction } from "openblocks-core";
import { ConstructorToComp, ConstructorToDataType, ConstructorToView } from "lowcoder-core";
import { CompAction, CustomAction, customAction, isMyCustomAction } from "lowcoder-core";

export type SeriesCompType = ConstructorToComp<typeof SeriesComp>;
export type RawSeriesCompType = ConstructorToView<typeof SeriesComp>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
import { useRef } from "react";
import ReactResizeDetector from "react-resize-detector";
import _ from "lodash";
import { RecordConstructorToView } from "openblocks-core";
import { RecordConstructorToView } from "lowcoder-core";
import { Container, customTheme, EmbeddedButton, saveEvent } from "./imageEditorConstants";
import { ImageEditor } from "./imageEditorClass";
import { i18nObjs, trans } from "i18n/comps";
Expand Down
2 changes: 1 addition & 1 deletion client/packages/openblocks-comps/src/i18n/comps/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getI18nObjects, getValueByLocale, Translator } from "openblocks-core";
import { getI18nObjects, getValueByLocale, Translator } from "lowcoder-core";
import * as localeData from "./locales";
import { I18nObjects } from "./locales/types";

Expand Down
2 changes: 1 addition & 1 deletion client/packages/openblocks-core/README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
this is a README file for openblocks-core.
this is a README file for lowcoder-core.
4 changes: 2 additions & 2 deletions client/packages/openblocks-core/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "openblocks-core",
"name": "lowcoder-core",
"version": "0.0.7",
"type": "module",
"scripts": {
Expand All @@ -21,7 +21,7 @@
"lodash": "^4.17.21",
"lru-cache": "^7.14.1"
},
"description": "openblocks-core is a JavaScript library for building new components in openblocks",
"description": "lowcoder-core is a JavaScript library for building new components in openblocks",
"keywords": [
"openblocks",
"components"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
import styled, { css } from "styled-components";
import { useCallback, useRef, useState } from "react";
import { throttle } from "lodash";
import { changeValueAction } from "openblocks-core";
import { changeValueAction } from "lowcoder-core";

interface ColorSelectProps {
color: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { AddLine } from "./eventHandler";
import React, { useState } from "react";
import { CSS } from "@dnd-kit/utilities";
import { SortableContext, useSortable, verticalListSortingStrategy } from "@dnd-kit/sortable";
import { ConstructorToComp, MultiCompConstructor } from "openblocks-core";
import { ConstructorToComp, MultiCompConstructor } from "lowcoder-core";
import { ReactComponent as WarnIcon } from "icons/icon-warning-white.svg";
import { DndContext } from "@dnd-kit/core";
import { restrictToVerticalAxis } from "@dnd-kit/modifiers";
Expand Down
2 changes: 1 addition & 1 deletion client/packages/openblocks-design/src/i18n/design/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Translator } from "openblocks-core";
import { Translator } from "lowcoder-core";
import * as localeData from "./locales";

export const { trans } = new Translator<typeof localeData.en>(localeData, REACT_APP_LANGUAGES);
2 changes: 1 addition & 1 deletion client/packages/openblocks-plugin-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "module",
"license": "MIT",
"dependencies": {
"openblocks-core": "^0.0.1",
"lowcoder-core": "^0.0.1",
"openblocks-design": "^0.0.1",
"react": "17",
"react-dom": "17"
Expand Down
2 changes: 1 addition & 1 deletion client/packages/openblocks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"mime": "^3.0.0",
"moment": "^2.29.4",
"numbro": "^2.3.6",
"openblocks-core": "workspace:^",
"lowcoder-core": "workspace:^",
"openblocks-design": "workspace:^",
"papaparse": "^5.3.2",
"qrcode.react": "^3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion client/packages/openblocks/src/appView/AppView.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { RootComp } from "comps/comps/rootComp";
import { GetContainerParams, useCompInstance } from "comps/utils/useCompInstance";
import { createBrowserHistory } from "history";
import { CompActionTypes, deferAction } from "openblocks-core";
import { CompActionTypes, deferAction } from "lowcoder-core";
import { HTMLAttributes, useEffect, useMemo, useRef } from "react";
import { Provider } from "react-redux";
import { Route, Router } from "react-router";
Expand Down
6 changes: 3 additions & 3 deletions client/packages/openblocks/src/base/codeEditor/autoFormat.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { CodeType } from "openblocks-core";
import { relaxedJSONToJSON } from "openblocks-core";
import { getDynamicStringSegments, isDynamicSegment } from "openblocks-core";
import { CodeType } from "lowcoder-core";
import { relaxedJSONToJSON } from "lowcoder-core";
import { getDynamicStringSegments, isDynamicSegment } from "lowcoder-core";
import { format as formatSQL } from "sql-formatter";
import { Language } from "./codeEditorTypes";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { CodeType } from "openblocks-core";
import { getDynamicStringSegments, isDynamicSegment } from "openblocks-core";
import { CodeType } from "lowcoder-core";
import { getDynamicStringSegments, isDynamicSegment } from "lowcoder-core";
import { useEffect } from "react";
import { Decoration, DecorationSet, EditorView, StateEffect, StateField } from "./codeMirror";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CodeType } from "openblocks-core";
import { CodeType } from "lowcoder-core";
import React, { ReactNode } from "react";
import { EditorState, EditorView } from "./codeMirror";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { CompInfo } from "comps/editorState";
import { getDynamicStringSegments } from "openblocks-core";
import { getDynamicStringSegments } from "lowcoder-core";
import _ from "lodash";
import { CompletionContext } from "./codeMirror";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { AutocompleteDataType } from "base/codeEditor/completion/ternServer";
import _ from "lodash";
import { evalScript } from "openblocks-core";
import { evalScript } from "lowcoder-core";
import { checkCursorInBinding } from "../codeEditorUtils";
import { Completion, CompletionContext, CompletionResult, EditorView } from "../codeMirror";
import { CompletionSource } from "./completion";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ import {
import { ExposingCompletionSource } from "./completion/exposingCompletionSource";
import { SQLCompletionSource } from "./completion/sqlCompletionSource";
import { getFormatter } from "./autoFormat";
import { CodeType } from "openblocks-core";
import { CodeType } from "lowcoder-core";
import { CompletionSource } from "./completion/completion";
import { message } from "antd";
import { CodeEditorTooltipContainer } from "./codeEditor";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useMemo, useRef } from "react";
import { Decoration, DecorationSet, EditorView, ViewPlugin, ViewUpdate } from "@codemirror/view";
import { CodeType } from "openblocks-core";
import { CodeType } from "lowcoder-core";

const successHighlightMark = Decoration.mark({ class: "cm-success-highlight" });
const errorHighlightMark = Decoration.mark({ class: "cm-error-highlight" });
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Decoration, DecorationSet, EditorView, ViewPlugin, ViewUpdate } from "@
import { defaultHighlightStyle, HighlightStyle, syntaxTree } from "@codemirror/language";
import { highlightTree } from "@lezer/highlight";
import { Tree } from "@lezer/common";
import { CodeType, getDynamicStringSegments, isDynamicSegment } from "openblocks-core";
import { CodeType, getDynamicStringSegments, isDynamicSegment } from "lowcoder-core";
import { Language } from "../codeEditorTypes";

const highlighterFacet = Facet.define();
Expand Down
2 changes: 1 addition & 1 deletion client/packages/openblocks/src/components/PreviewApp.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ThemeDetail } from "api/commonSettingApi";
import React, { CSSProperties, useContext, useEffect, useState } from "react";
import { RootComp } from "comps/comps/rootComp";
import { Comp } from "openblocks-core";
import { Comp } from "lowcoder-core";
import { evalAndReduceWithExposing } from "comps/utils";
import { ThemeContext } from "comps/utils/themeContext";
import { ExternalEditorContext } from "util/context/ExternalEditorContext";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { PresetStatusColorType } from "antd/es/_util/colors";
import _ from "lodash";
import { changeChildAction, DispatchType } from "openblocks-core";
import { changeChildAction, DispatchType } from "lowcoder-core";
import { constantColors } from "openblocks-design";
import React, { ReactNode, useCallback, useContext, useEffect, useMemo, useState } from "react";
import styled from "styled-components";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { QueryComp } from "comps/queries";
import { JSQuery } from "comps/queries/jsQuery";
import { evalAndReduce } from "comps/utils";
import _ from "lodash";
import { CompConstructor } from "openblocks-core";
import { CompConstructor } from "lowcoder-core";
import { ParamsStringControl } from "../controls/paramsControl";
import { SQLQuery } from "../queries/sqlQuery/SQLQuery";
import { uiCompRegistry } from "../uiCompRegistry";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ThemeDetail, ThemeType } from "api/commonSettingApi";
import { RecordConstructorToComp } from "openblocks-core";
import { RecordConstructorToComp } from "lowcoder-core";
import { dropdownInputSimpleControl } from "comps/controls/dropdownInputSimpleControl";
import { MultiCompBuilder, valueComp } from "comps/generators";
import { AddIcon, Dropdown } from "openblocks-design";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { JSONValue } from "util/jsonTypes";
import { Comp, CompParams } from "openblocks-core";
import { Comp, CompParams } from "lowcoder-core";
import { UICompBuilder } from "comps/generators";
import {
PropertyViewFnTypeForComp,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { JSONValue } from "util/jsonTypes";
import { Comp } from "openblocks-core";
import { Comp } from "lowcoder-core";
import { NameGenerator } from "comps/utils";
import { SimpleContainerComp } from "./simpleContainerComp";
import { CompTree } from "./utils";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { JSONValue } from "util/jsonTypes";
import { changeValueAction, CustomAction, multiChangeAction } from "openblocks-core";
import { ConstructorToDataType } from "openblocks-core";
import { changeValueAction, CustomAction, multiChangeAction } from "lowcoder-core";
import { ConstructorToDataType } from "lowcoder-core";
import { sameTypeMap, stateComp, valueComp } from "comps/generators";
import { MultiCompBuilder } from "comps/generators/multi";
import { addMapChildAction, multiMapAction } from "comps/generators/sameTypeMap";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CompParams } from "openblocks-core";
import { CompParams } from "lowcoder-core";
import { ToDataType } from "comps/generators/multi";
import { NameConfigHidden, withExposingConfigs } from "comps/generators/withExposing";
import { NameGenerator } from "comps/utils/nameGenerator";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import {
RecordConstructorToView,
wrapActionExtraInfo,
wrapChildAction,
} from "openblocks-core";
} from "lowcoder-core";
import React, {
DragEvent,
HTMLAttributes,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DispatchType } from "openblocks-core";
import { DispatchType } from "lowcoder-core";
import { GridItemsType } from "comps/comps/containerComp/containerView";
import _ from "lodash";
import { FlowLayout } from "layout/utils";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { routeByNameAction, executeQueryAction } from "openblocks-core";
import { CompAction } from "openblocks-core";
import { routeByNameAction, executeQueryAction } from "lowcoder-core";
import { CompAction } from "lowcoder-core";
import { StringControl } from "comps/controls/codeControl";
import { jsonObjectStateControl } from "comps/controls/codeStateControl";
import { UICompBuilder, withDefault } from "comps/generators";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { bottomResListComp } from "comps/generators/bottomResList";
import { NameConfig, withExposingConfigs } from "comps/generators/withExposing";
import { trans } from "i18n";
import _ from "lodash";
import { CompAction, CompActionTypes } from "openblocks-core";
import { CompAction, CompActionTypes } from "lowcoder-core";
import {
DocLink,
QueryConfigLabel,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import _, { noop } from "lodash";
import moment from "moment";
import { RecordConstructorToComp, RecordConstructorToView } from "openblocks-core";
import { RecordConstructorToComp, RecordConstructorToView } from "lowcoder-core";
import {
BoolCodeControl,
CustomRuleControl,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import _ from "lodash";
import moment from "moment";
import { RecordConstructorToComp, RecordConstructorToView } from "openblocks-core";
import { RecordConstructorToComp, RecordConstructorToView } from "lowcoder-core";
import {
BoolCodeControl,
CustomRuleControl,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
multiChangeAction,
RecordConstructorToComp,
RecordConstructorToView,
} from "openblocks-core";
} from "lowcoder-core";
import { UploadRequestOption } from "rc-upload/lib/interface";
import { useEffect, useState } from "react";
import styled, { css } from "styled-components";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
RecordConstructorToView,
ValueAndMsg,
wrapChildAction,
} from "openblocks-core";
} from "lowcoder-core";
import { NameGenerator } from "comps/utils";
import _ from "lodash";
import { CreateData, CreateForm } from "./createForm";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { RecordConstructorToComp } from "openblocks-core";
import { RecordConstructorToComp } from "lowcoder-core";
import { StringControl } from "comps/controls/codeControl";
import { CompNameContext, EditorContext } from "comps/editorState";
import { Section } from "openblocks-design";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ConstructorToDataType } from "openblocks-core";
import { ConstructorToDataType } from "lowcoder-core";
import { QueryComp } from "comps/queries/queryComp";
import { CompConfig, CompSelection, generateWrapJs } from "./comp";
import { DatasourceType } from "@openblocks-ee/constants/queryConstants";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
import { ExposingInfo } from "comps/utils/exposingTypes";
import { getReduceContext, WithParamsContext } from "comps/utils/reduceContext";
import { parseCompType } from "comps/utils/remote";
import { Comp, CompAction, ConstructorToDataType } from "openblocks-core";
import { Comp, CompAction, ConstructorToDataType } from "lowcoder-core";
import { ScrollBar, SearchTextContext } from "openblocks-design";
import React, { Profiler, useContext, useEffect, useMemo, useState } from "react";
import { profilerCallback } from "util/cacheUtils";
Expand Down
2 changes: 1 addition & 1 deletion client/packages/openblocks/src/comps/comps/imageComp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { clickEvent, eventHandlerControl } from "../controls/eventHandlerControl
import { StringStateControl } from "../controls/codeStateControl";
import { UICompBuilder, withDefault } from "../generators";
import { NameConfig, NameConfigHidden, withExposingConfigs } from "../generators/withExposing";
import { RecordConstructorToView } from "openblocks-core";
import { RecordConstructorToView } from "lowcoder-core";
import { useEffect, useRef, useState } from "react";
import _ from "lodash";
import ReactResizeDetector from "react-resize-detector";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { JsonSchemaFormStyle, JsonSchemaFormStyleType } from "comps/controls/sty
import { depsConfig, NameConfigHidden, withExposingConfigs } from "comps/generators/withExposing";
import { withMethodExposing } from "comps/generators/withMethodExposing";
import { ValueFromOption } from "openblocks-design";
import { i18n } from "openblocks-core";
import { i18n } from "lowcoder-core";
import { i18nObjs, trans } from "i18n";
import { JSONSchema7 } from "json-schema";
import styled from "styled-components";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { MultiBaseComp } from "openblocks-core";
import { MultiBaseComp } from "lowcoder-core";
import { BoolCodeControl, StringControl } from "comps/controls/codeControl";
import { valueComp } from "comps/generators";
import { list } from "comps/generators/list";
Expand Down
Loading