forked from MapComplete/MapComplete
Split TagsFilter into multiple files
This commit is contained in:
parent
830f34b183
commit
d8c1f72857
26 changed files with 541 additions and 518 deletions
|
@ -1,7 +1,11 @@
|
|||
import {AndOrTagConfigJson} from "./TagConfigJson";
|
||||
import {And, Or, RegexTag, Tag, TagsFilter} from "../../Logic/Tags";
|
||||
import {Or} from "../../Logic/Or";
|
||||
|
||||
import {Utils} from "../../Utils";
|
||||
import {TagsFilter} from "../../Logic/TagsFilter";
|
||||
import {RegexTag} from "../../Logic/RegexTag";
|
||||
import {Tag} from "../../Logic/Tag";
|
||||
import {And} from "../../Logic/And";
|
||||
|
||||
export class FromJSON {
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import Translations from "../../UI/i18n/Translations";
|
||||
import TagRenderingConfig from "./TagRenderingConfig";
|
||||
import {Tag, TagsFilter} from "../../Logic/Tags";
|
||||
import {LayerConfigJson} from "./LayerConfigJson";
|
||||
import {FromJSON} from "./FromJSON";
|
||||
import SharedTagRenderings from "../SharedTagRenderings";
|
||||
|
@ -16,6 +15,8 @@ import {FixedUiElement} from "../../UI/Base/FixedUiElement";
|
|||
import {UIElement} from "../../UI/UIElement";
|
||||
import {SubstitutedTranslation} from "../../UI/SubstitutedTranslation";
|
||||
import SourceConfig from "./SourceConfig";
|
||||
import {TagsFilter} from "../../Logic/TagsFilter";
|
||||
import {Tag} from "../../Logic/Tag";
|
||||
|
||||
export default class LayerConfig {
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import {TagsFilter} from "../../Logic/Tags";
|
||||
import {TagsFilter} from "../../Logic/TagsFilter";
|
||||
|
||||
export default class SourceConfig {
|
||||
|
||||
|
|
|
@ -1,10 +1,12 @@
|
|||
import {And, TagsFilter, TagUtils} from "../../Logic/Tags";
|
||||
import {TagRenderingConfigJson} from "./TagRenderingConfigJson";
|
||||
import Translations from "../../UI/i18n/Translations";
|
||||
import {FromJSON} from "./FromJSON";
|
||||
import ValidatedTextField from "../../UI/Input/ValidatedTextField";
|
||||
import {Translation} from "../../UI/i18n/Translation";
|
||||
import {Utils} from "../../Utils";
|
||||
import {TagsFilter} from "../../Logic/TagsFilter";
|
||||
import {And} from "../../Logic/And";
|
||||
import {TagUtils} from "../../Logic/TagUtils";
|
||||
|
||||
/***
|
||||
* The parsed version of TagRenderingConfigJSON
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue