Skip to content

Commit

Permalink
Add components subfolder for ts components
Browse files Browse the repository at this point in the history
  • Loading branch information
Nigel2392 committed May 8, 2024
1 parent 7e7f3ec commit b367b46
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = wagtail_fedit
version = 1.5.5rc2
version = 1.5.5rc3
description = Frontend editing for your Wagtail site
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion wagtail_fedit/static_src/editors/base/base.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { initNewEditors } from "./init";
import { WagtailFeditorAPI } from "./api";
import { EditorModal } from "./modal";
import { EditorModal } from "../../components/modal";
import { iFrame } from "./iframe";

export {
Expand Down
2 changes: 1 addition & 1 deletion wagtail_fedit/static_src/editors/base/init.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { WrapperElement } from "./base";
import { Tooltip } from "./tooltips";
import { Tooltip } from "../../components/tooltips";

export {
initNewEditors,
Expand Down
4 changes: 2 additions & 2 deletions wagtail_fedit/static_src/global.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ export {};

import { initNewEditors, setScrollParams } from "./editors/base/init";
import { BaseWagtailFeditEditor } from "./editors/base/base";
import { WagtailFeditPublishMenu } from "./menu";
import { WagtailFeditPublishMenu } from "./components/menu";
import {
BaseFuncEditor,
WagtailFeditFuncEditor,
BlockFieldEditor,
backgroundImageAdapter,
} from "./editors/editors";
import { Tooltip } from "./editors/base/tooltips";
import { Tooltip } from "./components/tooltips";
import { iFrame } from "./editors/base/iframe";

export {
Expand Down

0 comments on commit b367b46

Please sign in to comment.