class moving

This commit is contained in:
zadam
2021-01-30 15:50:46 +01:00
parent 552d213817
commit ae26f22114
8 changed files with 39 additions and 39 deletions

View File

@@ -1,8 +1,8 @@
import server from "../services/server.js";
import TabAwareWidget from "./tab_aware_widget.js";
import toastService from "../services/toast.js";
import openService from "../services/open.js";
import utils from "../services/utils.js";
import server from "../../services/server.js";
import TabAwareWidget from "../tab_aware_widget.js";
import toastService from "../../services/toast.js";
import openService from "../../services/open.js";
import utils from "../../services/utils.js";
const TPL = `
<div class="file-properties-widget">

View File

@@ -1,6 +1,6 @@
import TabAwareWidget from "./tab_aware_widget.js";
import AttributeDetailWidget from "./attribute_widgets/attribute_detail.js";
import attributeRenderer from "../services/attribute_renderer.js";
import TabAwareWidget from "../tab_aware_widget.js";
import AttributeDetailWidget from "../attribute_widgets/attribute_detail.js";
import attributeRenderer from "../../services/attribute_renderer.js";
const TPL = `
<div class="inherited-attributes-widget">

View File

@@ -1,6 +1,6 @@
import TabAwareWidget from "../tab_aware_widget.js";
import AttributeDetailWidget from "./attribute_detail.js";
import AttributeEditorWidget from "./attribute_editor.js";
import AttributeDetailWidget from "../attribute_widgets/attribute_detail.js";
import AttributeEditorWidget from "../attribute_widgets/attribute_editor.js";
const TPL = `
<div class="attribute-list">

View File

@@ -1,23 +1,23 @@
import server from "../services/server.js";
import TabAwareWidget from "./tab_aware_widget.js";
import treeCache from "../services/tree_cache.js";
import ws from "../services/ws.js";
import toastService from "../services/toast.js";
import server from "../../services/server.js";
import TabAwareWidget from "../tab_aware_widget.js";
import treeCache from "../../services/tree_cache.js";
import ws from "../../services/ws.js";
import toastService from "../../services/toast.js";
import DeleteNoteSearchAction from "./search_actions/delete_note.js";
import DeleteLabelSearchAction from "./search_actions/delete_label.js";
import DeleteRelationSearchAction from "./search_actions/delete_relation.js";
import RenameLabelSearchAction from "./search_actions/rename_label.js";
import SetLabelValueSearchAction from "./search_actions/set_label_value.js";
import SetRelationTargetSearchAction from "./search_actions/set_relation_target.js";
import RenameRelationSearchAction from "./search_actions/rename_relation.js";
import ExecuteScriptSearchAction from "./search_actions/execute_script.js"
import SearchString from "./search_options/search_string.js";
import FastSearch from "./search_options/fast_search.js";
import Ancestor from "./search_options/ancestor.js";
import IncludeArchivedNotes from "./search_options/include_archived_notes.js";
import OrderBy from "./search_options/order_by.js";
import SearchScript from "./search_options/search_script.js";
import DeleteNoteSearchAction from "../search_actions/delete_note.js";
import DeleteLabelSearchAction from "../search_actions/delete_label.js";
import DeleteRelationSearchAction from "../search_actions/delete_relation.js";
import RenameLabelSearchAction from "../search_actions/rename_label.js";
import SetLabelValueSearchAction from "../search_actions/set_label_value.js";
import SetRelationTargetSearchAction from "../search_actions/set_relation_target.js";
import RenameRelationSearchAction from "../search_actions/rename_relation.js";
import ExecuteScriptSearchAction from "../search_actions/execute_script.js"
import SearchString from "../search_options/search_string.js";
import FastSearch from "../search_options/fast_search.js";
import Ancestor from "../search_options/ancestor.js";
import IncludeArchivedNotes from "../search_options/include_archived_notes.js";
import OrderBy from "../search_options/order_by.js";
import SearchScript from "../search_options/search_script.js";
const TPL = `
<div class="search-definition-widget">