@linkdlab/funcnodes_react_flow 0.4.3 → 0.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser_index.d.ts +8 -0
- package/dist/frontend/assets/fontawsome.d.ts +21 -0
- package/dist/frontend/assets/mui.d.ts +8 -0
- package/dist/frontend/datarenderer/data_renderer_overlay.d.ts +3 -0
- package/dist/frontend/datarenderer/default_data_overlay_views.d.ts +6 -0
- package/dist/frontend/datarenderer/default_data_preview_renderer.d.ts +5 -0
- package/dist/frontend/datarenderer/default_data_view_renderer.d.ts +13 -0
- package/dist/frontend/datarenderer/default_handle_previews.d.ts +4 -0
- package/dist/frontend/datarenderer/default_inline_renderer.d.ts +5 -0
- package/dist/frontend/datarenderer/default_input_renderer.d.ts +17 -0
- package/dist/frontend/datarenderer/default_output_renderer.d.ts +9 -0
- package/dist/frontend/datarenderer/images.d.ts +19 -0
- package/dist/frontend/datarenderer/rendermappings.d.ts +204 -0
- package/dist/frontend/dialog.d.ts +20 -0
- package/dist/frontend/edge.d.ts +4 -0
- package/dist/frontend/funcnodesreactflow/index.d.ts +8 -0
- package/dist/frontend/funcnodesreactflow/react_flow_layer.d.ts +7 -0
- package/dist/frontend/header/index.d.ts +4 -0
- package/dist/frontend/index.d.ts +0 -0
- package/dist/frontend/layout/components.d.ts +36 -0
- package/dist/frontend/layout/fullscreenelement.d.ts +17 -0
- package/dist/frontend/layout/smoothexpand.d.ts +22 -0
- package/dist/frontend/lib.d.ts +10 -0
- package/dist/frontend/node/body_data_renderer.d.ts +3 -0
- package/dist/frontend/node/index.d.ts +4 -0
- package/dist/frontend/node/io/handle_renderer.d.ts +3 -0
- package/dist/frontend/node/io/index.d.ts +3 -0
- package/dist/frontend/node/io/io.d.ts +15 -0
- package/dist/frontend/node/io/iodataoverlay.d.ts +10 -0
- package/dist/frontend/node/io/nodeinput.d.ts +10 -0
- package/dist/frontend/node/io/nodeoutput.d.ts +6 -0
- package/dist/frontend/node/node.d.ts +25 -0
- package/dist/frontend/node/nodesettings.d.ts +3 -0
- package/dist/frontend/utils/colorpicker.d.ts +22 -0
- package/dist/frontend/utils/jsondata.d.ts +5 -0
- package/dist/frontend/utils/progressbar.d.ts +46 -0
- package/dist/frontend/utils/select.d.ts +17 -0
- package/dist/frontend/utils/table.d.ts +10 -0
- package/dist/funcnodes/datastructures.d.ts +51 -0
- package/dist/funcnodes/funcnodesworker.d.ts +147 -0
- package/dist/funcnodes/index.d.ts +4 -0
- package/dist/funcnodes/websocketworker.d.ts +45 -0
- package/dist/funcnodes/workermanager.d.ts +34 -0
- package/dist/funcnodes_react_flow.css +1 -0
- package/dist/index.cjs.js +865 -0
- package/dist/index.d.ts +16 -1224
- package/dist/index.es.js +40601 -0
- package/dist/index.umd.js +865 -0
- package/dist/plugin/helper.d.ts +2 -0
- package/dist/plugin/index.d.ts +7 -0
- package/dist/plugin/v0/index.d.ts +2 -0
- package/dist/plugin/v1/index.d.ts +2 -0
- package/dist/plugin/v1/upgrader.d.ts +34 -0
- package/dist/states/edge.d.ts +7 -0
- package/dist/states/edge.t.d.ts +16 -0
- package/dist/states/fnrfzst.d.ts +9 -0
- package/dist/states/fnrfzst.t.d.ts +182 -0
- package/dist/states/index.d.ts +7 -0
- package/dist/states/lib.d.ts +3 -0
- package/dist/states/lib.t.d.ts +45 -0
- package/dist/states/node/newnode.d.ts +4 -0
- package/dist/states/node/update_funcs.d.ts +9 -0
- package/dist/states/node/update_io.d.ts +3 -0
- package/dist/states/node/update_node.d.ts +6 -0
- package/dist/states/nodespace.d.ts +3 -0
- package/dist/states/nodespace.t.d.ts +16 -0
- package/dist/states/reactflow.d.ts +8 -0
- package/dist/states/reactflow.t.d.ts +11 -0
- package/dist/types/versioned/v0/index.d.ts +5 -0
- package/dist/types/versioned/v0/io.t.d.ts +29 -0
- package/dist/types/versioned/v0/node.t.d.ts +75 -0
- package/dist/types/versioned/v0/plugins.t.d.ts +37 -0
- package/dist/types/versioned/v0/rendering.t.d.ts +42 -0
- package/dist/types/versioned/v0/rendermappings.t.d.ts +27 -0
- package/dist/types/versioned/v1/index.d.ts +5 -0
- package/dist/types/versioned/v1/io.t.d.ts +51 -0
- package/dist/types/versioned/v1/node.t.d.ts +64 -0
- package/dist/types/versioned/v1/plugins.t.d.ts +39 -0
- package/dist/types/versioned/v1/rendering.t.d.ts +1 -0
- package/dist/types/versioned/v1/rendermappings.t.d.ts +53 -0
- package/dist/types/versioned/versions.t.d.ts +3 -0
- package/dist/utils/autolayout/force.d.ts +2 -0
- package/dist/utils/autolayout/index.d.ts +2 -0
- package/dist/utils/autolayout/txt.d.ts +15 -0
- package/dist/utils/data.d.ts +12 -0
- package/dist/utils/debugger.d.ts +5 -0
- package/dist/utils/helperfunctions.d.ts +16 -0
- package/dist/utils/index.d.ts +3 -0
- package/dist/utils/logger.d.ts +26 -0
- package/dist/utils/objects.d.ts +142 -0
- package/package.json +36 -70
- package/dist/esm/index.esm.mjs +0 -105
- package/dist/esm/index.esm.mjs.map +0 -1
- package/dist/style.css +0 -1
- package/dist/umd/index.umd.js +0 -105
- package/dist/umd/index.umd.js.map +0 -1
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
/**
|
|
3
|
+
* Interface representing the state of a tqdm progress bar.
|
|
4
|
+
*
|
|
5
|
+
* Notes on each field:
|
|
6
|
+
* - `n`: Current iteration count.
|
|
7
|
+
* - `total`: Total number of iterations if known, `null` otherwise.
|
|
8
|
+
* - `elapsed`: Time elapsed in seconds since the start of iteration.
|
|
9
|
+
* - `ncols`: Number of columns for the progress bar. If `null`, not dynamically determined.
|
|
10
|
+
* - `nrows`: Number of rows. Usually `null` as `tqdm` typically focuses on columns.
|
|
11
|
+
* - `prefix`: Description string provided to `tqdm` via `desc`.
|
|
12
|
+
* - `ascii`: Whether to use ASCII characters for the bar or a custom set of ASCII characters.
|
|
13
|
+
* Can be `true`, `false`, or a string specifying the characters.
|
|
14
|
+
* - `unit`: Iteration unit (e.g., 'it', 'steps', 'items').
|
|
15
|
+
* - `unit_scale`: If `true`, `tqdm` scales the iteration values.
|
|
16
|
+
* If a number, `tqdm` uses it as a scaling factor.
|
|
17
|
+
* - `rate`: Current rate of iteration (iterations/second). `null` if rate cannot be computed.
|
|
18
|
+
* - `bar_format`: Custom format string for the bar. If `null`, the default format is used.
|
|
19
|
+
* - `postfix`: Additional data appended to the bar. Could be a string or an object passed via `set_postfix()`.
|
|
20
|
+
* - `unit_divisor`: Divisor used when scaling units (e.g., 1000 or 1024).
|
|
21
|
+
* - `initial`: Initial counter value if specified, else `null`.
|
|
22
|
+
* - `colour`: Colour for the progress bar if supported, else `null`.
|
|
23
|
+
*/
|
|
24
|
+
export interface TqdmState {
|
|
25
|
+
n: number;
|
|
26
|
+
total?: number;
|
|
27
|
+
elapsed: number;
|
|
28
|
+
ncols?: number;
|
|
29
|
+
nrows?: number;
|
|
30
|
+
prefix?: string;
|
|
31
|
+
ascii: boolean | string;
|
|
32
|
+
unit: string;
|
|
33
|
+
unit_scale: boolean | number;
|
|
34
|
+
rate?: number;
|
|
35
|
+
bar_format?: string;
|
|
36
|
+
postfix?: string | Record<string, unknown>;
|
|
37
|
+
unit_divisor: number;
|
|
38
|
+
initial?: number;
|
|
39
|
+
colour?: string;
|
|
40
|
+
}
|
|
41
|
+
export interface ProgressBarProps {
|
|
42
|
+
state: TqdmState;
|
|
43
|
+
className?: string;
|
|
44
|
+
}
|
|
45
|
+
declare const ProgressBar: React.FC<ProgressBarProps & React.HTMLAttributes<HTMLDivElement>>;
|
|
46
|
+
export default ProgressBar;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ActionMeta, SingleValue } from 'react-select';
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
export interface CustomSelectProps<Option extends {
|
|
4
|
+
value: string;
|
|
5
|
+
label: string;
|
|
6
|
+
}> {
|
|
7
|
+
options: Option[];
|
|
8
|
+
items_per_page?: number;
|
|
9
|
+
className?: string;
|
|
10
|
+
defaultValue?: Option;
|
|
11
|
+
onChange: (newValue: SingleValue<Option>, actionMeta: ActionMeta<Option>) => void;
|
|
12
|
+
}
|
|
13
|
+
declare const CustomSelect: <Option extends {
|
|
14
|
+
value: string;
|
|
15
|
+
label: string;
|
|
16
|
+
}>({ options, items_per_page, className, defaultValue, onChange, }: CustomSelectProps<Option>) => React.JSX.Element;
|
|
17
|
+
export default CustomSelect;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
export type DataStructureProps<D> = {
|
|
2
|
+
data: D;
|
|
3
|
+
mime: string;
|
|
4
|
+
};
|
|
5
|
+
export declare class DataStructure<D, R> {
|
|
6
|
+
private _data;
|
|
7
|
+
private _mime;
|
|
8
|
+
constructor({ data, mime }: DataStructureProps<D>);
|
|
9
|
+
get data(): D;
|
|
10
|
+
get value(): R;
|
|
11
|
+
get mime(): string;
|
|
12
|
+
toString(): string;
|
|
13
|
+
toJSON(): string;
|
|
14
|
+
dispose(): void;
|
|
15
|
+
}
|
|
16
|
+
export declare class ArrayBufferDataStructure extends DataStructure<ArrayBuffer, string> {
|
|
17
|
+
private _objectUrl;
|
|
18
|
+
get objectUrl(): string;
|
|
19
|
+
dispose(): void;
|
|
20
|
+
get value(): string;
|
|
21
|
+
}
|
|
22
|
+
export declare class CTypeStructure extends DataStructure<ArrayBufferLike, string | number | boolean | null> {
|
|
23
|
+
private _cType;
|
|
24
|
+
private _value;
|
|
25
|
+
constructor({ data, mime }: DataStructureProps<ArrayBufferLike>);
|
|
26
|
+
parse_value(): string | number | boolean | null;
|
|
27
|
+
get value(): string | number | boolean | null;
|
|
28
|
+
toString(): string;
|
|
29
|
+
}
|
|
30
|
+
interface JSONObject {
|
|
31
|
+
[key: string]: JSONType;
|
|
32
|
+
}
|
|
33
|
+
type JSONType = string | number | boolean | null | JSONObject | JSONType[];
|
|
34
|
+
export declare class JSONStructure extends DataStructure<ArrayBufferLike, JSONType | undefined> {
|
|
35
|
+
private _json;
|
|
36
|
+
constructor({ data, mime }: DataStructureProps<any>);
|
|
37
|
+
get value(): JSONType | undefined;
|
|
38
|
+
static fromObject(obj: JSONType): JSONStructure;
|
|
39
|
+
toString(): string;
|
|
40
|
+
}
|
|
41
|
+
export declare class TextStructure extends DataStructure<ArrayBufferLike, string> {
|
|
42
|
+
private _value;
|
|
43
|
+
constructor({ data, mime }: DataStructureProps<ArrayBufferLike>);
|
|
44
|
+
get value(): string;
|
|
45
|
+
toString(): string;
|
|
46
|
+
}
|
|
47
|
+
export declare const interfereDataStructure: ({ data, mime, }: {
|
|
48
|
+
data: any;
|
|
49
|
+
mime: string;
|
|
50
|
+
}) => DataStructure<any, unknown>;
|
|
51
|
+
export {};
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
import { FuncNodesReactFlowZustandInterface, JSONMessage, LargeMessageHint, NodeSpaceEvent, WorkerEvent } from '../states/fnrfzst.t';
|
|
2
|
+
import { StoreApi, UseBoundStore } from 'zustand';
|
|
3
|
+
import { latest } from '../types/versioned/versions.t';
|
|
4
|
+
interface WorkerProps {
|
|
5
|
+
zustand?: FuncNodesReactFlowZustandInterface;
|
|
6
|
+
uuid: string;
|
|
7
|
+
on_error?: (error: string | Error) => void;
|
|
8
|
+
on_sync_complete?: (worker: FuncNodesWorker) => Promise<void>;
|
|
9
|
+
}
|
|
10
|
+
interface FuncNodesWorkerState {
|
|
11
|
+
is_open: boolean;
|
|
12
|
+
}
|
|
13
|
+
interface HookProperties {
|
|
14
|
+
worker: FuncNodesWorker;
|
|
15
|
+
data: any;
|
|
16
|
+
}
|
|
17
|
+
declare class FuncNodesWorker {
|
|
18
|
+
messagePromises: Map<string, any>;
|
|
19
|
+
_zustand?: FuncNodesReactFlowZustandInterface;
|
|
20
|
+
_local_nodeupdates: Map<string, latest.PartialSerializedNodeType>;
|
|
21
|
+
_nodeupdatetimer: ReturnType<typeof setTimeout>;
|
|
22
|
+
uuid: string;
|
|
23
|
+
_responsive: boolean;
|
|
24
|
+
private CHUNK_TIMEOUT;
|
|
25
|
+
private PONGDELAY;
|
|
26
|
+
private blobChunks;
|
|
27
|
+
state: UseBoundStore<StoreApi<FuncNodesWorkerState>>;
|
|
28
|
+
on_sync_complete: (worker: FuncNodesWorker) => Promise<void>;
|
|
29
|
+
_hooks: Map<string, ((p: HookProperties) => Promise<void>)[]>;
|
|
30
|
+
_ns_event_intercepts: Map<string, ((event: NodeSpaceEvent) => Promise<NodeSpaceEvent>)[]>;
|
|
31
|
+
_last_pong: number;
|
|
32
|
+
_unique_cmd_outs: {
|
|
33
|
+
[key: string]: Promise<any> | undefined;
|
|
34
|
+
};
|
|
35
|
+
on_error: (error: any) => void;
|
|
36
|
+
constructor(data: WorkerProps);
|
|
37
|
+
_receive_pong(): void;
|
|
38
|
+
set_zustand(zustand: FuncNodesReactFlowZustandInterface): void;
|
|
39
|
+
add_hook(hook: string, callback: (p: HookProperties) => Promise<void>): () => void;
|
|
40
|
+
call_hooks(hook: string, data?: any): Promise<void>;
|
|
41
|
+
add_ns_event_intercept(hook: string, callback: (event: NodeSpaceEvent) => Promise<NodeSpaceEvent>): () => void;
|
|
42
|
+
intercept_ns_event(event: NodeSpaceEvent): Promise<NodeSpaceEvent>;
|
|
43
|
+
get is_open(): boolean;
|
|
44
|
+
set is_open(v: boolean);
|
|
45
|
+
stepwise_fullsync(): Promise<void>;
|
|
46
|
+
sync_lib(): Promise<void>;
|
|
47
|
+
sync_external_worker(): Promise<void>;
|
|
48
|
+
sync_funcnodes_plugins(): Promise<void>;
|
|
49
|
+
sync_view_state(): Promise<void>;
|
|
50
|
+
sync_nodespace(): Promise<void>;
|
|
51
|
+
fullsync(): Promise<void>;
|
|
52
|
+
_receive_edge_added(src_nid: string, src_ioid: string, trg_nid: string, trg_ioid: string): Promise<void>;
|
|
53
|
+
trigger_node(node_id: string): Promise<void>;
|
|
54
|
+
add_node(node_id: string): Promise<void>;
|
|
55
|
+
remove_node(node_id: string): Promise<void>;
|
|
56
|
+
_receive_node_added(data: latest.SerializedNodeType): Promise<void>;
|
|
57
|
+
add_edge({ src_nid, src_ioid, trg_nid, trg_ioid, replace, }: {
|
|
58
|
+
src_nid: string;
|
|
59
|
+
src_ioid: string;
|
|
60
|
+
trg_nid: string;
|
|
61
|
+
trg_ioid: string;
|
|
62
|
+
replace?: boolean;
|
|
63
|
+
}): Promise<any>;
|
|
64
|
+
remove_edge({ src_nid, src_ioid, trg_nid, trg_ioid, }: {
|
|
65
|
+
src_nid: string;
|
|
66
|
+
src_ioid: string;
|
|
67
|
+
trg_nid: string;
|
|
68
|
+
trg_ioid: string;
|
|
69
|
+
}): Promise<any>;
|
|
70
|
+
add_external_worker({ module, cls_module, cls_name, }: {
|
|
71
|
+
module: string;
|
|
72
|
+
cls_module: string;
|
|
73
|
+
cls_name: string;
|
|
74
|
+
}): Promise<any>;
|
|
75
|
+
sync_local_node_updates(): void;
|
|
76
|
+
locally_update_node(action: latest.NodeActionUpdate): void;
|
|
77
|
+
get_remote_node_state(nid: string): Promise<void>;
|
|
78
|
+
set_io_value({ nid, ioid, value, set_default, }: {
|
|
79
|
+
nid: string;
|
|
80
|
+
ioid: string;
|
|
81
|
+
value: any;
|
|
82
|
+
set_default: boolean;
|
|
83
|
+
}): Promise<any>;
|
|
84
|
+
clear(): Promise<any>;
|
|
85
|
+
save(): Promise<any>;
|
|
86
|
+
load(data: any): Promise<void>;
|
|
87
|
+
get_io_value({ nid, ioid }: {
|
|
88
|
+
nid: string;
|
|
89
|
+
ioid: string;
|
|
90
|
+
}): Promise<any>;
|
|
91
|
+
get_ios_values({ nid }: {
|
|
92
|
+
nid: string;
|
|
93
|
+
}): Promise<{
|
|
94
|
+
[ioid: string]: any;
|
|
95
|
+
}>;
|
|
96
|
+
get_runstate(): Promise<any>;
|
|
97
|
+
_send_cmd({ cmd, kwargs, as_bytes, wait_for_response, response_timeout, retries, unique, }: {
|
|
98
|
+
cmd: string;
|
|
99
|
+
kwargs?: any;
|
|
100
|
+
wait_for_response?: boolean;
|
|
101
|
+
response_timeout?: number;
|
|
102
|
+
as_bytes?: boolean;
|
|
103
|
+
retries?: number;
|
|
104
|
+
unique?: boolean;
|
|
105
|
+
}): Promise<any>;
|
|
106
|
+
send(_data: any): Promise<void>;
|
|
107
|
+
upload_file({ files: _files, onProgressCallback: _onProgressCallback, root: _root, }: {
|
|
108
|
+
files: File[] | FileList;
|
|
109
|
+
onProgressCallback?: (loaded: number, total?: number) => void;
|
|
110
|
+
root?: string;
|
|
111
|
+
}): Promise<string>;
|
|
112
|
+
handle_large_message_hint({}: LargeMessageHint): Promise<void>;
|
|
113
|
+
receive_workerevent({ event, data }: WorkerEvent): Promise<void>;
|
|
114
|
+
receive_nodespace_event(ns_event: NodeSpaceEvent): Promise<void>;
|
|
115
|
+
add_lib(lib: string, release: string): Promise<any>;
|
|
116
|
+
remove_lib(lib: string): Promise<any>;
|
|
117
|
+
receive(data: JSONMessage): Promise<any>;
|
|
118
|
+
onbytes(data: Uint8Array): Promise<void>;
|
|
119
|
+
recieve_bytes(headerObj: {
|
|
120
|
+
[key: string]: string | undefined;
|
|
121
|
+
}, bytes: Uint8Array): Promise<void>;
|
|
122
|
+
disconnect(): void;
|
|
123
|
+
onclose(): void;
|
|
124
|
+
reconnect(): Promise<void>;
|
|
125
|
+
stop(): Promise<void>;
|
|
126
|
+
get_io_full_value({ nid, ioid }: {
|
|
127
|
+
nid: string;
|
|
128
|
+
ioid: string;
|
|
129
|
+
}): Promise<any>;
|
|
130
|
+
update_io_options({ nid, ioid, options, }: {
|
|
131
|
+
nid: string;
|
|
132
|
+
ioid: string;
|
|
133
|
+
options: latest.UpdateableIOOptions;
|
|
134
|
+
}): Promise<any>;
|
|
135
|
+
get_node_status(nid: string): Promise<any>;
|
|
136
|
+
get_available_modules(): Promise<any>;
|
|
137
|
+
update_external_worker(worker_id: string, class_id: string, data: {
|
|
138
|
+
name?: string;
|
|
139
|
+
}): Promise<any>;
|
|
140
|
+
remove_external_worker(worker_id: string, class_id: string): Promise<any>;
|
|
141
|
+
export({ withFiles }: {
|
|
142
|
+
withFiles: boolean;
|
|
143
|
+
}): Promise<any>;
|
|
144
|
+
update_from_export(data: string): Promise<any>;
|
|
145
|
+
}
|
|
146
|
+
export default FuncNodesWorker;
|
|
147
|
+
export type { WorkerProps, FuncNodesWorkerState };
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { LargeMessageHint } from '../states/fnrfzst.t';
|
|
2
|
+
import { default as FuncNodesWorker, WorkerProps } from './funcnodesworker';
|
|
3
|
+
interface WebSocketWorkerProps extends WorkerProps {
|
|
4
|
+
url: string;
|
|
5
|
+
}
|
|
6
|
+
declare class WebSocketWorker extends FuncNodesWorker {
|
|
7
|
+
private _url;
|
|
8
|
+
private _websocket;
|
|
9
|
+
private reconnectAttempts;
|
|
10
|
+
private maxReconnectAttempts;
|
|
11
|
+
private initialTimeout;
|
|
12
|
+
private maxTimeout;
|
|
13
|
+
private _reconnect;
|
|
14
|
+
private _reconnect_timeout;
|
|
15
|
+
constructor(data: WebSocketWorkerProps);
|
|
16
|
+
private connect;
|
|
17
|
+
private calculateReconnectTimeout;
|
|
18
|
+
private auto_reconnect;
|
|
19
|
+
onmessage(data: string): Promise<void>;
|
|
20
|
+
get http_protocol(): string;
|
|
21
|
+
get secure_url(): boolean;
|
|
22
|
+
get url_wo_protocol(): string;
|
|
23
|
+
get http_url(): string;
|
|
24
|
+
get_io_subscription_url({ node_id, io_id, stream, }: {
|
|
25
|
+
node_id: string;
|
|
26
|
+
io_id: string;
|
|
27
|
+
stream: boolean;
|
|
28
|
+
}): string;
|
|
29
|
+
upload_file({ files, onProgressCallback, root, }: {
|
|
30
|
+
files: File[] | FileList;
|
|
31
|
+
onProgressCallback?: (loaded: number, total?: number) => void;
|
|
32
|
+
root?: string;
|
|
33
|
+
}): Promise<string>;
|
|
34
|
+
handle_large_message_hint({ msg_id }: LargeMessageHint): Promise<void>;
|
|
35
|
+
onopen(): void;
|
|
36
|
+
onclose(): void;
|
|
37
|
+
on_ws_error(): void;
|
|
38
|
+
send_large_message(jsondata: string): Promise<void>;
|
|
39
|
+
send(data: any): Promise<void>;
|
|
40
|
+
stop(): Promise<void>;
|
|
41
|
+
close(): void;
|
|
42
|
+
disconnect(): void;
|
|
43
|
+
reconnect(): Promise<void>;
|
|
44
|
+
}
|
|
45
|
+
export default WebSocketWorker;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { FuncNodesReactFlowZustandInterface } from '../states/fnrfzst.t';
|
|
2
|
+
import { default as FuncNodesWorker } from './funcnodesworker';
|
|
3
|
+
declare class WorkerManager {
|
|
4
|
+
private wsuri;
|
|
5
|
+
private workers;
|
|
6
|
+
private ws;
|
|
7
|
+
private reconnectAttempts;
|
|
8
|
+
private maxReconnectAttempts;
|
|
9
|
+
private initialTimeout;
|
|
10
|
+
private maxTimeout;
|
|
11
|
+
private zustand;
|
|
12
|
+
private connectionTimeout?;
|
|
13
|
+
on_setWorker: (worker: FuncNodesWorker | undefined) => void;
|
|
14
|
+
constructor(wsuri: string, zustand: FuncNodesReactFlowZustandInterface);
|
|
15
|
+
get open(): boolean;
|
|
16
|
+
private connect;
|
|
17
|
+
on_ws_error(): void;
|
|
18
|
+
onopen(): void;
|
|
19
|
+
onmessage(event: string): void;
|
|
20
|
+
setWorker(worker: FuncNodesWorker | undefined): void;
|
|
21
|
+
restart_worker(workerid: string): Promise<void>;
|
|
22
|
+
private calculateReconnectTimeout;
|
|
23
|
+
private reconnect;
|
|
24
|
+
onclose(): void;
|
|
25
|
+
set_active(workerid: string): void;
|
|
26
|
+
new_worker({ name, reference, copyLib, copyNS, }: {
|
|
27
|
+
name?: string;
|
|
28
|
+
reference?: string;
|
|
29
|
+
copyLib?: boolean;
|
|
30
|
+
copyNS?: boolean;
|
|
31
|
+
}): void;
|
|
32
|
+
remove(): void;
|
|
33
|
+
}
|
|
34
|
+
export default WorkerManager;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@charset "UTF-8";:root,:host{--fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";--fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";--fa-font-light: normal 300 1em/1 "Font Awesome 6 Pro";--fa-font-thin: normal 100 1em/1 "Font Awesome 6 Pro";--fa-font-duotone: normal 900 1em/1 "Font Awesome 6 Duotone";--fa-font-duotone-regular: normal 400 1em/1 "Font Awesome 6 Duotone";--fa-font-duotone-light: normal 300 1em/1 "Font Awesome 6 Duotone";--fa-font-duotone-thin: normal 100 1em/1 "Font Awesome 6 Duotone";--fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";--fa-font-sharp-solid: normal 900 1em/1 "Font Awesome 6 Sharp";--fa-font-sharp-regular: normal 400 1em/1 "Font Awesome 6 Sharp";--fa-font-sharp-light: normal 300 1em/1 "Font Awesome 6 Sharp";--fa-font-sharp-thin: normal 100 1em/1 "Font Awesome 6 Sharp";--fa-font-sharp-duotone-solid: normal 900 1em/1 "Font Awesome 6 Sharp Duotone";--fa-font-sharp-duotone-regular: normal 400 1em/1 "Font Awesome 6 Sharp Duotone";--fa-font-sharp-duotone-light: normal 300 1em/1 "Font Awesome 6 Sharp Duotone";--fa-font-sharp-duotone-thin: normal 100 1em/1 "Font Awesome 6 Sharp Duotone"}svg.svg-inline--fa:not(:root),svg.svg-inline--fa:not(:host){overflow:visible;box-sizing:content-box}.svg-inline--fa{display:var(--fa-display, inline-block);height:1em;overflow:visible;vertical-align:-.125em}.svg-inline--fa.fa-2xs{vertical-align:.1em}.svg-inline--fa.fa-xs{vertical-align:0em}.svg-inline--fa.fa-sm{vertical-align:-.07143em}.svg-inline--fa.fa-lg{vertical-align:-.2em}.svg-inline--fa.fa-xl{vertical-align:-.25em}.svg-inline--fa.fa-2xl{vertical-align:-.3125em}.svg-inline--fa.fa-pull-left{margin-right:var(--fa-pull-margin, .3em);width:auto}.svg-inline--fa.fa-pull-right{margin-left:var(--fa-pull-margin, .3em);width:auto}.svg-inline--fa.fa-li{width:var(--fa-li-width, 2em);top:.25em}.svg-inline--fa.fa-fw{width:var(--fa-fw-width, 1.25em)}.fa-layers svg.svg-inline--fa{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.fa-layers-counter,.fa-layers-text{display:inline-block;position:absolute;text-align:center}.fa-layers{display:inline-block;height:1em;position:relative;text-align:center;vertical-align:-.125em;width:1em}.fa-layers svg.svg-inline--fa{transform-origin:center center}.fa-layers-text{left:50%;top:50%;transform:translate(-50%,-50%);transform-origin:center center}.fa-layers-counter{background-color:var(--fa-counter-background-color, #ff253a);border-radius:var(--fa-counter-border-radius, 1em);box-sizing:border-box;color:var(--fa-inverse, #fff);line-height:var(--fa-counter-line-height, 1);max-width:var(--fa-counter-max-width, 5em);min-width:var(--fa-counter-min-width, 1.5em);overflow:hidden;padding:var(--fa-counter-padding, .25em .5em);right:var(--fa-right, 0);text-overflow:ellipsis;top:var(--fa-top, 0);transform:scale(var(--fa-counter-scale, .25));transform-origin:top right}.fa-layers-bottom-right{bottom:var(--fa-bottom, 0);right:var(--fa-right, 0);top:auto;transform:scale(var(--fa-layers-scale, .25));transform-origin:bottom right}.fa-layers-bottom-left{bottom:var(--fa-bottom, 0);left:var(--fa-left, 0);right:auto;top:auto;transform:scale(var(--fa-layers-scale, .25));transform-origin:bottom left}.fa-layers-top-right{top:var(--fa-top, 0);right:var(--fa-right, 0);transform:scale(var(--fa-layers-scale, .25));transform-origin:top right}.fa-layers-top-left{left:var(--fa-left, 0);right:auto;top:var(--fa-top, 0);transform:scale(var(--fa-layers-scale, .25));transform-origin:top left}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin, 2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(-1 * var(--fa-li-width, 2em));position:absolute;text-align:center;width:var(--fa-li-width, 2em);line-height:inherit}.fa-border{border-color:var(--fa-border-color, #eee);border-radius:var(--fa-border-radius, .1em);border-style:var(--fa-border-style, solid);border-width:var(--fa-border-width, .08em);padding:var(--fa-border-padding, .2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin, .3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin, .3em)}.fa-beat{animation-name:fa-beat;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, ease-in-out)}.fa-bounce{animation-name:fa-bounce;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, cubic-bezier(.28, .84, .42, 1))}.fa-fade{animation-name:fa-fade;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1))}.fa-beat-fade{animation-name:fa-beat-fade;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1))}.fa-flip{animation-name:fa-flip;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, ease-in-out)}.fa-shake{animation-name:fa-shake;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, linear)}.fa-spin{animation-name:fa-spin;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 2s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, linear)}.fa-spin-reverse{--fa-animation-direction: reverse}.fa-pulse,.fa-spin-pulse{animation-name:fa-spin;animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, steps(8))}@media (prefers-reduced-motion: reduce){.fa-beat,.fa-bounce,.fa-fade,.fa-beat-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{animation-delay:-1ms;animation-duration:1ms;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@keyframes fa-beat{0%,90%{transform:scale(1)}45%{transform:scale(var(--fa-beat-scale, 1.25))}}@keyframes fa-bounce{0%{transform:scale(1) translateY(0)}10%{transform:scale(var(--fa-bounce-start-scale-x, 1.1),var(--fa-bounce-start-scale-y, .9)) translateY(0)}30%{transform:scale(var(--fa-bounce-jump-scale-x, .9),var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em))}50%{transform:scale(var(--fa-bounce-land-scale-x, 1.05),var(--fa-bounce-land-scale-y, .95)) translateY(0)}57%{transform:scale(1) translateY(var(--fa-bounce-rebound, -.125em))}64%{transform:scale(1) translateY(0)}to{transform:scale(1) translateY(0)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity, .4)}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity, .4);transform:scale(1)}50%{opacity:1;transform:scale(var(--fa-beat-fade-scale, 1.125))}}@keyframes fa-flip{50%{transform:rotate3d(var(--fa-flip-x, 0),var(--fa-flip-y, 1),var(--fa-flip-z, 0),var(--fa-flip-angle, -180deg))}}@keyframes fa-shake{0%{transform:rotate(-15deg)}4%{transform:rotate(15deg)}8%,24%{transform:rotate(-18deg)}12%,28%{transform:rotate(18deg)}16%{transform:rotate(-22deg)}20%{transform:rotate(22deg)}32%{transform:rotate(-12deg)}36%{transform:rotate(12deg)}40%,to{transform:rotate(0)}}@keyframes fa-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.fa-rotate-90{transform:rotate(90deg)}.fa-rotate-180{transform:rotate(180deg)}.fa-rotate-270{transform:rotate(270deg)}.fa-flip-horizontal{transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}.fa-rotate-by{transform:rotate(var(--fa-rotate-angle, 0))}.fa-stack{display:inline-block;vertical-align:middle;height:2em;position:relative;width:2.5em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0;z-index:var(--fa-stack-z-index, auto)}.svg-inline--fa.fa-stack-1x{height:1em;width:1.25em}.svg-inline--fa.fa-stack-2x{height:2em;width:2.5em}.fa-inverse{color:var(--fa-inverse, #fff)}.sr-only,.fa-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.sr-only-focusable:not(:focus),.fa-sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.svg-inline--fa .fa-primary{fill:var(--fa-primary-color, currentColor);opacity:var(--fa-primary-opacity, 1)}.svg-inline--fa .fa-secondary{fill:var(--fa-secondary-color, currentColor);opacity:var(--fa-secondary-opacity, .4)}.svg-inline--fa.fa-swap-opacity .fa-primary{opacity:var(--fa-secondary-opacity, .4)}.svg-inline--fa.fa-swap-opacity .fa-secondary{opacity:var(--fa-primary-opacity, 1)}.svg-inline--fa mask .fa-primary,.svg-inline--fa mask .fa-secondary{fill:#000}.react-flow{direction:ltr;--xy-edge-stroke-default: #b1b1b7;--xy-edge-stroke-width-default: 1;--xy-edge-stroke-selected-default: #555;--xy-connectionline-stroke-default: #b1b1b7;--xy-connectionline-stroke-width-default: 1;--xy-attribution-background-color-default: rgba(255, 255, 255, .5);--xy-minimap-background-color-default: #fff;--xy-minimap-mask-background-color-default: rgba(240, 240, 240, .6);--xy-minimap-mask-stroke-color-default: transparent;--xy-minimap-mask-stroke-width-default: 1;--xy-minimap-node-background-color-default: #e2e2e2;--xy-minimap-node-stroke-color-default: transparent;--xy-minimap-node-stroke-width-default: 2;--xy-background-color-default: transparent;--xy-background-pattern-dots-color-default: #91919a;--xy-background-pattern-lines-color-default: #eee;--xy-background-pattern-cross-color-default: #e2e2e2;background-color:var(--xy-background-color, var(--xy-background-color-default));--xy-node-color-default: inherit;--xy-node-border-default: 1px solid #1a192b;--xy-node-background-color-default: #fff;--xy-node-group-background-color-default: rgba(240, 240, 240, .25);--xy-node-boxshadow-hover-default: 0 1px 4px 1px rgba(0, 0, 0, .08);--xy-node-boxshadow-selected-default: 0 0 0 .5px #1a192b;--xy-node-border-radius-default: 3px;--xy-handle-background-color-default: #1a192b;--xy-handle-border-color-default: #fff;--xy-selection-background-color-default: rgba(0, 89, 220, .08);--xy-selection-border-default: 1px dotted rgba(0, 89, 220, .8);--xy-controls-button-background-color-default: #fefefe;--xy-controls-button-background-color-hover-default: #f4f4f4;--xy-controls-button-color-default: inherit;--xy-controls-button-color-hover-default: inherit;--xy-controls-button-border-color-default: #eee;--xy-controls-box-shadow-default: 0 0 2px 1px rgba(0, 0, 0, .08);--xy-edge-label-background-color-default: #ffffff;--xy-edge-label-color-default: inherit;--xy-resize-background-color-default: #3367d9}.react-flow.dark{--xy-edge-stroke-default: #3e3e3e;--xy-edge-stroke-width-default: 1;--xy-edge-stroke-selected-default: #727272;--xy-connectionline-stroke-default: #b1b1b7;--xy-connectionline-stroke-width-default: 1;--xy-attribution-background-color-default: rgba(150, 150, 150, .25);--xy-minimap-background-color-default: #141414;--xy-minimap-mask-background-color-default: rgba(60, 60, 60, .6);--xy-minimap-mask-stroke-color-default: transparent;--xy-minimap-mask-stroke-width-default: 1;--xy-minimap-node-background-color-default: #2b2b2b;--xy-minimap-node-stroke-color-default: transparent;--xy-minimap-node-stroke-width-default: 2;--xy-background-color-default: #141414;--xy-background-pattern-dots-color-default: #777;--xy-background-pattern-lines-color-default: #777;--xy-background-pattern-cross-color-default: #777;--xy-node-color-default: #f8f8f8;--xy-node-border-default: 1px solid #3c3c3c;--xy-node-background-color-default: #1e1e1e;--xy-node-group-background-color-default: rgba(240, 240, 240, .25);--xy-node-boxshadow-hover-default: 0 1px 4px 1px rgba(255, 255, 255, .08);--xy-node-boxshadow-selected-default: 0 0 0 .5px #999;--xy-handle-background-color-default: #bebebe;--xy-handle-border-color-default: #1e1e1e;--xy-selection-background-color-default: rgba(200, 200, 220, .08);--xy-selection-border-default: 1px dotted rgba(200, 200, 220, .8);--xy-controls-button-background-color-default: #2b2b2b;--xy-controls-button-background-color-hover-default: #3e3e3e;--xy-controls-button-color-default: #f8f8f8;--xy-controls-button-color-hover-default: #fff;--xy-controls-button-border-color-default: #5b5b5b;--xy-controls-box-shadow-default: 0 0 2px 1px rgba(0, 0, 0, .08);--xy-edge-label-background-color-default: #141414;--xy-edge-label-color-default: #f8f8f8}.react-flow__background{background-color:var(--xy-background-color, var(--xy-background-color-props, var(--xy-background-color-default)));pointer-events:none;z-index:-1}.react-flow__container{position:absolute;width:100%;height:100%;top:0;left:0}.react-flow__pane{z-index:1}.react-flow__pane.draggable{cursor:grab}.react-flow__pane.dragging{cursor:grabbing}.react-flow__pane.selection{cursor:pointer}.react-flow__viewport{transform-origin:0 0;z-index:2;pointer-events:none}.react-flow__renderer{z-index:4}.react-flow__selection{z-index:6}.react-flow__nodesselection-rect:focus,.react-flow__nodesselection-rect:focus-visible{outline:none}.react-flow__edge-path{stroke:var(--xy-edge-stroke, var(--xy-edge-stroke-default));stroke-width:var(--xy-edge-stroke-width, var(--xy-edge-stroke-width-default));fill:none}.react-flow__connection-path{stroke:var(--xy-connectionline-stroke, var(--xy-connectionline-stroke-default));stroke-width:var(--xy-connectionline-stroke-width, var(--xy-connectionline-stroke-width-default));fill:none}.react-flow .react-flow__edges{position:absolute}.react-flow .react-flow__edges svg{overflow:visible;position:absolute;pointer-events:none}.react-flow__edge{pointer-events:visibleStroke}.react-flow__edge.selectable{cursor:pointer}.react-flow__edge.animated path{stroke-dasharray:5;animation:dashdraw .5s linear infinite}.react-flow__edge.animated path.react-flow__edge-interaction{stroke-dasharray:none;animation:none}.react-flow__edge.inactive{pointer-events:none}.react-flow__edge.selected,.react-flow__edge:focus,.react-flow__edge:focus-visible{outline:none}.react-flow__edge.selected .react-flow__edge-path,.react-flow__edge.selectable:focus .react-flow__edge-path,.react-flow__edge.selectable:focus-visible .react-flow__edge-path{stroke:var(--xy-edge-stroke-selected, var(--xy-edge-stroke-selected-default))}.react-flow__edge-textwrapper{pointer-events:all}.react-flow__edge .react-flow__edge-text{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.react-flow__connection{pointer-events:none}.react-flow__connection .animated{stroke-dasharray:5;animation:dashdraw .5s linear infinite}svg.react-flow__connectionline{z-index:1001;overflow:visible;position:absolute}.react-flow__nodes{pointer-events:none;transform-origin:0 0}.react-flow__node{position:absolute;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:all;transform-origin:0 0;box-sizing:border-box;cursor:default}.react-flow__node.selectable{cursor:pointer}.react-flow__node.draggable{cursor:grab;pointer-events:all}.react-flow__node.draggable.dragging{cursor:grabbing}.react-flow__nodesselection{z-index:3;transform-origin:left top;pointer-events:none}.react-flow__nodesselection-rect{position:absolute;pointer-events:all;cursor:grab}.react-flow__handle{position:absolute;pointer-events:none;min-width:5px;min-height:5px;width:6px;height:6px;background-color:var(--xy-handle-background-color, var(--xy-handle-background-color-default));border:1px solid var(--xy-handle-border-color, var(--xy-handle-border-color-default));border-radius:100%}.react-flow__handle.connectingfrom{pointer-events:all}.react-flow__handle.connectionindicator{pointer-events:all;cursor:crosshair}.react-flow__handle-bottom{top:auto;left:50%;bottom:0;transform:translate(-50%,50%)}.react-flow__handle-top{top:0;left:50%;transform:translate(-50%,-50%)}.react-flow__handle-left{top:50%;left:0;transform:translate(-50%,-50%)}.react-flow__handle-right{top:50%;right:0;transform:translate(50%,-50%)}.react-flow__edgeupdater{cursor:move;pointer-events:all}.react-flow__panel{position:absolute;z-index:5;margin:15px}.react-flow__panel.top{top:0}.react-flow__panel.bottom{bottom:0}.react-flow__panel.top.center,.react-flow__panel.bottom.center{left:50%;transform:translate(-50%)}.react-flow__panel.left{left:0}.react-flow__panel.right{right:0}.react-flow__panel.left.center,.react-flow__panel.right.center{top:50%;transform:translateY(-50%)}.react-flow__attribution{font-size:10px;background:var(--xy-attribution-background-color, var(--xy-attribution-background-color-default));padding:2px 3px;margin:0}.react-flow__attribution a{text-decoration:none;color:#999}@keyframes dashdraw{0%{stroke-dashoffset:10}}.react-flow__edgelabel-renderer{position:absolute;width:100%;height:100%;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;left:0;top:0}.react-flow__viewport-portal{position:absolute;width:100%;height:100%;left:0;top:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.react-flow__minimap{background:var(--xy-minimap-background-color-props, var(--xy-minimap-background-color, var(--xy-minimap-background-color-default)))}.react-flow__minimap-svg{display:block}.react-flow__minimap-mask{fill:var(--xy-minimap-mask-background-color-props, var(--xy-minimap-mask-background-color, var(--xy-minimap-mask-background-color-default)));stroke:var(--xy-minimap-mask-stroke-color-props, var(--xy-minimap-mask-stroke-color, var(--xy-minimap-mask-stroke-color-default)));stroke-width:var(--xy-minimap-mask-stroke-width-props, var(--xy-minimap-mask-stroke-width, var(--xy-minimap-mask-stroke-width-default)))}.react-flow__minimap-node{fill:var(--xy-minimap-node-background-color-props, var(--xy-minimap-node-background-color, var(--xy-minimap-node-background-color-default)));stroke:var(--xy-minimap-node-stroke-color-props, var(--xy-minimap-node-stroke-color, var(--xy-minimap-node-stroke-color-default)));stroke-width:var(--xy-minimap-node-stroke-width-props, var(--xy-minimap-node-stroke-width, var(--xy-minimap-node-stroke-width-default)))}.react-flow__background-pattern.dots{fill:var(--xy-background-pattern-color-props, var(--xy-background-pattern-color, var(--xy-background-pattern-dots-color-default)))}.react-flow__background-pattern.lines{stroke:var(--xy-background-pattern-color-props, var(--xy-background-pattern-color, var(--xy-background-pattern-lines-color-default)))}.react-flow__background-pattern.cross{stroke:var(--xy-background-pattern-color-props, var(--xy-background-pattern-color, var(--xy-background-pattern-cross-color-default)))}.react-flow__controls{display:flex;flex-direction:column;box-shadow:var(--xy-controls-box-shadow, var(--xy-controls-box-shadow-default))}.react-flow__controls.horizontal{flex-direction:row}.react-flow__controls-button{display:flex;justify-content:center;align-items:center;height:26px;width:26px;padding:4px;border:none;background:var(--xy-controls-button-background-color, var(--xy-controls-button-background-color-default));border-bottom:1px solid var(--xy-controls-button-border-color-props, var(--xy-controls-button-border-color, var(--xy-controls-button-border-color-default)));color:var(--xy-controls-button-color-props, var(--xy-controls-button-color, var(--xy-controls-button-color-default)));cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.react-flow__controls-button svg{width:100%;max-width:12px;max-height:12px;fill:currentColor}.react-flow__edge.updating .react-flow__edge-path{stroke:#777}.react-flow__edge-text{font-size:10px}.react-flow__node.selectable:focus,.react-flow__node.selectable:focus-visible{outline:none}.react-flow__node-input,.react-flow__node-default,.react-flow__node-output,.react-flow__node-group{padding:10px;border-radius:var(--xy-node-border-radius, var(--xy-node-border-radius-default));width:150px;font-size:12px;color:var(--xy-node-color, var(--xy-node-color-default));text-align:center;border:var(--xy-node-border, var(--xy-node-border-default));background-color:var(--xy-node-background-color, var(--xy-node-background-color-default))}.react-flow__node-input.selectable:hover,.react-flow__node-default.selectable:hover,.react-flow__node-output.selectable:hover,.react-flow__node-group.selectable:hover{box-shadow:var(--xy-node-boxshadow-hover, var(--xy-node-boxshadow-hover-default))}.react-flow__node-input.selectable.selected,.react-flow__node-input.selectable:focus,.react-flow__node-input.selectable:focus-visible,.react-flow__node-default.selectable.selected,.react-flow__node-default.selectable:focus,.react-flow__node-default.selectable:focus-visible,.react-flow__node-output.selectable.selected,.react-flow__node-output.selectable:focus,.react-flow__node-output.selectable:focus-visible,.react-flow__node-group.selectable.selected,.react-flow__node-group.selectable:focus,.react-flow__node-group.selectable:focus-visible{box-shadow:var(--xy-node-boxshadow-selected, var(--xy-node-boxshadow-selected-default))}.react-flow__node-group{background-color:var(--xy-node-group-background-color, var(--xy-node-group-background-color-default))}.react-flow__nodesselection-rect,.react-flow__selection{background:var(--xy-selection-background-color, var(--xy-selection-background-color-default));border:var(--xy-selection-border, var(--xy-selection-border-default))}.react-flow__nodesselection-rect:focus,.react-flow__nodesselection-rect:focus-visible,.react-flow__selection:focus,.react-flow__selection:focus-visible{outline:none}.react-flow__controls-button:hover{background:var(--xy-controls-button-background-color-hover-props, var(--xy-controls-button-background-color-hover, var(--xy-controls-button-background-color-hover-default)));color:var(--xy-controls-button-color-hover-props, var(--xy-controls-button-color-hover, var(--xy-controls-button-color-hover-default)))}.react-flow__controls-button:disabled{pointer-events:none}.react-flow__controls-button:disabled svg{fill-opacity:.4}.react-flow__controls-button:last-child{border-bottom:none}.react-flow__resize-control{position:absolute}.react-flow__resize-control.left,.react-flow__resize-control.right{cursor:ew-resize}.react-flow__resize-control.top,.react-flow__resize-control.bottom{cursor:ns-resize}.react-flow__resize-control.top.left,.react-flow__resize-control.bottom.right{cursor:nwse-resize}.react-flow__resize-control.bottom.left,.react-flow__resize-control.top.right{cursor:nesw-resize}.react-flow__resize-control.handle{width:4px;height:4px;border:1px solid #fff;border-radius:1px;background-color:var(--xy-resize-background-color, var(--xy-resize-background-color-default));transform:translate(-50%,-50%)}.react-flow__resize-control.handle.left{left:0;top:50%}.react-flow__resize-control.handle.right{left:100%;top:50%}.react-flow__resize-control.handle.top{left:50%;top:0}.react-flow__resize-control.handle.bottom{left:50%;top:100%}.react-flow__resize-control.handle.top.left,.react-flow__resize-control.handle.bottom.left{left:0}.react-flow__resize-control.handle.top.right,.react-flow__resize-control.handle.bottom.right{left:100%}.react-flow__resize-control.line{border-color:var(--xy-resize-background-color, var(--xy-resize-background-color-default));border-width:0;border-style:solid}.react-flow__resize-control.line.left,.react-flow__resize-control.line.right{width:1px;transform:translate(-50%);top:0;height:100%}.react-flow__resize-control.line.left{left:0;border-left-width:1px}.react-flow__resize-control.line.right{left:100%;border-right-width:1px}.react-flow__resize-control.line.top,.react-flow__resize-control.line.bottom{height:1px;transform:translateY(-50%);left:0;width:100%}.react-flow__resize-control.line.top{top:0;border-top-width:1px}.react-flow__resize-control.line.bottom{border-bottom-width:1px;top:100%}.react-flow__edge-textbg{fill:var(--xy-edge-label-background-color, var(--xy-edge-label-background-color-default))}.react-flow__edge-text{fill:var(--xy-edge-label-color, var(--xy-edge-label-color-default))}.float-container{display:flex}.direction-row{flex-direction:row}.direction-column{flex-direction:column}.flex-wrap{flex-wrap:wrap}.size-context .direction-row{flex-direction:row}.size-context .direction-column{flex-direction:column}.size-context .grow{flex-grow:1}.size-context .no-grow{flex-grow:0}.size-context .full-width{width:100%}.size-context .w-1{width:8.3333333333%}.size-context .w-2{width:16.6666666667%}.size-context .w-3{width:25%}.size-context .w-4{width:33.3333333333%}.size-context .w-5{width:41.6666666667%}.size-context .w-6{width:50%}.size-context .w-7{width:58.3333333333%}.size-context .w-8{width:66.6666666667%}.size-context .w-9{width:75%}.size-context .w-10{width:83.3333333333%}.size-context .w-11{width:91.6666666667%}.size-context .w-12{width:100%}.size-context .h-1{height:8.3333333333%}.size-context .h-2{height:16.6666666667%}.size-context .h-3{height:25%}.size-context .h-4{height:33.3333333333%}.size-context .h-5{height:41.6666666667%}.size-context .h-6{height:50%}.size-context .h-7{height:58.3333333333%}.size-context .h-8{height:66.6666666667%}.size-context .h-9{height:75%}.size-context .h-10{height:83.3333333333%}.size-context .h-11{height:91.6666666667%}.size-context .h-12{height:100%}.size-context.w-xxs .xxs-direction-row{flex-direction:row}.size-context.w-xxs .xxs-direction-column{flex-direction:column}.size-context.w-xxs .xxs-grow{flex-grow:1}.size-context.w-xxs .xxs-no-grow{flex-grow:0}.size-context.w-xxs .xxs-full-width{width:100%}.size-context.w-xxs .xxs-w-1{width:8.3333333333%}.size-context.w-xxs .xxs-w-2{width:16.6666666667%}.size-context.w-xxs .xxs-w-3{width:25%}.size-context.w-xxs .xxs-w-4{width:33.3333333333%}.size-context.w-xxs .xxs-w-5{width:41.6666666667%}.size-context.w-xxs .xxs-w-6{width:50%}.size-context.w-xxs .xxs-w-7{width:58.3333333333%}.size-context.w-xxs .xxs-w-8{width:66.6666666667%}.size-context.w-xxs .xxs-w-9{width:75%}.size-context.w-xxs .xxs-w-10{width:83.3333333333%}.size-context.w-xxs .xxs-w-11{width:91.6666666667%}.size-context.w-xxs .xxs-w-12{width:100%}.size-context.w-xxs .xxs-h-1{height:8.3333333333%}.size-context.w-xxs .xxs-h-2{height:16.6666666667%}.size-context.w-xxs .xxs-h-3{height:25%}.size-context.w-xxs .xxs-h-4{height:33.3333333333%}.size-context.w-xxs .xxs-h-5{height:41.6666666667%}.size-context.w-xxs .xxs-h-6{height:50%}.size-context.w-xxs .xxs-h-7{height:58.3333333333%}.size-context.w-xxs .xxs-h-8{height:66.6666666667%}.size-context.w-xxs .xxs-h-9{height:75%}.size-context.w-xxs .xxs-h-10{height:83.3333333333%}.size-context.w-xxs .xxs-h-11{height:91.6666666667%}.size-context.w-xxs .xxs-h-12{height:100%}.size-context.w-xs .xxs-direction-row{flex-direction:row}.size-context.w-xs .xxs-direction-column{flex-direction:column}.size-context.w-xs .xxs-grow{flex-grow:1}.size-context.w-xs .xxs-no-grow{flex-grow:0}.size-context.w-xs .xxs-full-width{width:100%}.size-context.w-xs .xxs-w-1{width:8.3333333333%}.size-context.w-xs .xxs-w-2{width:16.6666666667%}.size-context.w-xs .xxs-w-3{width:25%}.size-context.w-xs .xxs-w-4{width:33.3333333333%}.size-context.w-xs .xxs-w-5{width:41.6666666667%}.size-context.w-xs .xxs-w-6{width:50%}.size-context.w-xs .xxs-w-7{width:58.3333333333%}.size-context.w-xs .xxs-w-8{width:66.6666666667%}.size-context.w-xs .xxs-w-9{width:75%}.size-context.w-xs .xxs-w-10{width:83.3333333333%}.size-context.w-xs .xxs-w-11{width:91.6666666667%}.size-context.w-xs .xxs-w-12{width:100%}.size-context.w-xs .xxs-h-1{height:8.3333333333%}.size-context.w-xs .xxs-h-2{height:16.6666666667%}.size-context.w-xs .xxs-h-3{height:25%}.size-context.w-xs .xxs-h-4{height:33.3333333333%}.size-context.w-xs .xxs-h-5{height:41.6666666667%}.size-context.w-xs .xxs-h-6{height:50%}.size-context.w-xs .xxs-h-7{height:58.3333333333%}.size-context.w-xs .xxs-h-8{height:66.6666666667%}.size-context.w-xs .xxs-h-9{height:75%}.size-context.w-xs .xxs-h-10{height:83.3333333333%}.size-context.w-xs .xxs-h-11{height:91.6666666667%}.size-context.w-xs .xxs-h-12{height:100%}.size-context.w-xs .xs-direction-row{flex-direction:row}.size-context.w-xs .xs-direction-column{flex-direction:column}.size-context.w-xs .xs-grow{flex-grow:1}.size-context.w-xs .xs-no-grow{flex-grow:0}.size-context.w-xs .xs-full-width{width:100%}.size-context.w-xs .xs-w-1{width:8.3333333333%}.size-context.w-xs .xs-w-2{width:16.6666666667%}.size-context.w-xs .xs-w-3{width:25%}.size-context.w-xs .xs-w-4{width:33.3333333333%}.size-context.w-xs .xs-w-5{width:41.6666666667%}.size-context.w-xs .xs-w-6{width:50%}.size-context.w-xs .xs-w-7{width:58.3333333333%}.size-context.w-xs .xs-w-8{width:66.6666666667%}.size-context.w-xs .xs-w-9{width:75%}.size-context.w-xs .xs-w-10{width:83.3333333333%}.size-context.w-xs .xs-w-11{width:91.6666666667%}.size-context.w-xs .xs-w-12{width:100%}.size-context.w-xs .xs-h-1{height:8.3333333333%}.size-context.w-xs .xs-h-2{height:16.6666666667%}.size-context.w-xs .xs-h-3{height:25%}.size-context.w-xs .xs-h-4{height:33.3333333333%}.size-context.w-xs .xs-h-5{height:41.6666666667%}.size-context.w-xs .xs-h-6{height:50%}.size-context.w-xs .xs-h-7{height:58.3333333333%}.size-context.w-xs .xs-h-8{height:66.6666666667%}.size-context.w-xs .xs-h-9{height:75%}.size-context.w-xs .xs-h-10{height:83.3333333333%}.size-context.w-xs .xs-h-11{height:91.6666666667%}.size-context.w-xs .xs-h-12{height:100%}.size-context.w-s .xxs-direction-row{flex-direction:row}.size-context.w-s .xxs-direction-column{flex-direction:column}.size-context.w-s .xxs-grow{flex-grow:1}.size-context.w-s .xxs-no-grow{flex-grow:0}.size-context.w-s .xxs-full-width{width:100%}.size-context.w-s .xxs-w-1{width:8.3333333333%}.size-context.w-s .xxs-w-2{width:16.6666666667%}.size-context.w-s .xxs-w-3{width:25%}.size-context.w-s .xxs-w-4{width:33.3333333333%}.size-context.w-s .xxs-w-5{width:41.6666666667%}.size-context.w-s .xxs-w-6{width:50%}.size-context.w-s .xxs-w-7{width:58.3333333333%}.size-context.w-s .xxs-w-8{width:66.6666666667%}.size-context.w-s .xxs-w-9{width:75%}.size-context.w-s .xxs-w-10{width:83.3333333333%}.size-context.w-s .xxs-w-11{width:91.6666666667%}.size-context.w-s .xxs-w-12{width:100%}.size-context.w-s .xxs-h-1{height:8.3333333333%}.size-context.w-s .xxs-h-2{height:16.6666666667%}.size-context.w-s .xxs-h-3{height:25%}.size-context.w-s .xxs-h-4{height:33.3333333333%}.size-context.w-s .xxs-h-5{height:41.6666666667%}.size-context.w-s .xxs-h-6{height:50%}.size-context.w-s .xxs-h-7{height:58.3333333333%}.size-context.w-s .xxs-h-8{height:66.6666666667%}.size-context.w-s .xxs-h-9{height:75%}.size-context.w-s .xxs-h-10{height:83.3333333333%}.size-context.w-s .xxs-h-11{height:91.6666666667%}.size-context.w-s .xxs-h-12{height:100%}.size-context.w-s .xs-direction-row{flex-direction:row}.size-context.w-s .xs-direction-column{flex-direction:column}.size-context.w-s .xs-grow{flex-grow:1}.size-context.w-s .xs-no-grow{flex-grow:0}.size-context.w-s .xs-full-width{width:100%}.size-context.w-s .xs-w-1{width:8.3333333333%}.size-context.w-s .xs-w-2{width:16.6666666667%}.size-context.w-s .xs-w-3{width:25%}.size-context.w-s .xs-w-4{width:33.3333333333%}.size-context.w-s .xs-w-5{width:41.6666666667%}.size-context.w-s .xs-w-6{width:50%}.size-context.w-s .xs-w-7{width:58.3333333333%}.size-context.w-s .xs-w-8{width:66.6666666667%}.size-context.w-s .xs-w-9{width:75%}.size-context.w-s .xs-w-10{width:83.3333333333%}.size-context.w-s .xs-w-11{width:91.6666666667%}.size-context.w-s .xs-w-12{width:100%}.size-context.w-s .xs-h-1{height:8.3333333333%}.size-context.w-s .xs-h-2{height:16.6666666667%}.size-context.w-s .xs-h-3{height:25%}.size-context.w-s .xs-h-4{height:33.3333333333%}.size-context.w-s .xs-h-5{height:41.6666666667%}.size-context.w-s .xs-h-6{height:50%}.size-context.w-s .xs-h-7{height:58.3333333333%}.size-context.w-s .xs-h-8{height:66.6666666667%}.size-context.w-s .xs-h-9{height:75%}.size-context.w-s .xs-h-10{height:83.3333333333%}.size-context.w-s .xs-h-11{height:91.6666666667%}.size-context.w-s .xs-h-12{height:100%}.size-context.w-s .s-direction-row{flex-direction:row}.size-context.w-s .s-direction-column{flex-direction:column}.size-context.w-s .s-grow{flex-grow:1}.size-context.w-s .s-no-grow{flex-grow:0}.size-context.w-s .s-full-width{width:100%}.size-context.w-s .s-w-1{width:8.3333333333%}.size-context.w-s .s-w-2{width:16.6666666667%}.size-context.w-s .s-w-3{width:25%}.size-context.w-s .s-w-4{width:33.3333333333%}.size-context.w-s .s-w-5{width:41.6666666667%}.size-context.w-s .s-w-6{width:50%}.size-context.w-s .s-w-7{width:58.3333333333%}.size-context.w-s .s-w-8{width:66.6666666667%}.size-context.w-s .s-w-9{width:75%}.size-context.w-s .s-w-10{width:83.3333333333%}.size-context.w-s .s-w-11{width:91.6666666667%}.size-context.w-s .s-w-12{width:100%}.size-context.w-s .s-h-1{height:8.3333333333%}.size-context.w-s .s-h-2{height:16.6666666667%}.size-context.w-s .s-h-3{height:25%}.size-context.w-s .s-h-4{height:33.3333333333%}.size-context.w-s .s-h-5{height:41.6666666667%}.size-context.w-s .s-h-6{height:50%}.size-context.w-s .s-h-7{height:58.3333333333%}.size-context.w-s .s-h-8{height:66.6666666667%}.size-context.w-s .s-h-9{height:75%}.size-context.w-s .s-h-10{height:83.3333333333%}.size-context.w-s .s-h-11{height:91.6666666667%}.size-context.w-s .s-h-12{height:100%}.size-context.w-m .xxs-direction-row{flex-direction:row}.size-context.w-m .xxs-direction-column{flex-direction:column}.size-context.w-m .xxs-grow{flex-grow:1}.size-context.w-m .xxs-no-grow{flex-grow:0}.size-context.w-m .xxs-full-width{width:100%}.size-context.w-m .xxs-w-1{width:8.3333333333%}.size-context.w-m .xxs-w-2{width:16.6666666667%}.size-context.w-m .xxs-w-3{width:25%}.size-context.w-m .xxs-w-4{width:33.3333333333%}.size-context.w-m .xxs-w-5{width:41.6666666667%}.size-context.w-m .xxs-w-6{width:50%}.size-context.w-m .xxs-w-7{width:58.3333333333%}.size-context.w-m .xxs-w-8{width:66.6666666667%}.size-context.w-m .xxs-w-9{width:75%}.size-context.w-m .xxs-w-10{width:83.3333333333%}.size-context.w-m .xxs-w-11{width:91.6666666667%}.size-context.w-m .xxs-w-12{width:100%}.size-context.w-m .xxs-h-1{height:8.3333333333%}.size-context.w-m .xxs-h-2{height:16.6666666667%}.size-context.w-m .xxs-h-3{height:25%}.size-context.w-m .xxs-h-4{height:33.3333333333%}.size-context.w-m .xxs-h-5{height:41.6666666667%}.size-context.w-m .xxs-h-6{height:50%}.size-context.w-m .xxs-h-7{height:58.3333333333%}.size-context.w-m .xxs-h-8{height:66.6666666667%}.size-context.w-m .xxs-h-9{height:75%}.size-context.w-m .xxs-h-10{height:83.3333333333%}.size-context.w-m .xxs-h-11{height:91.6666666667%}.size-context.w-m .xxs-h-12{height:100%}.size-context.w-m .xs-direction-row{flex-direction:row}.size-context.w-m .xs-direction-column{flex-direction:column}.size-context.w-m .xs-grow{flex-grow:1}.size-context.w-m .xs-no-grow{flex-grow:0}.size-context.w-m .xs-full-width{width:100%}.size-context.w-m .xs-w-1{width:8.3333333333%}.size-context.w-m .xs-w-2{width:16.6666666667%}.size-context.w-m .xs-w-3{width:25%}.size-context.w-m .xs-w-4{width:33.3333333333%}.size-context.w-m .xs-w-5{width:41.6666666667%}.size-context.w-m .xs-w-6{width:50%}.size-context.w-m .xs-w-7{width:58.3333333333%}.size-context.w-m .xs-w-8{width:66.6666666667%}.size-context.w-m .xs-w-9{width:75%}.size-context.w-m .xs-w-10{width:83.3333333333%}.size-context.w-m .xs-w-11{width:91.6666666667%}.size-context.w-m .xs-w-12{width:100%}.size-context.w-m .xs-h-1{height:8.3333333333%}.size-context.w-m .xs-h-2{height:16.6666666667%}.size-context.w-m .xs-h-3{height:25%}.size-context.w-m .xs-h-4{height:33.3333333333%}.size-context.w-m .xs-h-5{height:41.6666666667%}.size-context.w-m .xs-h-6{height:50%}.size-context.w-m .xs-h-7{height:58.3333333333%}.size-context.w-m .xs-h-8{height:66.6666666667%}.size-context.w-m .xs-h-9{height:75%}.size-context.w-m .xs-h-10{height:83.3333333333%}.size-context.w-m .xs-h-11{height:91.6666666667%}.size-context.w-m .xs-h-12{height:100%}.size-context.w-m .s-direction-row{flex-direction:row}.size-context.w-m .s-direction-column{flex-direction:column}.size-context.w-m .s-grow{flex-grow:1}.size-context.w-m .s-no-grow{flex-grow:0}.size-context.w-m .s-full-width{width:100%}.size-context.w-m .s-w-1{width:8.3333333333%}.size-context.w-m .s-w-2{width:16.6666666667%}.size-context.w-m .s-w-3{width:25%}.size-context.w-m .s-w-4{width:33.3333333333%}.size-context.w-m .s-w-5{width:41.6666666667%}.size-context.w-m .s-w-6{width:50%}.size-context.w-m .s-w-7{width:58.3333333333%}.size-context.w-m .s-w-8{width:66.6666666667%}.size-context.w-m .s-w-9{width:75%}.size-context.w-m .s-w-10{width:83.3333333333%}.size-context.w-m .s-w-11{width:91.6666666667%}.size-context.w-m .s-w-12{width:100%}.size-context.w-m .s-h-1{height:8.3333333333%}.size-context.w-m .s-h-2{height:16.6666666667%}.size-context.w-m .s-h-3{height:25%}.size-context.w-m .s-h-4{height:33.3333333333%}.size-context.w-m .s-h-5{height:41.6666666667%}.size-context.w-m .s-h-6{height:50%}.size-context.w-m .s-h-7{height:58.3333333333%}.size-context.w-m .s-h-8{height:66.6666666667%}.size-context.w-m .s-h-9{height:75%}.size-context.w-m .s-h-10{height:83.3333333333%}.size-context.w-m .s-h-11{height:91.6666666667%}.size-context.w-m .s-h-12{height:100%}.size-context.w-m .m-direction-row{flex-direction:row}.size-context.w-m .m-direction-column{flex-direction:column}.size-context.w-m .m-grow{flex-grow:1}.size-context.w-m .m-no-grow{flex-grow:0}.size-context.w-m .m-full-width{width:100%}.size-context.w-m .m-w-1{width:8.3333333333%}.size-context.w-m .m-w-2{width:16.6666666667%}.size-context.w-m .m-w-3{width:25%}.size-context.w-m .m-w-4{width:33.3333333333%}.size-context.w-m .m-w-5{width:41.6666666667%}.size-context.w-m .m-w-6{width:50%}.size-context.w-m .m-w-7{width:58.3333333333%}.size-context.w-m .m-w-8{width:66.6666666667%}.size-context.w-m .m-w-9{width:75%}.size-context.w-m .m-w-10{width:83.3333333333%}.size-context.w-m .m-w-11{width:91.6666666667%}.size-context.w-m .m-w-12{width:100%}.size-context.w-m .m-h-1{height:8.3333333333%}.size-context.w-m .m-h-2{height:16.6666666667%}.size-context.w-m .m-h-3{height:25%}.size-context.w-m .m-h-4{height:33.3333333333%}.size-context.w-m .m-h-5{height:41.6666666667%}.size-context.w-m .m-h-6{height:50%}.size-context.w-m .m-h-7{height:58.3333333333%}.size-context.w-m .m-h-8{height:66.6666666667%}.size-context.w-m .m-h-9{height:75%}.size-context.w-m .m-h-10{height:83.3333333333%}.size-context.w-m .m-h-11{height:91.6666666667%}.size-context.w-m .m-h-12{height:100%}.size-context.w-l .xxs-direction-row{flex-direction:row}.size-context.w-l .xxs-direction-column{flex-direction:column}.size-context.w-l .xxs-grow{flex-grow:1}.size-context.w-l .xxs-no-grow{flex-grow:0}.size-context.w-l .xxs-full-width{width:100%}.size-context.w-l .xxs-w-1{width:8.3333333333%}.size-context.w-l .xxs-w-2{width:16.6666666667%}.size-context.w-l .xxs-w-3{width:25%}.size-context.w-l .xxs-w-4{width:33.3333333333%}.size-context.w-l .xxs-w-5{width:41.6666666667%}.size-context.w-l .xxs-w-6{width:50%}.size-context.w-l .xxs-w-7{width:58.3333333333%}.size-context.w-l .xxs-w-8{width:66.6666666667%}.size-context.w-l .xxs-w-9{width:75%}.size-context.w-l .xxs-w-10{width:83.3333333333%}.size-context.w-l .xxs-w-11{width:91.6666666667%}.size-context.w-l .xxs-w-12{width:100%}.size-context.w-l .xxs-h-1{height:8.3333333333%}.size-context.w-l .xxs-h-2{height:16.6666666667%}.size-context.w-l .xxs-h-3{height:25%}.size-context.w-l .xxs-h-4{height:33.3333333333%}.size-context.w-l .xxs-h-5{height:41.6666666667%}.size-context.w-l .xxs-h-6{height:50%}.size-context.w-l .xxs-h-7{height:58.3333333333%}.size-context.w-l .xxs-h-8{height:66.6666666667%}.size-context.w-l .xxs-h-9{height:75%}.size-context.w-l .xxs-h-10{height:83.3333333333%}.size-context.w-l .xxs-h-11{height:91.6666666667%}.size-context.w-l .xxs-h-12{height:100%}.size-context.w-l .xs-direction-row{flex-direction:row}.size-context.w-l .xs-direction-column{flex-direction:column}.size-context.w-l .xs-grow{flex-grow:1}.size-context.w-l .xs-no-grow{flex-grow:0}.size-context.w-l .xs-full-width{width:100%}.size-context.w-l .xs-w-1{width:8.3333333333%}.size-context.w-l .xs-w-2{width:16.6666666667%}.size-context.w-l .xs-w-3{width:25%}.size-context.w-l .xs-w-4{width:33.3333333333%}.size-context.w-l .xs-w-5{width:41.6666666667%}.size-context.w-l .xs-w-6{width:50%}.size-context.w-l .xs-w-7{width:58.3333333333%}.size-context.w-l .xs-w-8{width:66.6666666667%}.size-context.w-l .xs-w-9{width:75%}.size-context.w-l .xs-w-10{width:83.3333333333%}.size-context.w-l .xs-w-11{width:91.6666666667%}.size-context.w-l .xs-w-12{width:100%}.size-context.w-l .xs-h-1{height:8.3333333333%}.size-context.w-l .xs-h-2{height:16.6666666667%}.size-context.w-l .xs-h-3{height:25%}.size-context.w-l .xs-h-4{height:33.3333333333%}.size-context.w-l .xs-h-5{height:41.6666666667%}.size-context.w-l .xs-h-6{height:50%}.size-context.w-l .xs-h-7{height:58.3333333333%}.size-context.w-l .xs-h-8{height:66.6666666667%}.size-context.w-l .xs-h-9{height:75%}.size-context.w-l .xs-h-10{height:83.3333333333%}.size-context.w-l .xs-h-11{height:91.6666666667%}.size-context.w-l .xs-h-12{height:100%}.size-context.w-l .s-direction-row{flex-direction:row}.size-context.w-l .s-direction-column{flex-direction:column}.size-context.w-l .s-grow{flex-grow:1}.size-context.w-l .s-no-grow{flex-grow:0}.size-context.w-l .s-full-width{width:100%}.size-context.w-l .s-w-1{width:8.3333333333%}.size-context.w-l .s-w-2{width:16.6666666667%}.size-context.w-l .s-w-3{width:25%}.size-context.w-l .s-w-4{width:33.3333333333%}.size-context.w-l .s-w-5{width:41.6666666667%}.size-context.w-l .s-w-6{width:50%}.size-context.w-l .s-w-7{width:58.3333333333%}.size-context.w-l .s-w-8{width:66.6666666667%}.size-context.w-l .s-w-9{width:75%}.size-context.w-l .s-w-10{width:83.3333333333%}.size-context.w-l .s-w-11{width:91.6666666667%}.size-context.w-l .s-w-12{width:100%}.size-context.w-l .s-h-1{height:8.3333333333%}.size-context.w-l .s-h-2{height:16.6666666667%}.size-context.w-l .s-h-3{height:25%}.size-context.w-l .s-h-4{height:33.3333333333%}.size-context.w-l .s-h-5{height:41.6666666667%}.size-context.w-l .s-h-6{height:50%}.size-context.w-l .s-h-7{height:58.3333333333%}.size-context.w-l .s-h-8{height:66.6666666667%}.size-context.w-l .s-h-9{height:75%}.size-context.w-l .s-h-10{height:83.3333333333%}.size-context.w-l .s-h-11{height:91.6666666667%}.size-context.w-l .s-h-12{height:100%}.size-context.w-l .m-direction-row{flex-direction:row}.size-context.w-l .m-direction-column{flex-direction:column}.size-context.w-l .m-grow{flex-grow:1}.size-context.w-l .m-no-grow{flex-grow:0}.size-context.w-l .m-full-width{width:100%}.size-context.w-l .m-w-1{width:8.3333333333%}.size-context.w-l .m-w-2{width:16.6666666667%}.size-context.w-l .m-w-3{width:25%}.size-context.w-l .m-w-4{width:33.3333333333%}.size-context.w-l .m-w-5{width:41.6666666667%}.size-context.w-l .m-w-6{width:50%}.size-context.w-l .m-w-7{width:58.3333333333%}.size-context.w-l .m-w-8{width:66.6666666667%}.size-context.w-l .m-w-9{width:75%}.size-context.w-l .m-w-10{width:83.3333333333%}.size-context.w-l .m-w-11{width:91.6666666667%}.size-context.w-l .m-w-12{width:100%}.size-context.w-l .m-h-1{height:8.3333333333%}.size-context.w-l .m-h-2{height:16.6666666667%}.size-context.w-l .m-h-3{height:25%}.size-context.w-l .m-h-4{height:33.3333333333%}.size-context.w-l .m-h-5{height:41.6666666667%}.size-context.w-l .m-h-6{height:50%}.size-context.w-l .m-h-7{height:58.3333333333%}.size-context.w-l .m-h-8{height:66.6666666667%}.size-context.w-l .m-h-9{height:75%}.size-context.w-l .m-h-10{height:83.3333333333%}.size-context.w-l .m-h-11{height:91.6666666667%}.size-context.w-l .m-h-12{height:100%}.size-context.w-l .l-direction-row{flex-direction:row}.size-context.w-l .l-direction-column{flex-direction:column}.size-context.w-l .l-grow{flex-grow:1}.size-context.w-l .l-no-grow{flex-grow:0}.size-context.w-l .l-full-width{width:100%}.size-context.w-l .l-w-1{width:8.3333333333%}.size-context.w-l .l-w-2{width:16.6666666667%}.size-context.w-l .l-w-3{width:25%}.size-context.w-l .l-w-4{width:33.3333333333%}.size-context.w-l .l-w-5{width:41.6666666667%}.size-context.w-l .l-w-6{width:50%}.size-context.w-l .l-w-7{width:58.3333333333%}.size-context.w-l .l-w-8{width:66.6666666667%}.size-context.w-l .l-w-9{width:75%}.size-context.w-l .l-w-10{width:83.3333333333%}.size-context.w-l .l-w-11{width:91.6666666667%}.size-context.w-l .l-w-12{width:100%}.size-context.w-l .l-h-1{height:8.3333333333%}.size-context.w-l .l-h-2{height:16.6666666667%}.size-context.w-l .l-h-3{height:25%}.size-context.w-l .l-h-4{height:33.3333333333%}.size-context.w-l .l-h-5{height:41.6666666667%}.size-context.w-l .l-h-6{height:50%}.size-context.w-l .l-h-7{height:58.3333333333%}.size-context.w-l .l-h-8{height:66.6666666667%}.size-context.w-l .l-h-9{height:75%}.size-context.w-l .l-h-10{height:83.3333333333%}.size-context.w-l .l-h-11{height:91.6666666667%}.size-context.w-l .l-h-12{height:100%}.size-context.w-xl .xxs-direction-row{flex-direction:row}.size-context.w-xl .xxs-direction-column{flex-direction:column}.size-context.w-xl .xxs-grow{flex-grow:1}.size-context.w-xl .xxs-no-grow{flex-grow:0}.size-context.w-xl .xxs-full-width{width:100%}.size-context.w-xl .xxs-w-1{width:8.3333333333%}.size-context.w-xl .xxs-w-2{width:16.6666666667%}.size-context.w-xl .xxs-w-3{width:25%}.size-context.w-xl .xxs-w-4{width:33.3333333333%}.size-context.w-xl .xxs-w-5{width:41.6666666667%}.size-context.w-xl .xxs-w-6{width:50%}.size-context.w-xl .xxs-w-7{width:58.3333333333%}.size-context.w-xl .xxs-w-8{width:66.6666666667%}.size-context.w-xl .xxs-w-9{width:75%}.size-context.w-xl .xxs-w-10{width:83.3333333333%}.size-context.w-xl .xxs-w-11{width:91.6666666667%}.size-context.w-xl .xxs-w-12{width:100%}.size-context.w-xl .xxs-h-1{height:8.3333333333%}.size-context.w-xl .xxs-h-2{height:16.6666666667%}.size-context.w-xl .xxs-h-3{height:25%}.size-context.w-xl .xxs-h-4{height:33.3333333333%}.size-context.w-xl .xxs-h-5{height:41.6666666667%}.size-context.w-xl .xxs-h-6{height:50%}.size-context.w-xl .xxs-h-7{height:58.3333333333%}.size-context.w-xl .xxs-h-8{height:66.6666666667%}.size-context.w-xl .xxs-h-9{height:75%}.size-context.w-xl .xxs-h-10{height:83.3333333333%}.size-context.w-xl .xxs-h-11{height:91.6666666667%}.size-context.w-xl .xxs-h-12{height:100%}.size-context.w-xl .xs-direction-row{flex-direction:row}.size-context.w-xl .xs-direction-column{flex-direction:column}.size-context.w-xl .xs-grow{flex-grow:1}.size-context.w-xl .xs-no-grow{flex-grow:0}.size-context.w-xl .xs-full-width{width:100%}.size-context.w-xl .xs-w-1{width:8.3333333333%}.size-context.w-xl .xs-w-2{width:16.6666666667%}.size-context.w-xl .xs-w-3{width:25%}.size-context.w-xl .xs-w-4{width:33.3333333333%}.size-context.w-xl .xs-w-5{width:41.6666666667%}.size-context.w-xl .xs-w-6{width:50%}.size-context.w-xl .xs-w-7{width:58.3333333333%}.size-context.w-xl .xs-w-8{width:66.6666666667%}.size-context.w-xl .xs-w-9{width:75%}.size-context.w-xl .xs-w-10{width:83.3333333333%}.size-context.w-xl .xs-w-11{width:91.6666666667%}.size-context.w-xl .xs-w-12{width:100%}.size-context.w-xl .xs-h-1{height:8.3333333333%}.size-context.w-xl .xs-h-2{height:16.6666666667%}.size-context.w-xl .xs-h-3{height:25%}.size-context.w-xl .xs-h-4{height:33.3333333333%}.size-context.w-xl .xs-h-5{height:41.6666666667%}.size-context.w-xl .xs-h-6{height:50%}.size-context.w-xl .xs-h-7{height:58.3333333333%}.size-context.w-xl .xs-h-8{height:66.6666666667%}.size-context.w-xl .xs-h-9{height:75%}.size-context.w-xl .xs-h-10{height:83.3333333333%}.size-context.w-xl .xs-h-11{height:91.6666666667%}.size-context.w-xl .xs-h-12{height:100%}.size-context.w-xl .s-direction-row{flex-direction:row}.size-context.w-xl .s-direction-column{flex-direction:column}.size-context.w-xl .s-grow{flex-grow:1}.size-context.w-xl .s-no-grow{flex-grow:0}.size-context.w-xl .s-full-width{width:100%}.size-context.w-xl .s-w-1{width:8.3333333333%}.size-context.w-xl .s-w-2{width:16.6666666667%}.size-context.w-xl .s-w-3{width:25%}.size-context.w-xl .s-w-4{width:33.3333333333%}.size-context.w-xl .s-w-5{width:41.6666666667%}.size-context.w-xl .s-w-6{width:50%}.size-context.w-xl .s-w-7{width:58.3333333333%}.size-context.w-xl .s-w-8{width:66.6666666667%}.size-context.w-xl .s-w-9{width:75%}.size-context.w-xl .s-w-10{width:83.3333333333%}.size-context.w-xl .s-w-11{width:91.6666666667%}.size-context.w-xl .s-w-12{width:100%}.size-context.w-xl .s-h-1{height:8.3333333333%}.size-context.w-xl .s-h-2{height:16.6666666667%}.size-context.w-xl .s-h-3{height:25%}.size-context.w-xl .s-h-4{height:33.3333333333%}.size-context.w-xl .s-h-5{height:41.6666666667%}.size-context.w-xl .s-h-6{height:50%}.size-context.w-xl .s-h-7{height:58.3333333333%}.size-context.w-xl .s-h-8{height:66.6666666667%}.size-context.w-xl .s-h-9{height:75%}.size-context.w-xl .s-h-10{height:83.3333333333%}.size-context.w-xl .s-h-11{height:91.6666666667%}.size-context.w-xl .s-h-12{height:100%}.size-context.w-xl .m-direction-row{flex-direction:row}.size-context.w-xl .m-direction-column{flex-direction:column}.size-context.w-xl .m-grow{flex-grow:1}.size-context.w-xl .m-no-grow{flex-grow:0}.size-context.w-xl .m-full-width{width:100%}.size-context.w-xl .m-w-1{width:8.3333333333%}.size-context.w-xl .m-w-2{width:16.6666666667%}.size-context.w-xl .m-w-3{width:25%}.size-context.w-xl .m-w-4{width:33.3333333333%}.size-context.w-xl .m-w-5{width:41.6666666667%}.size-context.w-xl .m-w-6{width:50%}.size-context.w-xl .m-w-7{width:58.3333333333%}.size-context.w-xl .m-w-8{width:66.6666666667%}.size-context.w-xl .m-w-9{width:75%}.size-context.w-xl .m-w-10{width:83.3333333333%}.size-context.w-xl .m-w-11{width:91.6666666667%}.size-context.w-xl .m-w-12{width:100%}.size-context.w-xl .m-h-1{height:8.3333333333%}.size-context.w-xl .m-h-2{height:16.6666666667%}.size-context.w-xl .m-h-3{height:25%}.size-context.w-xl .m-h-4{height:33.3333333333%}.size-context.w-xl .m-h-5{height:41.6666666667%}.size-context.w-xl .m-h-6{height:50%}.size-context.w-xl .m-h-7{height:58.3333333333%}.size-context.w-xl .m-h-8{height:66.6666666667%}.size-context.w-xl .m-h-9{height:75%}.size-context.w-xl .m-h-10{height:83.3333333333%}.size-context.w-xl .m-h-11{height:91.6666666667%}.size-context.w-xl .m-h-12{height:100%}.size-context.w-xl .l-direction-row{flex-direction:row}.size-context.w-xl .l-direction-column{flex-direction:column}.size-context.w-xl .l-grow{flex-grow:1}.size-context.w-xl .l-no-grow{flex-grow:0}.size-context.w-xl .l-full-width{width:100%}.size-context.w-xl .l-w-1{width:8.3333333333%}.size-context.w-xl .l-w-2{width:16.6666666667%}.size-context.w-xl .l-w-3{width:25%}.size-context.w-xl .l-w-4{width:33.3333333333%}.size-context.w-xl .l-w-5{width:41.6666666667%}.size-context.w-xl .l-w-6{width:50%}.size-context.w-xl .l-w-7{width:58.3333333333%}.size-context.w-xl .l-w-8{width:66.6666666667%}.size-context.w-xl .l-w-9{width:75%}.size-context.w-xl .l-w-10{width:83.3333333333%}.size-context.w-xl .l-w-11{width:91.6666666667%}.size-context.w-xl .l-w-12{width:100%}.size-context.w-xl .l-h-1{height:8.3333333333%}.size-context.w-xl .l-h-2{height:16.6666666667%}.size-context.w-xl .l-h-3{height:25%}.size-context.w-xl .l-h-4{height:33.3333333333%}.size-context.w-xl .l-h-5{height:41.6666666667%}.size-context.w-xl .l-h-6{height:50%}.size-context.w-xl .l-h-7{height:58.3333333333%}.size-context.w-xl .l-h-8{height:66.6666666667%}.size-context.w-xl .l-h-9{height:75%}.size-context.w-xl .l-h-10{height:83.3333333333%}.size-context.w-xl .l-h-11{height:91.6666666667%}.size-context.w-xl .l-h-12{height:100%}.size-context.w-xl .xl-direction-row{flex-direction:row}.size-context.w-xl .xl-direction-column{flex-direction:column}.size-context.w-xl .xl-grow{flex-grow:1}.size-context.w-xl .xl-no-grow{flex-grow:0}.size-context.w-xl .xl-full-width{width:100%}.size-context.w-xl .xl-w-1{width:8.3333333333%}.size-context.w-xl .xl-w-2{width:16.6666666667%}.size-context.w-xl .xl-w-3{width:25%}.size-context.w-xl .xl-w-4{width:33.3333333333%}.size-context.w-xl .xl-w-5{width:41.6666666667%}.size-context.w-xl .xl-w-6{width:50%}.size-context.w-xl .xl-w-7{width:58.3333333333%}.size-context.w-xl .xl-w-8{width:66.6666666667%}.size-context.w-xl .xl-w-9{width:75%}.size-context.w-xl .xl-w-10{width:83.3333333333%}.size-context.w-xl .xl-w-11{width:91.6666666667%}.size-context.w-xl .xl-w-12{width:100%}.size-context.w-xl .xl-h-1{height:8.3333333333%}.size-context.w-xl .xl-h-2{height:16.6666666667%}.size-context.w-xl .xl-h-3{height:25%}.size-context.w-xl .xl-h-4{height:33.3333333333%}.size-context.w-xl .xl-h-5{height:41.6666666667%}.size-context.w-xl .xl-h-6{height:50%}.size-context.w-xl .xl-h-7{height:58.3333333333%}.size-context.w-xl .xl-h-8{height:66.6666666667%}.size-context.w-xl .xl-h-9{height:75%}.size-context.w-xl .xl-h-10{height:83.3333333333%}.size-context.w-xl .xl-h-11{height:91.6666666667%}.size-context.w-xl .xl-h-12{height:100%}.size-context.w-xxl .xxs-direction-row{flex-direction:row}.size-context.w-xxl .xxs-direction-column{flex-direction:column}.size-context.w-xxl .xxs-grow{flex-grow:1}.size-context.w-xxl .xxs-no-grow{flex-grow:0}.size-context.w-xxl .xxs-full-width{width:100%}.size-context.w-xxl .xxs-w-1{width:8.3333333333%}.size-context.w-xxl .xxs-w-2{width:16.6666666667%}.size-context.w-xxl .xxs-w-3{width:25%}.size-context.w-xxl .xxs-w-4{width:33.3333333333%}.size-context.w-xxl .xxs-w-5{width:41.6666666667%}.size-context.w-xxl .xxs-w-6{width:50%}.size-context.w-xxl .xxs-w-7{width:58.3333333333%}.size-context.w-xxl .xxs-w-8{width:66.6666666667%}.size-context.w-xxl .xxs-w-9{width:75%}.size-context.w-xxl .xxs-w-10{width:83.3333333333%}.size-context.w-xxl .xxs-w-11{width:91.6666666667%}.size-context.w-xxl .xxs-w-12{width:100%}.size-context.w-xxl .xxs-h-1{height:8.3333333333%}.size-context.w-xxl .xxs-h-2{height:16.6666666667%}.size-context.w-xxl .xxs-h-3{height:25%}.size-context.w-xxl .xxs-h-4{height:33.3333333333%}.size-context.w-xxl .xxs-h-5{height:41.6666666667%}.size-context.w-xxl .xxs-h-6{height:50%}.size-context.w-xxl .xxs-h-7{height:58.3333333333%}.size-context.w-xxl .xxs-h-8{height:66.6666666667%}.size-context.w-xxl .xxs-h-9{height:75%}.size-context.w-xxl .xxs-h-10{height:83.3333333333%}.size-context.w-xxl .xxs-h-11{height:91.6666666667%}.size-context.w-xxl .xxs-h-12{height:100%}.size-context.w-xxl .xs-direction-row{flex-direction:row}.size-context.w-xxl .xs-direction-column{flex-direction:column}.size-context.w-xxl .xs-grow{flex-grow:1}.size-context.w-xxl .xs-no-grow{flex-grow:0}.size-context.w-xxl .xs-full-width{width:100%}.size-context.w-xxl .xs-w-1{width:8.3333333333%}.size-context.w-xxl .xs-w-2{width:16.6666666667%}.size-context.w-xxl .xs-w-3{width:25%}.size-context.w-xxl .xs-w-4{width:33.3333333333%}.size-context.w-xxl .xs-w-5{width:41.6666666667%}.size-context.w-xxl .xs-w-6{width:50%}.size-context.w-xxl .xs-w-7{width:58.3333333333%}.size-context.w-xxl .xs-w-8{width:66.6666666667%}.size-context.w-xxl .xs-w-9{width:75%}.size-context.w-xxl .xs-w-10{width:83.3333333333%}.size-context.w-xxl .xs-w-11{width:91.6666666667%}.size-context.w-xxl .xs-w-12{width:100%}.size-context.w-xxl .xs-h-1{height:8.3333333333%}.size-context.w-xxl .xs-h-2{height:16.6666666667%}.size-context.w-xxl .xs-h-3{height:25%}.size-context.w-xxl .xs-h-4{height:33.3333333333%}.size-context.w-xxl .xs-h-5{height:41.6666666667%}.size-context.w-xxl .xs-h-6{height:50%}.size-context.w-xxl .xs-h-7{height:58.3333333333%}.size-context.w-xxl .xs-h-8{height:66.6666666667%}.size-context.w-xxl .xs-h-9{height:75%}.size-context.w-xxl .xs-h-10{height:83.3333333333%}.size-context.w-xxl .xs-h-11{height:91.6666666667%}.size-context.w-xxl .xs-h-12{height:100%}.size-context.w-xxl .s-direction-row{flex-direction:row}.size-context.w-xxl .s-direction-column{flex-direction:column}.size-context.w-xxl .s-grow{flex-grow:1}.size-context.w-xxl .s-no-grow{flex-grow:0}.size-context.w-xxl .s-full-width{width:100%}.size-context.w-xxl .s-w-1{width:8.3333333333%}.size-context.w-xxl .s-w-2{width:16.6666666667%}.size-context.w-xxl .s-w-3{width:25%}.size-context.w-xxl .s-w-4{width:33.3333333333%}.size-context.w-xxl .s-w-5{width:41.6666666667%}.size-context.w-xxl .s-w-6{width:50%}.size-context.w-xxl .s-w-7{width:58.3333333333%}.size-context.w-xxl .s-w-8{width:66.6666666667%}.size-context.w-xxl .s-w-9{width:75%}.size-context.w-xxl .s-w-10{width:83.3333333333%}.size-context.w-xxl .s-w-11{width:91.6666666667%}.size-context.w-xxl .s-w-12{width:100%}.size-context.w-xxl .s-h-1{height:8.3333333333%}.size-context.w-xxl .s-h-2{height:16.6666666667%}.size-context.w-xxl .s-h-3{height:25%}.size-context.w-xxl .s-h-4{height:33.3333333333%}.size-context.w-xxl .s-h-5{height:41.6666666667%}.size-context.w-xxl .s-h-6{height:50%}.size-context.w-xxl .s-h-7{height:58.3333333333%}.size-context.w-xxl .s-h-8{height:66.6666666667%}.size-context.w-xxl .s-h-9{height:75%}.size-context.w-xxl .s-h-10{height:83.3333333333%}.size-context.w-xxl .s-h-11{height:91.6666666667%}.size-context.w-xxl .s-h-12{height:100%}.size-context.w-xxl .m-direction-row{flex-direction:row}.size-context.w-xxl .m-direction-column{flex-direction:column}.size-context.w-xxl .m-grow{flex-grow:1}.size-context.w-xxl .m-no-grow{flex-grow:0}.size-context.w-xxl .m-full-width{width:100%}.size-context.w-xxl .m-w-1{width:8.3333333333%}.size-context.w-xxl .m-w-2{width:16.6666666667%}.size-context.w-xxl .m-w-3{width:25%}.size-context.w-xxl .m-w-4{width:33.3333333333%}.size-context.w-xxl .m-w-5{width:41.6666666667%}.size-context.w-xxl .m-w-6{width:50%}.size-context.w-xxl .m-w-7{width:58.3333333333%}.size-context.w-xxl .m-w-8{width:66.6666666667%}.size-context.w-xxl .m-w-9{width:75%}.size-context.w-xxl .m-w-10{width:83.3333333333%}.size-context.w-xxl .m-w-11{width:91.6666666667%}.size-context.w-xxl .m-w-12{width:100%}.size-context.w-xxl .m-h-1{height:8.3333333333%}.size-context.w-xxl .m-h-2{height:16.6666666667%}.size-context.w-xxl .m-h-3{height:25%}.size-context.w-xxl .m-h-4{height:33.3333333333%}.size-context.w-xxl .m-h-5{height:41.6666666667%}.size-context.w-xxl .m-h-6{height:50%}.size-context.w-xxl .m-h-7{height:58.3333333333%}.size-context.w-xxl .m-h-8{height:66.6666666667%}.size-context.w-xxl .m-h-9{height:75%}.size-context.w-xxl .m-h-10{height:83.3333333333%}.size-context.w-xxl .m-h-11{height:91.6666666667%}.size-context.w-xxl .m-h-12{height:100%}.size-context.w-xxl .l-direction-row{flex-direction:row}.size-context.w-xxl .l-direction-column{flex-direction:column}.size-context.w-xxl .l-grow{flex-grow:1}.size-context.w-xxl .l-no-grow{flex-grow:0}.size-context.w-xxl .l-full-width{width:100%}.size-context.w-xxl .l-w-1{width:8.3333333333%}.size-context.w-xxl .l-w-2{width:16.6666666667%}.size-context.w-xxl .l-w-3{width:25%}.size-context.w-xxl .l-w-4{width:33.3333333333%}.size-context.w-xxl .l-w-5{width:41.6666666667%}.size-context.w-xxl .l-w-6{width:50%}.size-context.w-xxl .l-w-7{width:58.3333333333%}.size-context.w-xxl .l-w-8{width:66.6666666667%}.size-context.w-xxl .l-w-9{width:75%}.size-context.w-xxl .l-w-10{width:83.3333333333%}.size-context.w-xxl .l-w-11{width:91.6666666667%}.size-context.w-xxl .l-w-12{width:100%}.size-context.w-xxl .l-h-1{height:8.3333333333%}.size-context.w-xxl .l-h-2{height:16.6666666667%}.size-context.w-xxl .l-h-3{height:25%}.size-context.w-xxl .l-h-4{height:33.3333333333%}.size-context.w-xxl .l-h-5{height:41.6666666667%}.size-context.w-xxl .l-h-6{height:50%}.size-context.w-xxl .l-h-7{height:58.3333333333%}.size-context.w-xxl .l-h-8{height:66.6666666667%}.size-context.w-xxl .l-h-9{height:75%}.size-context.w-xxl .l-h-10{height:83.3333333333%}.size-context.w-xxl .l-h-11{height:91.6666666667%}.size-context.w-xxl .l-h-12{height:100%}.size-context.w-xxl .xl-direction-row{flex-direction:row}.size-context.w-xxl .xl-direction-column{flex-direction:column}.size-context.w-xxl .xl-grow{flex-grow:1}.size-context.w-xxl .xl-no-grow{flex-grow:0}.size-context.w-xxl .xl-full-width{width:100%}.size-context.w-xxl .xl-w-1{width:8.3333333333%}.size-context.w-xxl .xl-w-2{width:16.6666666667%}.size-context.w-xxl .xl-w-3{width:25%}.size-context.w-xxl .xl-w-4{width:33.3333333333%}.size-context.w-xxl .xl-w-5{width:41.6666666667%}.size-context.w-xxl .xl-w-6{width:50%}.size-context.w-xxl .xl-w-7{width:58.3333333333%}.size-context.w-xxl .xl-w-8{width:66.6666666667%}.size-context.w-xxl .xl-w-9{width:75%}.size-context.w-xxl .xl-w-10{width:83.3333333333%}.size-context.w-xxl .xl-w-11{width:91.6666666667%}.size-context.w-xxl .xl-w-12{width:100%}.size-context.w-xxl .xl-h-1{height:8.3333333333%}.size-context.w-xxl .xl-h-2{height:16.6666666667%}.size-context.w-xxl .xl-h-3{height:25%}.size-context.w-xxl .xl-h-4{height:33.3333333333%}.size-context.w-xxl .xl-h-5{height:41.6666666667%}.size-context.w-xxl .xl-h-6{height:50%}.size-context.w-xxl .xl-h-7{height:58.3333333333%}.size-context.w-xxl .xl-h-8{height:66.6666666667%}.size-context.w-xxl .xl-h-9{height:75%}.size-context.w-xxl .xl-h-10{height:83.3333333333%}.size-context.w-xxl .xl-h-11{height:91.6666666667%}.size-context.w-xxl .xl-h-12{height:100%}.size-context.w-xxl .xxl-direction-row{flex-direction:row}.size-context.w-xxl .xxl-direction-column{flex-direction:column}.size-context.w-xxl .xxl-grow{flex-grow:1}.size-context.w-xxl .xxl-no-grow{flex-grow:0}.size-context.w-xxl .xxl-full-width{width:100%}.size-context.w-xxl .xxl-w-1{width:8.3333333333%}.size-context.w-xxl .xxl-w-2{width:16.6666666667%}.size-context.w-xxl .xxl-w-3{width:25%}.size-context.w-xxl .xxl-w-4{width:33.3333333333%}.size-context.w-xxl .xxl-w-5{width:41.6666666667%}.size-context.w-xxl .xxl-w-6{width:50%}.size-context.w-xxl .xxl-w-7{width:58.3333333333%}.size-context.w-xxl .xxl-w-8{width:66.6666666667%}.size-context.w-xxl .xxl-w-9{width:75%}.size-context.w-xxl .xxl-w-10{width:83.3333333333%}.size-context.w-xxl .xxl-w-11{width:91.6666666667%}.size-context.w-xxl .xxl-w-12{width:100%}.size-context.w-xxl .xxl-h-1{height:8.3333333333%}.size-context.w-xxl .xxl-h-2{height:16.6666666667%}.size-context.w-xxl .xxl-h-3{height:25%}.size-context.w-xxl .xxl-h-4{height:33.3333333333%}.size-context.w-xxl .xxl-h-5{height:41.6666666667%}.size-context.w-xxl .xxl-h-6{height:50%}.size-context.w-xxl .xxl-h-7{height:58.3333333333%}.size-context.w-xxl .xxl-h-8{height:66.6666666667%}.size-context.w-xxl .xxl-h-9{height:75%}.size-context.w-xxl .xxl-h-10{height:83.3333333333%}.size-context.w-xxl .xxl-h-11{height:91.6666666667%}.size-context.w-xxl .xxl-h-12{height:100%}.basicstyleelement,.headermenucontent,.styled-select__menu,.styleelement,.styledcheckbox,.styledinput,.styledbtn,.styleddropdown{background-color:var(--funcnodesbackground1);color:var(--funcnodestextcolor1);border-radius:.75rem;border:1px solid var(--funheadercolor)}.styleelement,.styledcheckbox,.styledinput,.styledbtn,.styleddropdown{height:2rem;padding-left:.5rem;padding-right:.5rem}.styleelement:hover,.styledcheckbox:hover,.styledinput:hover,.styledbtn:hover,.styleddropdown:hover{background-color:var(--funcnodesbackground_light)}.styleelement:active,.styledcheckbox:active,.styledinput:active,.styledbtn:active,.styleddropdown:active{background-color:var(--funheadercolor);color:var(--funcnodesbackground1)}.styleelement:focus,.styledcheckbox:focus,.styledinput:focus,.styledbtn:focus,.styleddropdown:focus{outline:1px solid var(--funheadercolor)}.styleddropdown{padding-right:.25rem}.styledbtn{cursor:pointer}.styledinput :focus{outline:none}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{opacity:.5;background-color:transparent}.styledcheckbox{height:auto;accent-color:var(--funheadercolor)}.styledcheckbox:focus{outline:none}.styledcheckbox:after{content:"";background-color:var(--funheadercolor)}.styledcheckbox.checked{background-color:var(--funheadercolor);color:var(--funcnodesbackground1)}.SliderContainer{display:flex;align-items:center;width:100%;height:100%;min-height:20px;padding:0 4px}.SliderRoot{position:relative;display:flex;align-items:center;-webkit-user-select:none;user-select:none;touch-action:none;width:100%;height:fit-content}.SliderTrack{background-color:var(--funcnodesbackground1);position:relative;flex-grow:1;border-radius:9999px;height:3px}.SliderRange{position:absolute;background-color:var(--funheadercolor);border-radius:9999px;height:100%}.SliderThumb{display:block;width:10px;height:10px;background-color:#fff;box-shadow:0 2px 5px #0005;border-radius:10px}.SliderThumb:hover{background-color:#999}.SliderThumb:focus{outline:none;box-shadow:0 0 0 5px #0005}.styled-select__control{height:100%;min-height:initial}.styled-select__menu-list{max-height:200px!important;padding-left:0;height:initial}.styled-select__menu{margin-left:-.5rem}.styled-select__option:hover{background-color:var(--funcnodesbackground_light)}button{font-family:inherit;font-size:inherit}.smooth-expand-expanded{position:absolute;top:0;left:0;width:100vw;height:100vh}.expanding_container{display:flex;transition:width .5s,height .5s}.expanding_container.pos-left{position:absolute;left:0}.expanding_container.pos-right{position:absolute;right:0}.expanding_container.pos-top{position:absolute;top:0}.expanding_container.pos-bottom{position:absolute;bottom:0}.expanding_container.right,.expanding_container.left{flex-direction:row}.expanding_container.up,.expanding_container.down{flex-direction:column}.expanding_container_expander{min-width:20px;display:flex;align-items:center;justify-content:center;cursor:pointer;padding:3px}.expanding_container_content{transition:width .5s,height .5s}.expanding_container_content.right,.expanding_container_content.left{overflow-y:hidden}.expanding_container_content.right.collapsed,.expanding_container_content.left.collapsed{width:0}.expanding_container_content.up,.expanding_container_content.down{overflow-x:hidden}.expanding_container_content.up.collapsed,.expanding_container_content.down.collapsed{height:0}.expanding_container_content.collapsed{padding:0}:root{--funheadercolor: #00d9ff;--funcnodesbackground1: hsl(243, 26%, 13%);--funcnodesbackground2: hsl(245, 22%, 22%);--funcnodesbackground_light: hsl(240, 22%, 38%);--containerboarderradius: 1rem;--funcnodestextcolor1: #ffffff;--funcnodes-z-index: 1000}.bg1{background-color:var(--funcnodesbackground1)}.bg2{background-color:var(--funcnodesbackground2)}.funcnodescontainer{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.funcnodescontainer code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}.funcnodesreactflowcontainer{width:100%;height:100%;flex-grow:1;z-index:var(--funcnodes-z-index);background-color:var(--funcnodesbackground1);position:relative;display:flex;flex-direction:column;color:var(--funcnodestextcolor1)}.funcnodesreactflowcontainer *{box-sizing:border-box}.funcnodesreactflowbody{flex-grow:1;position:relative;display:flex;flex-direction:row;overflow:hidden}.reactflowlayer{flex-grow:1;position:relative;overflow:hidden;background-color:var(--funcnodesbackground2);margin:.5rem;border-radius:var(--containerboarderradius)}.vscrollcontainer{overflow-y:auto;overflow-x:hidden;flex-grow:1;padding:.5rem;box-sizing:border-box}.workerselect{max-width:140px}.workerselectoption.selected{color:var(--funcnodestextcolor1)}.workerselectoption.active{color:green}.workerselectoption.inactive{color:red}.funcnodesflaotingmenu{position:absolute;right:0;padding:10px;z-index:2;display:flex;flex-direction:row;margin-right:10px}.FuncnodesApp{height:100%;width:100%;flex-grow:1;display:flex;flex-direction:column}.funcnodesreactflowheader{display:flex;flex-direction:row;justify-content:flex-start;position:relative;margin-top:8px;top:0;left:0;z-index:1}.funcnodesreactflowheader .headerelement{height:100%;display:flex;margin:4px;position:relative;white-space:nowrap}.funcnodesreactflowheader .statusbar{height:1.5rem;background-color:var(--funcnodesbackground2);display:inline-block;margin:2px 4px 0;position:relative;border-radius:.5rem;overflow:hidden;flex-grow:1}.funcnodesreactflowheader .statusbar-progressbar{position:absolute;top:0;left:0;width:0;height:100%;background-color:var(--funheadercolor);display:inline-block}.funcnodesreactflowheader .statusbar-message{position:relative;top:0;left:0;font-size:.8rem;color:var(--funheadercolor);mix-blend-mode:difference}.headermenucontent{max-height:90vh;overflow:auto;padding:5px;border-radius:.25rem;z-index:2}.headermenuitem{padding:0 5px}.headermenuitem[data-highlighted],.headermenuitem[data-state=open]{background-color:var(--funcnodesbackground_light)}.headermenuitem[data-state=checked]{background-color:var(--funcnodesbackground_light);color:#fff}:root{--node_border_radius: 5px;--node_border_width: 2px;--handle_outer_radius: 4px;--handle_inner_radius: 2px;--handle_width: 10;--handle_width_hover: 15;--handle_overlap: 3;--nodeinput_margin: 2;--nodeio_shift: calc(var(--handle_overlap) - var(--nodeinput_margin));--handle_source_color: hsl(190, 98%, 49%);--handle_target_color: hsl(204, 98%, 51%);--node_background: hsl(245, 51%, 42%);--node_header_color: hsl(245, 51%, 22%);--node_inner_ele_radius: calc( var(--node_border_radius) - var(--node_border_width) )}.react-flow__node{padding:0;border-radius:var(--node_border_radius);background-color:var(--node_background);display:flex;flex-direction:column;color:#f0f8ff;box-sizing:content-box;transform:-50%,-50%;border:var(--node_border_width) solid rgba(255,255,255,0);font-size:.5rem;width:auto;max-width:250px;min-width:100px;max-height:2000px;background-clip:content-box}.react-flow__node.selected{border-color:#fff9}.react-flow__node *{box-sizing:border-box}.react-flow__handle{height:calc(100% - 4px);border-radius:0;width:calc(var(--handle_width) * 1px);transition:left .2s ease-in-out,right .2s ease-in-out,width .2s ease-in-out}.react-flow__handle:hover{width:calc(var(--handle_width_hover) * 1px)}.react-flow__handle.source{background-color:var(--handle_source_color)}.react-flow__handle.target{background-color:var(--handle_target_color)}.react-flow__handle-left{border-radius:var(--handle_outer_radius) var(--handle_inner_radius) var(--handle_inner_radius) var(--handle_outer_radius);left:calc((var(--nodeio_shift) - var(--handle_width) / 2) * 1px)}.react-flow__handle-left:hover{left:calc((var(--nodeio_shift) - var(--handle_width_hover) / 2) * 1px)}.react-flow__handle-right{border-radius:var(--handle_inner_radius) var(--handle_outer_radius) var(--handle_outer_radius) var(--handle_inner_radius);right:calc((var(--nodeio_shift) - var(--handle_width) / 2) * 1px)}.react-flow__handle-right:hover{right:calc((var(--nodeio_shift) - var(--handle_width_hover) / 2) * 1px)}.react-flow__handle-top{border-radius:var(--handle_outer_radius) var(--handle_outer_radius) var(--handle_inner_radius) var(--handle_inner_radius)}.react-flow__handle-bottom{border-radius:var(--handle_inner_radius) var(--handle_inner_radius) var(--handle_outer_radius) var(--handle_outer_radius)}.innernode{width:100%;height:100%;flex-direction:column;display:flex;box-sizing:border-box;max-height:inherit}.innernode.intrigger .nodeheader{background-color:#abb408}.innernode.error .nodeheader{background-color:red}.nodeheader{box-sizing:border-box;background-color:var(--node_header_color);width:100%;padding:.1rem;border-radius:var(--node_inner_ele_radius) var(--node_inner_ele_radius) 0 0;display:flex;align-items:center;justify-content:space-between}.nodeheader_element{display:flex;align-items:center}.nodeheader_title{flex-grow:1;margin:0 10px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;justify-content:center}.nodeheader_title_text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:100%}.nodeheader .triggerbutton{cursor:pointer}.nodeheader .triggerbutton:hover{color:#0cc3f5}.nodeheader .triggerbutton:active{color:#075d74}.nodename_input{border:1px solid #000000;border-radius:2px;background:none;color:#fff;text-align:center;font-size:inherit;margin:2px;box-sizing:border-box}.nodefooter{background-color:#4e0ba5;width:100%;padding:.1rem;border-radius:0 0 var(--node_inner_ele_radius) var(--node_inner_ele_radius)}.nodefooter:empty{display:none}.nodefooter .nodeerror{border:1px solid #ff0000;border-radius:2px;padding:.25rem;background-color:#ff000075}.nodebody{flex:1;display:flex;flex-direction:column;min-height:0}.nodedatabody{overflow:auto;flex:1;display:flex}.nodedatabutton{flex:1}.noderesizecontrol{background:transparent!important;border:none!important;font-size:.5rem}.noderesizeicon{position:absolute;bottom:4px;right:4px;font-size:.5rem}.nodeio,.nodeoutput,.nodeinput{width:auto;background-color:inherit;padding:.1rem;margin-top:.1rem;margin-bottom:.1rem;position:relative;display:flex;flex-direction:row;border:1px solid rgba(255,255,255,.5333333333);border-radius:3px;box-sizing:border-box;margin-left:calc(var(--nodeinput_margin) * 1px);margin-right:calc(var(--nodeinput_margin) * 1px);align-items:center}.iovaluefield{flex-grow:1;flex-shrink:1;overflow:hidden;align-items:start;justify-content:start;display:flex;margin:.2rem;line-break:anywhere;flex-direction:column}.iovaluefield>input{width:100%}.nodeinput>.iovaluefield{overflow:visible}.ioname{flex-grow:1;flex-shrink:1;color:inherit;margin:.2rem;overflow:hidden;min-width:2rem}.nodeinput .ioname{text-align:left}.nodeoutput .ioname{text-align:right}.nodedatainput{height:1.5rem;display:flex;align-items:center}input.nodedatainput:focus{outline:none}.nodedatastyledelement,input.nodedatainput.styledinput,.nodedatainput.styleddropdown{background-color:var(--node_header_color);font-size:.5rem;height:1.5rem}.nodedatastyledelement:disabled,input.nodedatainput.styledinput:disabled,.nodedatainput.styleddropdown:disabled{opacity:.5}input.nodedatainput.styledinput,.nodedatainput.styleddropdown{width:100%}.nodeprogress{width:100%;height:10px;transition:height .1s ease;overflow:hidden}.nodeprogress-text{text-align:center;color:#fff;mix-blend-mode:difference}.nodeprogress-bar{border-radius:3px}.nodeprogress-progress{background-color:#b7f50c;border-radius:3px;transition:width .3s ease}.nodesettings_content{display:flex;flex-direction:column;flex:1;padding:0 5px;overflow:auto}.nodesettings_content.expanded{width:250px}.nodesettings_content.collapsed{width:0}.nodesettings_section{margin-bottom:10px;margin-left:.5rem}.nodesettings_component{margin-bottom:.5rem;margin-left:.5rem;margin-top:.5rem}@keyframes slideUpAndFade{0%{opacity:0;transform:translateY(2px)}to{opacity:1;transform:translateY(0)}}@keyframes slideRightAndFade{0%{opacity:0;transform:translate(-2px)}to{opacity:1;transform:translate(0)}}@keyframes slideDownAndFade{0%{opacity:0;transform:translateY(-2px)}to{opacity:1;transform:translateY(0)}}@keyframes slideLeftAndFade{0%{opacity:0;transform:translate(2px)}to{opacity:1;transform:translate(0)}}.iotooltipcontent{z-index:100;background-color:#f9f9f9;border:1px solid #ffffff;border-radius:5px;padding:10px;box-shadow:#0e121659 0 10px 38px -10px,#0e121633 0 10px 20px -15px;font-size:10px;color:#333;max-width:40vw;max-height:40vh;cursor:default;overflow:auto;display:flex;flex-direction:column}.iotooltipcontent.fullsize{max-width:100vw;max-height:100vh;position:fixed;top:0}.iotooltipcontent[data-state=delayed-open][data-side=top]{animation-name:slideDownAndFade}.iotooltipcontent[data-state=delayed-open][data-side=right]{animation-name:slideLeftAndFade}.iotooltipcontent[data-state=delayed-open][data-side=bottom]{animation-name:slideUpAndFade}.iotooltipcontent[data-state=delayed-open][data-side=left]{animation-name:slideRightAndFade}.iotooltip_container{display:flex;flex-direction:column;max-width:inherit;max-height:inherit}.iotooltipcontentarrow{fill:#fff}.colorspace{margin:.2rem;display:grid;grid-template-columns:auto minmax(0,1fr)}.colorspace_title{font-size:.7em;font-weight:700}.colorspace label{font-size:.7rem}.colorspace input{font-size:.7rem;max-height:.7rem;box-sizing:initial}.colorspace input[type=range]{width:100%;margin:0;padding:0;-webkit-appearance:none;background-color:#666;height:.7rem;border-radius:5px}.colorspace input[type=range]::-webkit-slider-thumb,.colorspace input[type=range]::-webkit-range-thumb,.colorspace input[type=range]::-moz-range-thumb{width:.7rem;height:.7rem;background-color:#cc1c1c;border-radius:50%;cursor:pointer}.styled-select__control{height:100%;min-height:initial;min-width:10px}.styled-select__menu-list{max-height:200px}.styled-select__single-value{text-align:start}.styled-select__option{text-align:start;padding:2px 5px}.styled-select__option:hover{cursor:pointer}.tablecontainer{overflow:auto;background-color:#fff;min-height:20rem}.tableHead{color:var(--funheadercolor)!important;background-color:var(--funcnodesbackground1);font-weight:700!important}.tableheadercolor{color:inherit!important;font-family:inherit!important;font-weight:inherit!important}.indexcol{background-color:var(--funcnodesbackground2);color:var(--funheadercolor)!important;font-family:inherit!important;font-weight:inherit!important}._GzYRV{line-height:1.2;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}._3eOF8{margin-right:5px;font-weight:700}._3eOF8+._3eOF8{margin-left:-5px}._1MFti{cursor:pointer}._f10Tu{font-size:1.2em;margin-right:5px;-webkit-user-select:none;-moz-user-select:none;user-select:none}._1UmXx:after{content:"▸"}._1LId0:after{content:"▾"}._1pNG9{margin-right:5px}._1pNG9:after{content:"...";font-size:.8em}._2IvMF{background:#eee}._2bkNM{margin:0;padding:0 10px}._1BXBN{margin:0;padding:0}._1MGIk{font-weight:600;margin-right:5px;color:#000}._3uHL6{color:#000}._2T6PJ,._1Gho6{color:#df113a}._vGjyY{color:#2a3f3c}._1bQdo{color:#0b75f5}._3zQKs{color:#469038}._1xvuR{color:#43413d}._oLqym,._2AXVT,._2KJWg{color:#000}._11RoI{background:#002b36}._17H2C,._3QHg2,._3fDAz{color:#fdf6e3}._2bSDX{font-weight:bolder;margin-right:5px;color:#fdf6e3}._gsbQL{color:#fdf6e3}._LaAZe,._GTKgm{color:#81b5ac}._Chy1W{color:#cb4b16}._2bveF{color:#d33682}._2vRm-{color:#ae81ff}._1prJR{color:#268bd2}.dialogoverlay{background-color:#00000080;position:fixed;top:0;right:0;bottom:0;left:0;animation:overlayShow .15s cubic-bezier(.16,1,.3,1);z-index:2000}.dialogconent{background-color:var(--funcnodesbackground1);border-radius:6px;box-shadow:var(--funheadercolor) 0 10px 38px -10px,var(--funheadercolor) 0 10px 20px -15px;position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);width:90vw;max-width:85vw;max-height:85vh;padding:25px;animation:contentShow .15s cubic-bezier(.16,1,.3,1);color:var(--funcnodestextcolor1);border:1px solid var(--funheadercolor);display:flex;flex-direction:column;z-index:2001}.dialogtitle{margin:0;font-weight:500;color:var(--funheadercolor);font-size:17px}.dialogdescription{margin:10px 0 20px;font-size:15px;line-height:1.5}.dialogclosebutton{border-radius:100%;height:25px;width:25px;display:inline-flex;background-color:inherit;align-items:center;justify-content:center;color:var(--funheadercolor);position:absolute;top:10px;right:10px;border:none}.dialogclosebutton:hover{background-color:var(--funheadercolor);color:var(--funcnodesbackground1)}.dialogclosebutton:active{background-color:var(--funheadercolor);color:var(--funcnodestextcolor1)}.dialogsendbutton{background-color:var(--funcnodesbackground1);color:var(--funheadercolor);border:1px solid var(--funheadercolor);border-radius:99rem;padding:10px 20px;cursor:pointer;font-size:15px;margin-top:20px}.dialogsendbutton:hover{background-color:var(--funheadercolor);color:var(--funcnodesbackground1)}.dialogsendbutton:active{background-color:var(--funheadercolor);color:var(--funcnodestextcolor1)}.dialogchildren{margin-top:20px;overflow:auto}:root{--funcnodesedgecolor: #7bb3ec}.funcnodes-edge .react-flow__edge-path{stroke:var(--funcnodesedgecolor);stroke-width:2px}.funcnodes-edge.selected .react-flow__edge-path{stroke:#1f0!important}:root{--expandtime: .3s;--libnodebgcolor: #48465f;--libnodebgcolor_hover: #6a6698}.libcontainer{top:0;left:0;height:100%;padding:.5rem;box-sizing:border-box;display:flex;flex-direction:column;border-radius:.5rem}.library{display:flex;flex-direction:column;flex-grow:1;overflow:hidden;width:15rem;background-color:var(--funcnodesbackground2);border-radius:var(--containerboarderradius);padding:.5rem}.library .libtitle{font-size:1rem;font-weight:700;color:var(--funheadercolor)}.library hr{width:100%}.library hr.hr_prominent{border:.5px solid var(--funheadercolor)}.addlib{background-color:var(--funcnodesbackground2);border-radius:var(--containerboarderradius);padding:.5rem}.addlib button{background-color:var(--funcnodesbackground1);color:var(--funheadercolor);border:0;border-radius:.5rem;padding:.5rem;cursor:pointer;font-size:1rem;width:100%}.addlib button:hover{background-color:var(--funheadercolor);color:var(--funcnodesbackground1)}.addlib button:active{background-color:var(--funcnodesbackground1);color:var(--funcnodestextcolor1)}.addlib button[disabled]{background-color:var(--funcnodesbackground1);color:var(--funcnodestextcolor1);cursor:not-allowed}.libfilter{display:flex;width:100%;flex-direction:row;background-color:#0000001a;padding:.2rem}.libfilter:focus-within{border:1px solid var(--funheadercolor)}.libfilter input{flex-grow:1;background-color:transparent;color:var(--funcnodestextcolor1);border:0}.libfilter input:focus{outline:none}.libnodecontainer{display:grid;transition:grid-template-rows var(--expandtime) ease-out}.libnodecontainer.close{grid-template-rows:0fr}.libnodecontainer.open{grid-template-rows:1fr}.libnodecontainer_inner{transition:opacity var(--expandtime) ease-out;overflow:hidden;padding-left:10px}.libnodecontainer.close .libnodecontainer_inner{opacity:.2}.libnodecontainer.open .libnodecontainer_inner{opacity:1}.shelfcontainer{padding-top:.2rem;padding-bottom:.2rem;display:flex;flex-direction:column}.shelfcontainer .shelftitle{font-size:.8rem;color:var(--funheadercolor);opacity:.8;display:flex;max-width:100%}.shelfcontainer .shelftitle_text{flex-grow:1;overflow:hidden;text-overflow:ellipsis}.libnodeentry{border-radius:10px;box-sizing:border-box;background-color:var(--libnodebgcolor);margin-bottom:.2rem;padding:.1rem;cursor:pointer;border:1px solid var(--libnodebgcolor);transition:border .2s ease-in-out;font-size:.8rem;box-shadow:-.2rem 0 #004cff}.libnodeentry:hover{background-color:var(--libnodebgcolor_hover);border:1px solid rgb(0,76,255)}.expandicon{transform:rotate(0);transition:transform var(--expandtime) ease-out}.expandicon.close{transform:rotate(180deg)}.addable-module{border:1px solid #ddd;border-radius:8px;padding:16px;margin-bottom:12px;background-color:#f9f9f9;transition:box-shadow .2s ease-in-out,transform .2s ease-in-out;margin-left:20px;margin-right:20px}.addable-module:hover{box-shadow:0 4px 8px #0000001a;transform:translateY(-2px)}.addable-module .module-name{font-size:1.2rem;font-weight:700;color:#333;margin-bottom:8px}.addable-module .module-description{font-size:.75rem;color:#666;margin-bottom:8px;max-height:200px;overflow:auto}.addable-module .module-links{font-size:.9rem;color:#007bff;margin-bottom:8px;text-decoration:underline}.addable-module .add-button{background-color:#28a745;border:none;color:#fff;padding:8px 12px;border-radius:4px;cursor:pointer;font-size:.95rem;transition:background-color .2s ease}.addable-module .add-button:hover{background-color:#218838}.addable-module .remove-button{background-color:#dc3545;border:none;color:#fff;padding:8px 12px;border-radius:4px;cursor:pointer;font-size:.95rem;transition:background-color .2s ease}.addable-module .remove-button:hover{background-color:#c82333}.addable-module .update-button{background-color:#007bff;border:none;color:#fff;padding:8px 12px;border-radius:4px;cursor:pointer;font-size:.95rem;transition:background-color .2s ease}.addable-module .update-button:hover{background-color:#0056b3}.addable-module .update-button[disabled]{background-color:#6c757d;cursor:not-allowed}.addable-module .toggle-description{background-color:transparent;border:none;color:#007bff;cursor:pointer;font-size:.8rem;margin-top:4px;text-decoration:underline;padding:0;transition:color .2s ease}.addable-module .toggle-description:hover{color:#0056b3}
|