Update themes to use new language_chooser

This commit is contained in:
Pieter Vander Vennet 2022-10-29 03:05:29 +02:00
parent 84eee064b2
commit 112b9cd25d
10 changed files with 11077 additions and 40761 deletions

View file

@ -1,13 +1,15 @@
import {UIEventSource} from "../Logic/UIEventSource";
import BaseUIElement from "./BaseUIElement";
import FeaturePipelineState from "../Logic/State/FeaturePipelineState";
import {DefaultGuiState} from "./DefaultGuiState";
export interface SpecialVisualization {
funcName: string
constr: (
state: any, /*FeaturePipelineState*/
state: FeaturePipelineState,
tagSource: UIEventSource<any>,
argument: string[],
guistate: any /*DefaultGuiState*/
guistate: DefaultGuiState
) => BaseUIElement
docs: string | BaseUIElement
example?: string