setta 0.0.9.dev0__py3-none-any.whl → 0.0.9.dev2__py3-none-any.whl
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.
- setta/__init__.py +1 -1
- setta/code_gen/python/generate_code.py +2 -0
- setta/database/db/codeInfo/copy.py +1 -4
- setta/database/db/projects/saveAs.py +0 -3
- setta/database/db/projects/utils.py +2 -2
- setta/database/db/sectionVariants/copy.py +12 -3
- setta/database/db/sections/copy.py +4 -1
- setta/database/db/sections/jsonSource.py +109 -42
- setta/database/db/sections/load.py +130 -73
- setta/database/settings_file.py +1 -1
- setta/lsp/specific_file_watcher.py +33 -4
- setta/routers/projects.py +1 -1
- setta/routers/sections.py +15 -5
- setta/static/constants/constants.json +1 -1
- setta/static/constants/defaultValues.json +3 -2
- setta/static/constants/settingsProject.json +200 -29
- setta/static/frontend/assets/{index-0134e43f.js → index-bd04bc58.js} +155 -155
- setta/static/frontend/assets/{index-c59176d8.css → index-cf887608.css} +1 -1
- setta/static/frontend/index.html +2 -2
- setta/utils/constants.py +1 -4
- {setta-0.0.9.dev0.dist-info → setta-0.0.9.dev2.dist-info}/METADATA +1 -1
- {setta-0.0.9.dev0.dist-info → setta-0.0.9.dev2.dist-info}/RECORD +26 -26
- {setta-0.0.9.dev0.dist-info → setta-0.0.9.dev2.dist-info}/WHEEL +1 -1
- {setta-0.0.9.dev0.dist-info → setta-0.0.9.dev2.dist-info}/LICENSE +0 -0
- {setta-0.0.9.dev0.dist-info → setta-0.0.9.dev2.dist-info}/entry_points.txt +0 -0
- {setta-0.0.9.dev0.dist-info → setta-0.0.9.dev2.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,5 @@
|
|
1
1
|
import asyncio
|
2
|
+
import glob
|
2
3
|
import logging
|
3
4
|
import os
|
4
5
|
from typing import Dict, List, Set
|
@@ -23,8 +24,12 @@ class SpecificFileWatcher:
|
|
23
24
|
"""
|
24
25
|
self.observer = Observer()
|
25
26
|
self.watched_files: Set[str] = set()
|
27
|
+
self.file_to_patterns = {}
|
26
28
|
self.handler = SpecificFileEventHandler(
|
27
|
-
callback,
|
29
|
+
callback,
|
30
|
+
asyncio.get_event_loop(),
|
31
|
+
self.watched_files,
|
32
|
+
self.file_to_patterns,
|
28
33
|
)
|
29
34
|
|
30
35
|
def add_file(self, file_path: str) -> bool:
|
@@ -79,17 +84,21 @@ class SpecificFileWatcher:
|
|
79
84
|
if absolute_path in self.watched_files:
|
80
85
|
self.watched_files.remove(absolute_path)
|
81
86
|
|
82
|
-
def update_watch_list(
|
87
|
+
def update_watch_list(
|
88
|
+
self, filepaths_and_glob_patterns: List[str]
|
89
|
+
) -> Dict[str, List[str]]:
|
83
90
|
"""
|
84
91
|
Update the entire list of files being watched with a single function call.
|
85
92
|
This efficiently handles adding new files and removing files that are no longer needed.
|
86
93
|
|
87
94
|
Args:
|
88
|
-
|
95
|
+
filepaths_and_glob_patterns: List of file paths that should be watched
|
89
96
|
|
90
97
|
Returns:
|
91
98
|
Dict containing 'added' and 'removed' lists of file paths
|
92
99
|
"""
|
100
|
+
file_paths = self.get_actual_file_paths_to_watch(filepaths_and_glob_patterns)
|
101
|
+
|
93
102
|
# Convert all input paths to absolute paths (only if they exist)
|
94
103
|
absolute_paths = [
|
95
104
|
os.path.abspath(path) for path in file_paths if os.path.exists(path)
|
@@ -116,6 +125,24 @@ class SpecificFileWatcher:
|
|
116
125
|
# Return information about what changed
|
117
126
|
return {"added": added_files, "removed": list(files_to_remove)}
|
118
127
|
|
128
|
+
def get_actual_file_paths_to_watch(self, filepaths_and_glob_patterns):
|
129
|
+
actual_filepaths = set()
|
130
|
+
# Expand glob patterns and build the mapping
|
131
|
+
for pattern in filepaths_and_glob_patterns:
|
132
|
+
matching_files = glob.glob(pattern)
|
133
|
+
for file_path in matching_files:
|
134
|
+
# Only add actual files, not directories
|
135
|
+
if os.path.isfile(file_path):
|
136
|
+
abs_path = os.path.abspath(file_path)
|
137
|
+
actual_filepaths.add(abs_path)
|
138
|
+
|
139
|
+
# Add to the mapping
|
140
|
+
if abs_path not in self.file_to_patterns:
|
141
|
+
self.file_to_patterns[abs_path] = set()
|
142
|
+
self.file_to_patterns[abs_path].add(pattern)
|
143
|
+
|
144
|
+
return actual_filepaths
|
145
|
+
|
119
146
|
def start(self) -> None:
|
120
147
|
"""Start the file watcher."""
|
121
148
|
self.observer.start()
|
@@ -131,7 +158,7 @@ class SpecificFileWatcher:
|
|
131
158
|
class SpecificFileEventHandler(FileSystemEventHandler):
|
132
159
|
"""Event handler for specific file events."""
|
133
160
|
|
134
|
-
def __init__(self, callback, loop, watched_files_ref):
|
161
|
+
def __init__(self, callback, loop, watched_files_ref, file_to_patterns):
|
135
162
|
"""
|
136
163
|
Initialize the event handler.
|
137
164
|
|
@@ -143,6 +170,7 @@ class SpecificFileEventHandler(FileSystemEventHandler):
|
|
143
170
|
self.callback = callback
|
144
171
|
self.loop = loop
|
145
172
|
self.watched_files_ref = watched_files_ref
|
173
|
+
self.file_to_patterns = file_to_patterns
|
146
174
|
|
147
175
|
def on_created(self, event: FileSystemEvent):
|
148
176
|
"""Handle file creation event."""
|
@@ -233,6 +261,7 @@ class SpecificFileEventHandler(FileSystemEventHandler):
|
|
233
261
|
"relPath": rel_path,
|
234
262
|
"eventType": event_type,
|
235
263
|
"fileContent": file_content,
|
264
|
+
"matchingGlobPatterns": list(self.file_to_patterns[abs_path]),
|
236
265
|
}
|
237
266
|
|
238
267
|
# Add destination paths for moved events
|
setta/routers/projects.py
CHANGED
@@ -178,7 +178,7 @@ def router_set_as_default_project(x: SetAsDefaultProjectRequest, dbq=Depends(get
|
|
178
178
|
|
179
179
|
@router.post(C.ROUTE_FILTER_DATA_FOR_JSON_EXPORT)
|
180
180
|
def router_filter_data_for_json_export(x: FilterDataForJSONExportRequest):
|
181
|
-
filter_data_for_json_export(x.project
|
181
|
+
filter_data_for_json_export(x.project)
|
182
182
|
return x.project
|
183
183
|
|
184
184
|
|
setta/routers/sections.py
CHANGED
@@ -54,8 +54,7 @@ class GlobalParamSweepSectionToYamlRequest(BaseModel):
|
|
54
54
|
|
55
55
|
class LoadSectionJSONSourceRequest(BaseModel):
|
56
56
|
project: dict
|
57
|
-
|
58
|
-
jsonSource: str
|
57
|
+
sectionIdToJSONSource: Dict[str, str]
|
59
58
|
|
60
59
|
|
61
60
|
class SaveSectionJSONSourceRequest(BaseModel):
|
@@ -68,6 +67,10 @@ class NewJSONVersionNameRequest(BaseModel):
|
|
68
67
|
filenameGlob: str
|
69
68
|
|
70
69
|
|
70
|
+
class CreateFileRequest(BaseModel):
|
71
|
+
filepath: str
|
72
|
+
|
73
|
+
|
71
74
|
class GetJSONSourcePathToBeDeleted(BaseModel):
|
72
75
|
variantName: str
|
73
76
|
|
@@ -131,13 +134,14 @@ def route_global_param_sweep_section_to_yaml(x: GlobalParamSweepSectionToYamlReq
|
|
131
134
|
@router.post(C.ROUTE_LOAD_SECTION_JSON_SOURCE)
|
132
135
|
def route_load_section_json_source(x: LoadSectionJSONSourceRequest):
|
133
136
|
p = x.project
|
134
|
-
|
137
|
+
for k, v in x.sectionIdToJSONSource.items():
|
138
|
+
p["sections"][k]["jsonSource"] = v
|
135
139
|
load_json_sources_into_data_structures(
|
136
140
|
p["sections"],
|
137
141
|
p["codeInfo"],
|
138
142
|
p["codeInfoCols"],
|
139
143
|
p["sectionVariants"],
|
140
|
-
section_ids=
|
144
|
+
section_ids=list(x.sectionIdToJSONSource.keys()),
|
141
145
|
)
|
142
146
|
return {"project": p}
|
143
147
|
|
@@ -150,6 +154,12 @@ def route_new_json_version_name(x: NewJSONVersionNameRequest):
|
|
150
154
|
return new_filename
|
151
155
|
|
152
156
|
|
157
|
+
@router.post(C.ROUTE_CREATE_FILE)
|
158
|
+
def route_create_file(x: CreateFileRequest):
|
159
|
+
Path(x.filepath).parent.mkdir(parents=True, exist_ok=True)
|
160
|
+
Path(x.filepath).touch()
|
161
|
+
|
162
|
+
|
153
163
|
@router.post(C.ROUTE_SAVE_SECTION_JSON_SOURCE)
|
154
164
|
def route_save_section_json_source(x: SaveSectionJSONSourceRequest):
|
155
165
|
save_json_source_data(x.project, [x.sectionId], x.forking_from)
|
@@ -183,5 +193,5 @@ def route_delete_file(x: DeleteFileRequest):
|
|
183
193
|
def route_file_watch_list(
|
184
194
|
x: FileWatchListRequest, specific_file_watcher=Depends(get_specific_file_watcher)
|
185
195
|
):
|
186
|
-
# x.filepaths is the current list of file paths that should be watched
|
196
|
+
# x.filepaths is the current list of file paths or glob patterns that should be watched
|
187
197
|
specific_file_watcher.update_watch_list(x.filepaths)
|
@@ -89,12 +89,12 @@
|
|
89
89
|
"ROUTE_ADD_DEFAULT_DATA_FOR_JSON_IMPORT": "/addDefaultDataForJSONImport",
|
90
90
|
"ROUTE_GET_JSON_SOURCE_PATH_TO_BE_DELETED": "/getJsonSourcePathToBeDeleted",
|
91
91
|
"ROUTE_MAKE_EV_REF_TEMPLATE_VAR_REPLACEMENTS": "/makeEVRefReplacements",
|
92
|
+
"ROUTE_CREATE_FILE": "/createFile",
|
92
93
|
"ROUTE_DELETE_FILE": "/deleteFile",
|
93
94
|
"ROUTE_CHECK_IF_FILE_EXISTS": "/checkIfFileExists",
|
94
95
|
"ROUTE_LOAD_ARTIFACT_FROM_DISK": "/loadArtifactFromDisk",
|
95
96
|
"ROUTE_RESTART_LANGUAGE_SERVER": "/restartLanguageServer",
|
96
97
|
"ROUTE_FILE_WATCH_LIST": "/fileWatchList",
|
97
|
-
"JSON_SOURCE_PREFIX": "JSON-",
|
98
98
|
"NESTED_PARAM": "NESTED_PARAM",
|
99
99
|
"ARGS_PREFIX": "__",
|
100
100
|
"TEMPLATE_PREFIX": "$",
|
@@ -65,7 +65,7 @@
|
|
65
65
|
"aspectRatioExtraWidth": 0,
|
66
66
|
"columnWidth": null,
|
67
67
|
"renderedValue": null,
|
68
|
-
"subprocessStartMethod": "
|
68
|
+
"subprocessStartMethod": "spawn",
|
69
69
|
"headingAsSectionName": false
|
70
70
|
},
|
71
71
|
"sectionVariant": {
|
@@ -94,7 +94,8 @@
|
|
94
94
|
"isFrozen": false,
|
95
95
|
"isSelected": false,
|
96
96
|
"evRefs": [],
|
97
|
-
"ignoreTypeErrors": false
|
97
|
+
"ignoreTypeErrors": false,
|
98
|
+
"jsonSource": null
|
98
99
|
},
|
99
100
|
"codeInfoCol": {
|
100
101
|
"children": { "null": [] }
|
@@ -42,21 +42,27 @@
|
|
42
42
|
},
|
43
43
|
"sectionVariants": {
|
44
44
|
"19f203aa-cae6-4ccc-928c-dab0194ade77": {
|
45
|
-
"name": "setta_files/setta-settings.json"
|
45
|
+
"name": "setta_files/setta-settings.json",
|
46
|
+
"codeInfoColId": "088e4b38-c05d-4b28-ab20-18763c0ac73d"
|
46
47
|
},
|
47
48
|
"f3cb4189-2692-4e75-b58f-76d632f44205": {
|
48
|
-
"name": "setta_files/setta-settings.json"
|
49
|
+
"name": "setta_files/setta-settings.json",
|
50
|
+
"codeInfoColId": "5f3093c9-2baa-4a46-b5ae-a36a7c1f17f2"
|
49
51
|
},
|
50
52
|
"36d29a06-7971-48d1-a1d2-23480f770d74": {
|
51
|
-
"name": "setta_files/setta-settings.json"
|
53
|
+
"name": "setta_files/setta-settings.json",
|
54
|
+
"codeInfoColId": "c88201be-0ff6-4f54-be88-6d2e448dcee8"
|
52
55
|
},
|
53
56
|
"4490975a-8d8d-4f02-8ed4-f48f8258f1ec": {
|
54
|
-
"name": "setta_files/setta-settings.json"
|
57
|
+
"name": "setta_files/setta-settings.json",
|
58
|
+
"codeInfoColId": "ed42bd5c-edfb-4620-8477-58bbb84ee69b"
|
55
59
|
},
|
56
60
|
"d2c7059a-8e28-488a-aa33-056476652d5e": {
|
57
|
-
"name": "setta_files/setta-settings.json"
|
61
|
+
"name": "setta_files/setta-settings.json",
|
62
|
+
"codeInfoColId": "baa5c9db-c2db-42c7-9cab-fda5cadf861c"
|
58
63
|
}
|
59
64
|
},
|
65
|
+
"artifacts": {},
|
60
66
|
"uiTypes": {
|
61
67
|
"90f2233a-2864-498f-a4df-4c027fa0c4a4": {
|
62
68
|
"id": "90f2233a-2864-498f-a4df-4c027fa0c4a4",
|
@@ -123,67 +129,67 @@
|
|
123
129
|
},
|
124
130
|
"uiTypeCols": {
|
125
131
|
"04f95495-52ba-4277-a79e-228bb1c6a5bc": {
|
126
|
-
"
|
132
|
+
"db7b5f4e-ee15-4f9a-9bab-fa84de3f5c00": {
|
127
133
|
"uiTypeId": "86b19dfb-742b-4d82-aa5f-5d4cca9f3d0a"
|
128
134
|
},
|
129
|
-
"
|
135
|
+
"5ec98205-d06c-4f13-9115-1d5eec76555b": {
|
130
136
|
"uiTypeId": "1ec5d8de-f984-451d-b43a-78917f698d52"
|
131
137
|
},
|
132
|
-
"
|
138
|
+
"b4b236b6-ec70-40cc-8765-8d1a30c1e572": {
|
133
139
|
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
134
140
|
},
|
135
|
-
"
|
141
|
+
"a2b36afb-f5ae-427b-ad8f-be12da5e2ec4": {
|
136
142
|
"uiTypeId": "74de30af-accf-44db-9b6b-da4260f0bd60"
|
137
143
|
},
|
138
|
-
"
|
144
|
+
"7ae66c69-3261-4882-a983-26b9bcf35063": {
|
139
145
|
"uiTypeId": "74de30af-accf-44db-9b6b-da4260f0bd60"
|
140
146
|
},
|
141
|
-
"
|
147
|
+
"d20faabd-e69e-40e6-bc6a-6ac29d7afbf0": {
|
142
148
|
"uiTypeId": "90f2233a-2864-498f-a4df-4c027fa0c4a4"
|
143
149
|
},
|
144
|
-
"
|
150
|
+
"b387688a-a761-4396-b99a-b60945d2db0a": {
|
145
151
|
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
146
152
|
},
|
147
|
-
"
|
153
|
+
"03b2da1e-f288-40fa-ad3c-881a6a4f186f": {
|
148
154
|
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
149
155
|
},
|
150
|
-
"
|
156
|
+
"7f9492a2-ce79-43ea-8778-49e256e3efaa": {
|
151
157
|
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
152
158
|
},
|
153
|
-
"
|
159
|
+
"b50f0c10-0115-4619-92e9-cc955539b72c": {
|
154
160
|
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
155
161
|
},
|
156
|
-
"
|
162
|
+
"15e8e73b-69ed-42cb-8970-06f09617d0b2": {
|
157
163
|
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
158
164
|
},
|
159
|
-
"
|
165
|
+
"581e7d04-9e4c-4f63-bec9-7f7d809e7f8e": {
|
160
166
|
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
161
167
|
},
|
162
|
-
"
|
168
|
+
"f7ffcc87-4649-4f8b-9d4b-8276f0ed3af7": {
|
163
169
|
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
164
170
|
},
|
165
|
-
"
|
171
|
+
"fbeb8bd7-dfe7-497a-9920-83450e875501": {
|
166
172
|
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
167
173
|
},
|
168
|
-
"
|
174
|
+
"fc1c467d-b745-46b6-8f8b-94f239e0abd8": {
|
169
175
|
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
170
176
|
},
|
171
|
-
"
|
177
|
+
"17466622-a5fb-4be8-8525-f06c88daae82": {
|
172
178
|
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
173
179
|
},
|
174
|
-
"
|
180
|
+
"85dafdca-efa6-43bc-9421-b65dd9614862": {
|
175
181
|
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
176
182
|
},
|
177
|
-
"
|
183
|
+
"df31626d-bb5c-44db-a72e-ea1ed9ddc57c": {
|
178
184
|
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
179
185
|
},
|
180
|
-
"
|
186
|
+
"60185329-1eeb-439c-8830-e7fb77f44568": {
|
181
187
|
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
182
188
|
},
|
183
|
-
"
|
189
|
+
"69b37725-50e6-4ddb-bd6c-f804f79e7c5a": {
|
184
190
|
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
185
191
|
},
|
186
|
-
"
|
192
|
+
"24a214fd-f10b-44f6-a6f4-0693538ee08d": {
|
187
193
|
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
188
194
|
}
|
189
195
|
}
|
@@ -270,7 +276,172 @@
|
|
270
276
|
"jsonSourceKeys": ["sections"]
|
271
277
|
}
|
272
278
|
},
|
273
|
-
"codeInfo": {
|
274
|
-
|
275
|
-
|
279
|
+
"codeInfo": {
|
280
|
+
"db7b5f4e-ee15-4f9a-9bab-fa84de3f5c00": {
|
281
|
+
"id": "db7b5f4e-ee15-4f9a-9bab-fa84de3f5c00",
|
282
|
+
"name": "panOnScrollMode",
|
283
|
+
"editable": true,
|
284
|
+
"jsonSource": "setta_files/setta-settings.json"
|
285
|
+
},
|
286
|
+
"5ec98205-d06c-4f13-9115-1d5eec76555b": {
|
287
|
+
"id": "5ec98205-d06c-4f13-9115-1d5eec76555b",
|
288
|
+
"name": "selectionMode",
|
289
|
+
"editable": true,
|
290
|
+
"jsonSource": "setta_files/setta-settings.json"
|
291
|
+
},
|
292
|
+
"b4b236b6-ec70-40cc-8765-8d1a30c1e572": {
|
293
|
+
"id": "b4b236b6-ec70-40cc-8765-8d1a30c1e572",
|
294
|
+
"name": "showGridLines",
|
295
|
+
"editable": true,
|
296
|
+
"jsonSource": "setta_files/setta-settings.json"
|
297
|
+
},
|
298
|
+
"a2b36afb-f5ae-427b-ad8f-be12da5e2ec4": {
|
299
|
+
"id": "a2b36afb-f5ae-427b-ad8f-be12da5e2ec4",
|
300
|
+
"name": "gridColor",
|
301
|
+
"editable": true,
|
302
|
+
"jsonSource": "setta_files/setta-settings.json"
|
303
|
+
},
|
304
|
+
"7ae66c69-3261-4882-a983-26b9bcf35063": {
|
305
|
+
"id": "7ae66c69-3261-4882-a983-26b9bcf35063",
|
306
|
+
"name": "gridColorDarkMode",
|
307
|
+
"editable": true,
|
308
|
+
"jsonSource": "setta_files/setta-settings.json"
|
309
|
+
},
|
310
|
+
"d20faabd-e69e-40e6-bc6a-6ac29d7afbf0": {
|
311
|
+
"id": "d20faabd-e69e-40e6-bc6a-6ac29d7afbf0",
|
312
|
+
"name": "gridPattern",
|
313
|
+
"editable": true,
|
314
|
+
"jsonSource": "setta_files/setta-settings.json"
|
315
|
+
},
|
316
|
+
"b387688a-a761-4396-b99a-b60945d2db0a": {
|
317
|
+
"id": "b387688a-a761-4396-b99a-b60945d2db0a",
|
318
|
+
"name": "showDefaultConfigOnLoad",
|
319
|
+
"editable": true,
|
320
|
+
"jsonSource": "setta_files/setta-settings.json"
|
321
|
+
},
|
322
|
+
"03b2da1e-f288-40fa-ad3c-881a6a4f186f": {
|
323
|
+
"id": "03b2da1e-f288-40fa-ad3c-881a6a4f186f",
|
324
|
+
"name": "inferImports",
|
325
|
+
"editable": true,
|
326
|
+
"jsonSource": "setta_files/setta-settings.json"
|
327
|
+
},
|
328
|
+
"7f9492a2-ce79-43ea-8778-49e256e3efaa": {
|
329
|
+
"id": "7f9492a2-ce79-43ea-8778-49e256e3efaa",
|
330
|
+
"name": "autosave",
|
331
|
+
"editable": true,
|
332
|
+
"jsonSource": "setta_files/setta-settings.json"
|
333
|
+
},
|
334
|
+
"b50f0c10-0115-4619-92e9-cc955539b72c": {
|
335
|
+
"id": "b50f0c10-0115-4619-92e9-cc955539b72c",
|
336
|
+
"name": "autobackup",
|
337
|
+
"editable": true,
|
338
|
+
"jsonSource": "setta_files/setta-settings.json"
|
339
|
+
},
|
340
|
+
"15e8e73b-69ed-42cb-8970-06f09617d0b2": {
|
341
|
+
"id": "15e8e73b-69ed-42cb-8970-06f09617d0b2",
|
342
|
+
"name": "leftSidePaneShiftsMap",
|
343
|
+
"editable": true,
|
344
|
+
"jsonSource": "setta_files/setta-settings.json"
|
345
|
+
},
|
346
|
+
"581e7d04-9e4c-4f63-bec9-7f7d809e7f8e": {
|
347
|
+
"id": "581e7d04-9e4c-4f63-bec9-7f7d809e7f8e",
|
348
|
+
"name": "panOnDrag",
|
349
|
+
"editable": true,
|
350
|
+
"jsonSource": "setta_files/setta-settings.json"
|
351
|
+
},
|
352
|
+
"f7ffcc87-4649-4f8b-9d4b-8276f0ed3af7": {
|
353
|
+
"id": "f7ffcc87-4649-4f8b-9d4b-8276f0ed3af7",
|
354
|
+
"name": "panOnScroll",
|
355
|
+
"editable": true,
|
356
|
+
"jsonSource": "setta_files/setta-settings.json"
|
357
|
+
},
|
358
|
+
"fbeb8bd7-dfe7-497a-9920-83450e875501": {
|
359
|
+
"id": "fbeb8bd7-dfe7-497a-9920-83450e875501",
|
360
|
+
"name": "zoomOnScroll",
|
361
|
+
"editable": true,
|
362
|
+
"jsonSource": "setta_files/setta-settings.json"
|
363
|
+
},
|
364
|
+
"fc1c467d-b745-46b6-8f8b-94f239e0abd8": {
|
365
|
+
"id": "fc1c467d-b745-46b6-8f8b-94f239e0abd8",
|
366
|
+
"name": "zoomOnPinch",
|
367
|
+
"editable": true,
|
368
|
+
"jsonSource": "setta_files/setta-settings.json"
|
369
|
+
},
|
370
|
+
"17466622-a5fb-4be8-8525-f06c88daae82": {
|
371
|
+
"id": "17466622-a5fb-4be8-8525-f06c88daae82",
|
372
|
+
"name": "zoomOnDoubleClick",
|
373
|
+
"editable": true,
|
374
|
+
"jsonSource": "setta_files/setta-settings.json"
|
375
|
+
},
|
376
|
+
"85dafdca-efa6-43bc-9421-b65dd9614862": {
|
377
|
+
"id": "85dafdca-efa6-43bc-9421-b65dd9614862",
|
378
|
+
"name": "clearTerminalBeforeMarkingAsReady",
|
379
|
+
"editable": true,
|
380
|
+
"jsonSource": "setta_files/setta-settings.json"
|
381
|
+
},
|
382
|
+
"df31626d-bb5c-44db-a72e-ea1ed9ddc57c": {
|
383
|
+
"id": "df31626d-bb5c-44db-a72e-ea1ed9ddc57c",
|
384
|
+
"name": "exportDbRawOnSave",
|
385
|
+
"editable": true,
|
386
|
+
"jsonSource": "setta_files/setta-settings.json"
|
387
|
+
},
|
388
|
+
"60185329-1eeb-439c-8830-e7fb77f44568": {
|
389
|
+
"id": "60185329-1eeb-439c-8830-e7fb77f44568",
|
390
|
+
"name": "exportDbReadableOnSave",
|
391
|
+
"editable": true,
|
392
|
+
"jsonSource": "setta_files/setta-settings.json"
|
393
|
+
},
|
394
|
+
"69b37725-50e6-4ddb-bd6c-f804f79e7c5a": {
|
395
|
+
"id": "69b37725-50e6-4ddb-bd6c-f804f79e7c5a",
|
396
|
+
"name": "exportDbReadableWithVariantsOnSave",
|
397
|
+
"editable": true,
|
398
|
+
"jsonSource": "setta_files/setta-settings.json"
|
399
|
+
},
|
400
|
+
"24a214fd-f10b-44f6-a6f4-0693538ee08d": {
|
401
|
+
"id": "24a214fd-f10b-44f6-a6f4-0693538ee08d",
|
402
|
+
"name": "saveRenderedValues",
|
403
|
+
"editable": true,
|
404
|
+
"jsonSource": "setta_files/setta-settings.json"
|
405
|
+
}
|
406
|
+
},
|
407
|
+
"codeInfoCols": {
|
408
|
+
"088e4b38-c05d-4b28-ab20-18763c0ac73d": {
|
409
|
+
"children": {}
|
410
|
+
},
|
411
|
+
"5f3093c9-2baa-4a46-b5ae-a36a7c1f17f2": {
|
412
|
+
"children": {
|
413
|
+
"b4b236b6-ec70-40cc-8765-8d1a30c1e572": [],
|
414
|
+
"d20faabd-e69e-40e6-bc6a-6ac29d7afbf0": [],
|
415
|
+
"a2b36afb-f5ae-427b-ad8f-be12da5e2ec4": [],
|
416
|
+
"7ae66c69-3261-4882-a983-26b9bcf35063": [],
|
417
|
+
"581e7d04-9e4c-4f63-bec9-7f7d809e7f8e": [],
|
418
|
+
"f7ffcc87-4649-4f8b-9d4b-8276f0ed3af7": [],
|
419
|
+
"db7b5f4e-ee15-4f9a-9bab-fa84de3f5c00": [],
|
420
|
+
"fbeb8bd7-dfe7-497a-9920-83450e875501": [],
|
421
|
+
"fc1c467d-b745-46b6-8f8b-94f239e0abd8": [],
|
422
|
+
"17466622-a5fb-4be8-8525-f06c88daae82": [],
|
423
|
+
"5ec98205-d06c-4f13-9115-1d5eec76555b": [],
|
424
|
+
"15e8e73b-69ed-42cb-8970-06f09617d0b2": []
|
425
|
+
}
|
426
|
+
},
|
427
|
+
"c88201be-0ff6-4f54-be88-6d2e448dcee8": {
|
428
|
+
"children": {
|
429
|
+
"b387688a-a761-4396-b99a-b60945d2db0a": [],
|
430
|
+
"03b2da1e-f288-40fa-ad3c-881a6a4f186f": [],
|
431
|
+
"7f9492a2-ce79-43ea-8778-49e256e3efaa": [],
|
432
|
+
"b50f0c10-0115-4619-92e9-cc955539b72c": [],
|
433
|
+
"85dafdca-efa6-43bc-9421-b65dd9614862": [],
|
434
|
+
"df31626d-bb5c-44db-a72e-ea1ed9ddc57c": [],
|
435
|
+
"60185329-1eeb-439c-8830-e7fb77f44568": [],
|
436
|
+
"69b37725-50e6-4ddb-bd6c-f804f79e7c5a": [],
|
437
|
+
"24a214fd-f10b-44f6-a6f4-0693538ee08d": []
|
438
|
+
}
|
439
|
+
},
|
440
|
+
"ed42bd5c-edfb-4620-8477-58bbb84ee69b": {
|
441
|
+
"children": {}
|
442
|
+
},
|
443
|
+
"baa5c9db-c2db-42c7-9cab-fda5cadf861c": {
|
444
|
+
"children": {}
|
445
|
+
}
|
446
|
+
}
|
276
447
|
}
|