@guihz/trading-vue-editor-tes 0.1.3 → 0.1.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.
@@ -79324,8 +79324,8 @@ ${this._prefixNameVar}.setVarValue("${O}", ${z}, ${O}, "${c}")`;
|
|
79324
79324
|
return `${this._prefixNameVar}.${e.name}`;
|
79325
79325
|
if (e.isBuiltInConst)
|
79326
79326
|
return `${this._prefixNameConst}.${e.name}`;
|
79327
|
-
if (e.name
|
79328
|
-
const c = e.name.split("."), b = c[0]
|
79327
|
+
if (e.name?.includes(".")) {
|
79328
|
+
const c = e.name.replaceAll("?", "").split("."), b = c[0];
|
79329
79329
|
if (Ne.includes(b))
|
79330
79330
|
return c[0] = `$${b}`, c.join("?.");
|
79331
79331
|
}
|
@@ -2,4 +2,4 @@ export declare const LAST_EDITED_SCRIPT = "tcc_last_edited_script";
|
|
2
2
|
export declare const ORIGINAL_SCRIPT = "tcc_original_script";
|
3
3
|
export declare const CURSOR_POSITION = "tcc_cursor_position";
|
4
4
|
export declare const REMOVE_ACTIONS: string[];
|
5
|
-
export declare const DEFAULT_VERSION =
|
5
|
+
export declare const DEFAULT_VERSION = 5;
|