Skip to content

Commit ef5772f

Browse files
committed
fix: build
1 parent 6343c28 commit ef5772f

File tree

43 files changed

+49
-306
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+49
-306
lines changed

package-lock.json

Lines changed: 9 additions & 185 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@
118118
"lodash": "^4.17.21",
119119
"monaco-editor": "^0.38.0",
120120
"react-final-form": "^6.5.9",
121-
"react-json-view": "^1.21.3",
122121
"react-monaco-editor": "^0.53.0",
123122
"react-player": "^2.9.0",
124123
"react-resizable-panels": "^2.1.3",

playground/src/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const b = block('home');
1414

1515
const Test = () => <div className={b('test')}>custom test</div>;
1616

17-
export const COMPONENTS_CONFIG = {
17+
const COMPONENTS_CONFIG = {
1818
middleTop: Test,
1919
leftTop: [C9RComponent],
2020
leftTabs: [

src/blocks/CardLayout/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {JSONSchemaType} from 'ajv';
22

3-
import {ConfigInput} from '../../../common/types';
3+
import {ConfigInput} from '../../common/types';
44
import {BlockData} from '../../constructor-items';
55
import {sliderSizesArray, textSize} from '../../schema/validators/common';
66
import {generateFromAJV} from '../../utils/form-generator';

src/blocks/Header/dynamic-form.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {BlockConfig, ConfigInput} from '../../../common/types';
1+
import {BlockConfig, ConfigInput} from '../../common/types';
22
import {imageInputs} from '../../components/Image/dynamic-form';
33
import {Theme} from '../../models';
44

src/blocks/Slider/dynamic-form.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {BlockConfig, ConfigInput} from '../../../common/types';
1+
import {BlockConfig, ConfigInput} from '../../common/types';
22
import {sliderSizesArray, textSize} from '../../schema/validators/common';
33

44
const textSizeEnum = textSize.map((size) => ({value: size, content: size}));

src/blocks/TestEditorBlock/form.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
SelectSingleInput,
1010
TextAreaInput,
1111
TextInput,
12-
} from '../../../common/types';
12+
} from '../../common/types';
1313

1414
const textInput: TextInput = {
1515
type: 'text',

common/store.ts renamed to src/common/store.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import _ from 'lodash';
22

3-
import {PageContentWithNavigation} from '../src/models';
3+
import {PageContentWithNavigation} from '../models';
44

55
import {ConfigInput, ItemConfig} from './types';
66
import {initializeStore} from './utils';

0 commit comments

Comments
 (0)