setta 0.0.1__py3-none-any.whl → 0.0.2__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- setta/__init__.py +1 -1
- setta/cli/__init__.py +1 -0
- setta/cli/connect.py +43 -0
- setta/cli/logger.py +225 -0
- setta/code_gen/__init__.py +0 -0
- setta/code_gen/create_runnable_scripts.py +466 -0
- setta/code_gen/export_selected.py +776 -0
- setta/code_gen/find_placeholders.py +13 -0
- setta/code_gen/python/__init__.py +0 -0
- setta/code_gen/python/ast_utils.py +183 -0
- setta/code_gen/python/check_scope.py +187 -0
- setta/code_gen/python/generate_code.py +280 -0
- setta/code_gen/python/make_parseable.py +97 -0
- setta/code_gen/python/position_line_col.py +33 -0
- setta/code_gen/python/validate_imports.py +87 -0
- setta/code_gen/utils.py +120 -0
- setta/code_gen/yaml/__init__.py +0 -0
- setta/code_gen/yaml/generate_yaml.py +23 -0
- setta/code_gen/yaml/section_dict.py +93 -0
- setta/database/__init__.py +0 -0
- setta/database/backup.py +80 -0
- setta/database/db/__init__.py +0 -0
- setta/database/db/artifacts/__init__.py +0 -0
- setta/database/db/artifacts/load.py +93 -0
- setta/database/db/artifacts/save.py +85 -0
- setta/database/db/artifacts/save_or_create.py +68 -0
- setta/database/db/artifacts/utils.py +13 -0
- setta/database/db/codeInfo/__init__.py +0 -0
- setta/database/db/codeInfo/copy.py +26 -0
- setta/database/db/codeInfo/load.py +65 -0
- setta/database/db/codeInfo/save.py +75 -0
- setta/database/db/codeInfo/utils.py +33 -0
- setta/database/db/evRefs/__init__.py +0 -0
- setta/database/db/evRefs/load.py +45 -0
- setta/database/db/evRefs/save.py +95 -0
- setta/database/db/projects/__init__.py +0 -0
- setta/database/db/projects/copy.py +36 -0
- setta/database/db/projects/delete.py +7 -0
- setta/database/db/projects/load.py +184 -0
- setta/database/db/projects/save.py +267 -0
- setta/database/db/projects/saveAs.py +40 -0
- setta/database/db/projects/utils.py +135 -0
- setta/database/db/sectionVariants/__init__.py +0 -0
- setta/database/db/sectionVariants/copy.py +28 -0
- setta/database/db/sectionVariants/load.py +139 -0
- setta/database/db/sectionVariants/save.py +140 -0
- setta/database/db/sectionVariants/utils.py +44 -0
- setta/database/db/sections/__init__.py +0 -0
- setta/database/db/sections/copy.py +70 -0
- setta/database/db/sections/jsonSource.py +119 -0
- setta/database/db/sections/load.py +350 -0
- setta/database/db/sections/save.py +204 -0
- setta/database/db/sections/utils.py +13 -0
- setta/database/db/uiTypes/__init__.py +0 -0
- setta/database/db/uiTypes/copy.py +33 -0
- setta/database/db/uiTypes/load.py +51 -0
- setta/database/db/uiTypes/save.py +99 -0
- setta/database/db/uiTypes/utils.py +27 -0
- setta/database/db_init.py +36 -0
- setta/database/db_objs.py +102 -0
- setta/database/db_path.py +8 -0
- setta/database/export_db/__init__.py +0 -0
- setta/database/export_db/export_db.py +43 -0
- setta/database/export_db/export_raw.py +53 -0
- setta/database/export_db/export_readable.py +242 -0
- setta/database/export_db/utils.py +16 -0
- setta/database/import_db.py +28 -0
- setta/database/seed.py +41 -0
- setta/database/settings_file.py +118 -0
- setta/database/utils.py +32 -0
- setta/lsp/__init__.py +0 -0
- setta/lsp/file_watcher.py +113 -0
- setta/lsp/reader.py +184 -0
- setta/lsp/reader_fns/__init__.py +0 -0
- setta/lsp/reader_fns/completion.py +84 -0
- setta/lsp/reader_fns/definition.py +2 -0
- setta/lsp/reader_fns/diagnostics.py +99 -0
- setta/lsp/reader_fns/documentHighlight.py +25 -0
- setta/lsp/reader_fns/references.py +34 -0
- setta/lsp/reader_fns/signatureHelp.py +99 -0
- setta/lsp/server.py +150 -0
- setta/lsp/utils.py +60 -0
- setta/lsp/writer.py +306 -0
- setta/routers/__init__.py +11 -0
- setta/routers/artifact.py +105 -0
- setta/routers/code_info.py +32 -0
- setta/routers/dependencies.py +49 -0
- setta/routers/in_memory_fn_stdout_websocket.py +21 -0
- setta/routers/interactive.py +119 -0
- setta/routers/lsp.py +14 -0
- setta/routers/projects.py +188 -0
- setta/routers/reference_renaming.py +111 -0
- setta/routers/sections.py +174 -0
- setta/routers/settings.py +40 -0
- setta/routers/terminals.py +83 -0
- setta/routers/websocket.py +36 -0
- setta/server.py +141 -0
- setta/start.py +112 -0
- setta/static/constants/BaseUITypes.json +153 -0
- setta/static/constants/Settings.json +113 -0
- setta/static/constants/constants.json +117 -0
- setta/static/constants/db_init.sql +249 -0
- setta/static/constants/defaultValues.json +125 -0
- setta/static/constants/settingsProject.json +276 -0
- setta/static/frontend/android-chrome-192x192.png +0 -0
- setta/static/frontend/android-chrome-512x512.png +0 -0
- setta/static/frontend/apple-touch-icon.png +0 -0
- setta/static/frontend/assets/KaTeX_AMS-Regular-0cdd387c.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_AMS-Regular-30da91e8.woff +0 -0
- setta/static/frontend/assets/KaTeX_AMS-Regular-68534840.ttf +0 -0
- setta/static/frontend/assets/KaTeX_Caligraphic-Bold-07d8e303.ttf +0 -0
- setta/static/frontend/assets/KaTeX_Caligraphic-Bold-1ae6bd74.woff +0 -0
- setta/static/frontend/assets/KaTeX_Caligraphic-Bold-de7701e4.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_Caligraphic-Regular-3398dd02.woff +0 -0
- setta/static/frontend/assets/KaTeX_Caligraphic-Regular-5d53e70a.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_Caligraphic-Regular-ed0b7437.ttf +0 -0
- setta/static/frontend/assets/KaTeX_Fraktur-Bold-74444efd.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_Fraktur-Bold-9163df9c.ttf +0 -0
- setta/static/frontend/assets/KaTeX_Fraktur-Bold-9be7ceb8.woff +0 -0
- setta/static/frontend/assets/KaTeX_Fraktur-Regular-1e6f9579.ttf +0 -0
- setta/static/frontend/assets/KaTeX_Fraktur-Regular-51814d27.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_Fraktur-Regular-5e28753b.woff +0 -0
- setta/static/frontend/assets/KaTeX_Main-Bold-0f60d1b8.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_Main-Bold-138ac28d.ttf +0 -0
- setta/static/frontend/assets/KaTeX_Main-Bold-c76c5d69.woff +0 -0
- setta/static/frontend/assets/KaTeX_Main-BoldItalic-70ee1f64.ttf +0 -0
- setta/static/frontend/assets/KaTeX_Main-BoldItalic-99cd42a3.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_Main-BoldItalic-a6f7ec0d.woff +0 -0
- setta/static/frontend/assets/KaTeX_Main-Italic-0d85ae7c.ttf +0 -0
- setta/static/frontend/assets/KaTeX_Main-Italic-97479ca6.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_Main-Italic-f1d6ef86.woff +0 -0
- setta/static/frontend/assets/KaTeX_Main-Regular-c2342cd8.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_Main-Regular-c6368d87.woff +0 -0
- setta/static/frontend/assets/KaTeX_Main-Regular-d0332f52.ttf +0 -0
- setta/static/frontend/assets/KaTeX_Math-BoldItalic-850c0af5.woff +0 -0
- setta/static/frontend/assets/KaTeX_Math-BoldItalic-dc47344d.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_Math-BoldItalic-f9377ab0.ttf +0 -0
- setta/static/frontend/assets/KaTeX_Math-Italic-08ce98e5.ttf +0 -0
- setta/static/frontend/assets/KaTeX_Math-Italic-7af58c5e.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_Math-Italic-8a8d2445.woff +0 -0
- setta/static/frontend/assets/KaTeX_SansSerif-Bold-1ece03f7.ttf +0 -0
- setta/static/frontend/assets/KaTeX_SansSerif-Bold-e99ae511.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_SansSerif-Bold-ece03cfd.woff +0 -0
- setta/static/frontend/assets/KaTeX_SansSerif-Italic-00b26ac8.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_SansSerif-Italic-3931dd81.ttf +0 -0
- setta/static/frontend/assets/KaTeX_SansSerif-Italic-91ee6750.woff +0 -0
- setta/static/frontend/assets/KaTeX_SansSerif-Regular-11e4dc8a.woff +0 -0
- setta/static/frontend/assets/KaTeX_SansSerif-Regular-68e8c73e.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_SansSerif-Regular-f36ea897.ttf +0 -0
- setta/static/frontend/assets/KaTeX_Script-Regular-036d4e95.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_Script-Regular-1c67f068.ttf +0 -0
- setta/static/frontend/assets/KaTeX_Script-Regular-d96cdf2b.woff +0 -0
- setta/static/frontend/assets/KaTeX_Size1-Regular-6b47c401.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_Size1-Regular-95b6d2f1.ttf +0 -0
- setta/static/frontend/assets/KaTeX_Size1-Regular-c943cc98.woff +0 -0
- setta/static/frontend/assets/KaTeX_Size2-Regular-2014c523.woff +0 -0
- setta/static/frontend/assets/KaTeX_Size2-Regular-a6b2099f.ttf +0 -0
- setta/static/frontend/assets/KaTeX_Size2-Regular-d04c5421.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_Size3-Regular-500e04d5.ttf +0 -0
- setta/static/frontend/assets/KaTeX_Size3-Regular-6ab6b62e.woff +0 -0
- setta/static/frontend/assets/KaTeX_Size4-Regular-99f9c675.woff +0 -0
- setta/static/frontend/assets/KaTeX_Size4-Regular-a4af7d41.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_Size4-Regular-c647367d.ttf +0 -0
- setta/static/frontend/assets/KaTeX_Typewriter-Regular-71d517d6.woff2 +0 -0
- setta/static/frontend/assets/KaTeX_Typewriter-Regular-e14fed02.woff +0 -0
- setta/static/frontend/assets/KaTeX_Typewriter-Regular-f01f3e87.ttf +0 -0
- setta/static/frontend/assets/cormorant-garamond-all-700-italic-c9b58582.woff +0 -0
- setta/static/frontend/assets/cormorant-garamond-cyrillic-700-italic-9101ad5f.woff2 +0 -0
- setta/static/frontend/assets/cormorant-garamond-cyrillic-ext-700-italic-950de0d6.woff2 +0 -0
- setta/static/frontend/assets/cormorant-garamond-latin-700-italic-0bc53e12.woff2 +0 -0
- setta/static/frontend/assets/cormorant-garamond-latin-ext-700-italic-525738e0.woff2 +0 -0
- setta/static/frontend/assets/cormorant-garamond-vietnamese-700-italic-99563037.woff2 +0 -0
- setta/static/frontend/assets/erase-5e0448ea.svg +15 -0
- setta/static/frontend/assets/index-1d4b4ecf.css +32 -0
- setta/static/frontend/assets/index-ee99dc72.js +678 -0
- setta/static/frontend/assets/inter-all-400-normal-054f12d0.woff +0 -0
- setta/static/frontend/assets/inter-all-600-normal-c03769e5.woff +0 -0
- setta/static/frontend/assets/inter-all-800-normal-15dc6e4b.woff +0 -0
- setta/static/frontend/assets/inter-cyrillic-400-normal-a4eee61a.woff2 +0 -0
- setta/static/frontend/assets/inter-cyrillic-600-normal-8b14f703.woff2 +0 -0
- setta/static/frontend/assets/inter-cyrillic-800-normal-e706eaaa.woff2 +0 -0
- setta/static/frontend/assets/inter-cyrillic-ext-400-normal-70047a3b.woff2 +0 -0
- setta/static/frontend/assets/inter-cyrillic-ext-600-normal-d4ab9bc4.woff2 +0 -0
- setta/static/frontend/assets/inter-cyrillic-ext-800-normal-eae7515a.woff2 +0 -0
- setta/static/frontend/assets/inter-greek-400-normal-381ea30d.woff2 +0 -0
- setta/static/frontend/assets/inter-greek-600-normal-601f93a2.woff2 +0 -0
- setta/static/frontend/assets/inter-greek-800-normal-7af4fb64.woff2 +0 -0
- setta/static/frontend/assets/inter-greek-ext-400-normal-27027b17.woff2 +0 -0
- setta/static/frontend/assets/inter-greek-ext-600-normal-f2ddf9de.woff2 +0 -0
- setta/static/frontend/assets/inter-greek-ext-800-normal-4cb6189e.woff2 +0 -0
- setta/static/frontend/assets/inter-latin-400-normal-d56fec21.woff2 +0 -0
- setta/static/frontend/assets/inter-latin-600-normal-ff769fa6.woff2 +0 -0
- setta/static/frontend/assets/inter-latin-800-normal-5eea1309.woff2 +0 -0
- setta/static/frontend/assets/inter-latin-ext-400-normal-bb698d85.woff2 +0 -0
- setta/static/frontend/assets/inter-latin-ext-600-normal-ca4808f9.woff2 +0 -0
- setta/static/frontend/assets/inter-latin-ext-800-normal-ebdacc0f.woff2 +0 -0
- setta/static/frontend/assets/logo/logo.svg +8 -0
- setta/static/frontend/assets/pen-455d7d8a.svg +19 -0
- setta/static/frontend/assets/source-code-pro-all-500-normal-6bdaa03b.woff +0 -0
- setta/static/frontend/assets/source-code-pro-cyrillic-500-normal-288a0d68.woff2 +0 -0
- setta/static/frontend/assets/source-code-pro-cyrillic-ext-500-normal-b110a13b.woff2 +0 -0
- setta/static/frontend/assets/source-code-pro-greek-500-normal-04328acb.woff2 +0 -0
- setta/static/frontend/assets/source-code-pro-latin-500-normal-06edef1e.woff2 +0 -0
- setta/static/frontend/assets/source-code-pro-latin-ext-500-normal-6dc60d5e.woff2 +0 -0
- setta/static/frontend/assets/web-vitals-44a8e082.js +1 -0
- setta/static/frontend/assets/work-sans-all-400-normal-38034a3c.woff +0 -0
- setta/static/frontend/assets/work-sans-all-500-normal-550d64e5.woff +0 -0
- setta/static/frontend/assets/work-sans-all-600-normal-ccf14060.woff +0 -0
- setta/static/frontend/assets/work-sans-all-700-normal-494c2971.woff +0 -0
- setta/static/frontend/assets/work-sans-latin-400-normal-36735bc1.woff2 +0 -0
- setta/static/frontend/assets/work-sans-latin-500-normal-3790bfda.woff2 +0 -0
- setta/static/frontend/assets/work-sans-latin-600-normal-5fba494e.woff2 +0 -0
- setta/static/frontend/assets/work-sans-latin-700-normal-a5033d0a.woff2 +0 -0
- setta/static/frontend/assets/work-sans-latin-ext-400-normal-c20f571a.woff2 +0 -0
- setta/static/frontend/assets/work-sans-latin-ext-500-normal-0f5ac96c.woff2 +0 -0
- setta/static/frontend/assets/work-sans-latin-ext-600-normal-97a237d1.woff2 +0 -0
- setta/static/frontend/assets/work-sans-latin-ext-700-normal-103e112c.woff2 +0 -0
- setta/static/frontend/browserconfig.xml +9 -0
- setta/static/frontend/favicon-16x16.png +0 -0
- setta/static/frontend/favicon-32x32.png +0 -0
- setta/static/frontend/favicon.ico +0 -0
- setta/static/frontend/index.html +30 -0
- setta/static/frontend/manifest.json +25 -0
- setta/static/frontend/mstile-144x144.png +0 -0
- setta/static/frontend/mstile-150x150.png +0 -0
- setta/static/frontend/mstile-310x150.png +0 -0
- setta/static/frontend/mstile-310x310.png +0 -0
- setta/static/frontend/mstile-70x70.png +0 -0
- setta/static/frontend/robots.txt +3 -0
- setta/static/frontend/safari-pinned-tab.svg +18 -0
- setta/static/frontend/site.webmanifest +19 -0
- setta/static/seed/.DS_Store +0 -0
- setta/static/seed/examples/.DS_Store +0 -0
- setta/tasks/__init__.py +0 -0
- setta/tasks/fns/__init__.py +9 -0
- setta/tasks/fns/codeAreaAutocomplete.py +209 -0
- setta/tasks/fns/codeAreaFindTemplateVars.py +128 -0
- setta/tasks/fns/codeAreaInitializeCode.py +98 -0
- setta/tasks/fns/findEVRefs.py +236 -0
- setta/tasks/fns/parametersRequest.py +71 -0
- setta/tasks/fns/textFieldAutocomplete.py +210 -0
- setta/tasks/fns/textFieldInitializeCode.py +99 -0
- setta/tasks/fns/typeCheck.py +40 -0
- setta/tasks/fns/utils.py +134 -0
- setta/tasks/task_runner.py +29 -0
- setta/tasks/tasks.py +152 -0
- setta/tasks/utils.py +178 -0
- setta/terminals/__init__.py +0 -0
- setta/terminals/terminals.py +242 -0
- setta/terminals/utils.py +37 -0
- setta/utils/__init__.py +0 -0
- setta/utils/constants.py +148 -0
- setta/utils/generate_memorable_string.py +431 -0
- setta/utils/generate_new_filename.py +80 -0
- setta/utils/section_contents.py +133 -0
- setta/utils/utils.py +271 -0
- setta/utils/websocket_manager.py +91 -0
- setta-0.0.2.dist-info/LICENSE +201 -0
- setta-0.0.2.dist-info/METADATA +24 -0
- setta-0.0.2.dist-info/RECORD +263 -0
- {setta-0.0.1.dist-info → setta-0.0.2.dist-info}/WHEEL +1 -1
- setta-0.0.2.dist-info/entry_points.txt +2 -0
- setta-0.0.1.dist-info/METADATA +0 -18
- setta-0.0.1.dist-info/RECORD +0 -5
- {setta-0.0.1.dist-info → setta-0.0.2.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,125 @@
|
|
1
|
+
{
|
2
|
+
"projectConfig": {
|
3
|
+
"id": null,
|
4
|
+
"name": "",
|
5
|
+
"previewImgColor": "bg-blue-500/60 dark:bg-blue-600/30",
|
6
|
+
"viewport": null,
|
7
|
+
"children": {}
|
8
|
+
},
|
9
|
+
"section": {
|
10
|
+
"id": null,
|
11
|
+
"name": "",
|
12
|
+
"size": { "width": "auto", "height": "auto" },
|
13
|
+
"parentId": null,
|
14
|
+
"variantId": null,
|
15
|
+
"uiTypeId": null,
|
16
|
+
"uiTypeColId": null,
|
17
|
+
"social": "",
|
18
|
+
"artifactGroupIds": [],
|
19
|
+
"defaultVariantId": null,
|
20
|
+
"variantIds": [],
|
21
|
+
"paramSweepSectionId": null,
|
22
|
+
"nonPresetUITypeIds": [],
|
23
|
+
"codeLanguage": "python",
|
24
|
+
"configLanguage": "python",
|
25
|
+
"runInMemory": false,
|
26
|
+
"isFrozen": false,
|
27
|
+
"isHorizontalOrientation": false,
|
28
|
+
"hideParams": false,
|
29
|
+
"hideSearch": false,
|
30
|
+
"hideUnpinnedParams": false,
|
31
|
+
"displayMode": "GUI",
|
32
|
+
"pinnedAreaHeight": "auto",
|
33
|
+
"isMinimized": false,
|
34
|
+
"canvasSettings": {
|
35
|
+
"activeLayerId": null,
|
36
|
+
"color": "#ff0000",
|
37
|
+
"brushSize": 16,
|
38
|
+
"brushShape": "butt",
|
39
|
+
"eraserBrushSize": 16,
|
40
|
+
"drawThrottleDelay": 0,
|
41
|
+
"canvasTransferQueueLength": 50,
|
42
|
+
"artifactIdUsedToSetCanvasSize": null,
|
43
|
+
"mode": "draw"
|
44
|
+
},
|
45
|
+
"chartSettings": {
|
46
|
+
"type": "line",
|
47
|
+
"xAxisColumn": "",
|
48
|
+
"secondYAxisColumns": [],
|
49
|
+
"xAxisLog": false,
|
50
|
+
"y1AxisLog": false,
|
51
|
+
"y2AxisLog": false
|
52
|
+
},
|
53
|
+
"isTemporary": false,
|
54
|
+
"isReadOnlyTerminal": false,
|
55
|
+
"renderMarkdown": false,
|
56
|
+
"positionAndSizeLocked": false,
|
57
|
+
"jsonSource": "",
|
58
|
+
"jsonSourceKeys": [],
|
59
|
+
"selectedVariantIds": {},
|
60
|
+
"paramFilter": "",
|
61
|
+
"jsonSourceMissing": false,
|
62
|
+
"isInOtherProjectConfigs": false,
|
63
|
+
"aspectRatio": false,
|
64
|
+
"aspectRatioExtraHeight": 0,
|
65
|
+
"aspectRatioExtraWidth": 0,
|
66
|
+
"columnWidth": null,
|
67
|
+
"renderedValue": null
|
68
|
+
},
|
69
|
+
"sectionVariant": {
|
70
|
+
"name": "",
|
71
|
+
"values": {},
|
72
|
+
"children": [],
|
73
|
+
"selectedItem": null,
|
74
|
+
"code": "",
|
75
|
+
"codeInfoColId": null,
|
76
|
+
"description": "",
|
77
|
+
"evRefs": [],
|
78
|
+
"templateVars": [],
|
79
|
+
"isFrozen": false,
|
80
|
+
"sweep": [],
|
81
|
+
"runGroup": {}
|
82
|
+
},
|
83
|
+
"codeInfo": {
|
84
|
+
"id": null,
|
85
|
+
"name": "",
|
86
|
+
"editable": false,
|
87
|
+
"rcType": "parameter",
|
88
|
+
"defaultVal": "",
|
89
|
+
"description": "",
|
90
|
+
"positionalOnly": false,
|
91
|
+
"isPinned": false,
|
92
|
+
"isFrozen": false,
|
93
|
+
"isSelected": false,
|
94
|
+
"evRefs": []
|
95
|
+
},
|
96
|
+
"codeInfoCol": {
|
97
|
+
"children": { "null": [] }
|
98
|
+
},
|
99
|
+
"uiType": {
|
100
|
+
"id": null,
|
101
|
+
"type": "TEXT",
|
102
|
+
"name": "",
|
103
|
+
"presetType": "BASE",
|
104
|
+
"config": {}
|
105
|
+
},
|
106
|
+
"evEntry": { "value": "", "evRefs": [] },
|
107
|
+
"runGroupEntry": { "selected": true, "paramSweeps": {}, "versions": {} },
|
108
|
+
"uiTypeColEntry": {
|
109
|
+
"uiTypeId": "3fdaeb6a-e989-4888-b844-17a76f0b0192",
|
110
|
+
"nonPresetUITypeIds": []
|
111
|
+
},
|
112
|
+
"evRefEntry": {
|
113
|
+
"sectionId": null,
|
114
|
+
"paramInfoId": null,
|
115
|
+
"isArgsObj": false,
|
116
|
+
"startPos": 0,
|
117
|
+
"keyword": ""
|
118
|
+
},
|
119
|
+
"artifact": {
|
120
|
+
"name": "",
|
121
|
+
"path": "",
|
122
|
+
"value": null,
|
123
|
+
"type": ""
|
124
|
+
}
|
125
|
+
}
|
@@ -0,0 +1,276 @@
|
|
1
|
+
{
|
2
|
+
"projectConfig": {
|
3
|
+
"id": "a5dfa397-089a-4f5e-bbec-978a314b4266",
|
4
|
+
"name": "settings",
|
5
|
+
"children": {
|
6
|
+
"69084c06-aa67-4e6b-8098-3334044eebc9": {
|
7
|
+
"x": 0,
|
8
|
+
"y": 119,
|
9
|
+
"zIndex": 0,
|
10
|
+
"w": 552,
|
11
|
+
"h": 938
|
12
|
+
},
|
13
|
+
"6b264a9a-0f87-4288-80aa-45cc6b16db96": {
|
14
|
+
"x": 600,
|
15
|
+
"y": 119,
|
16
|
+
"zIndex": 0,
|
17
|
+
"w": 552,
|
18
|
+
"h": 506
|
19
|
+
},
|
20
|
+
"f74b5aaf-d11d-4153-b55b-9c18e11e3a73": {
|
21
|
+
"x": 1200,
|
22
|
+
"y": 119,
|
23
|
+
"zIndex": 0,
|
24
|
+
"w": 552,
|
25
|
+
"h": 338
|
26
|
+
},
|
27
|
+
"8389d4b3-0a1e-4c44-819b-7c745d6c3f1b": {
|
28
|
+
"x": 1800,
|
29
|
+
"y": 119,
|
30
|
+
"zIndex": 0,
|
31
|
+
"w": 552,
|
32
|
+
"h": 80
|
33
|
+
},
|
34
|
+
"514c2046-25de-4b0a-b6f9-fca1dd14ad8e": {
|
35
|
+
"x": 2400,
|
36
|
+
"y": 119,
|
37
|
+
"zIndex": 0,
|
38
|
+
"w": 552,
|
39
|
+
"h": 458
|
40
|
+
}
|
41
|
+
}
|
42
|
+
},
|
43
|
+
"sectionVariants": {
|
44
|
+
"19f203aa-cae6-4ccc-928c-dab0194ade77": {
|
45
|
+
"name": "setta-settings.json"
|
46
|
+
},
|
47
|
+
"f3cb4189-2692-4e75-b58f-76d632f44205": {
|
48
|
+
"name": "setta-settings.json"
|
49
|
+
},
|
50
|
+
"36d29a06-7971-48d1-a1d2-23480f770d74": {
|
51
|
+
"name": "setta-settings.json"
|
52
|
+
},
|
53
|
+
"4490975a-8d8d-4f02-8ed4-f48f8258f1ec": {
|
54
|
+
"name": "setta-settings.json"
|
55
|
+
},
|
56
|
+
"d2c7059a-8e28-488a-aa33-056476652d5e": {
|
57
|
+
"name": "setta-settings.json"
|
58
|
+
}
|
59
|
+
},
|
60
|
+
"uiTypes": {
|
61
|
+
"90f2233a-2864-498f-a4df-4c027fa0c4a4": {
|
62
|
+
"id": "90f2233a-2864-498f-a4df-4c027fa0c4a4",
|
63
|
+
"type": "DROPDOWN",
|
64
|
+
"name": "Grid Patterns",
|
65
|
+
"presetType": "USER",
|
66
|
+
"config": {
|
67
|
+
"choices": [
|
68
|
+
{
|
69
|
+
"id": "\"Dots\"",
|
70
|
+
"name": "\"Dots\""
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"id": "\"Lines\"",
|
74
|
+
"name": "\"Lines\""
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"id": "\"Cross\"",
|
78
|
+
"name": "\"Cross\""
|
79
|
+
}
|
80
|
+
]
|
81
|
+
}
|
82
|
+
},
|
83
|
+
"1ec5d8de-f984-451d-b43a-78917f698d52": {
|
84
|
+
"id": "1ec5d8de-f984-451d-b43a-78917f698d52",
|
85
|
+
"type": "DROPDOWN",
|
86
|
+
"name": "Selection Modes",
|
87
|
+
"presetType": "USER",
|
88
|
+
"config": {
|
89
|
+
"choices": [
|
90
|
+
{
|
91
|
+
"id": "\"partial\"",
|
92
|
+
"name": "\"partial\""
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"id": "\"full\"",
|
96
|
+
"name": "\"full\""
|
97
|
+
}
|
98
|
+
]
|
99
|
+
}
|
100
|
+
},
|
101
|
+
"86b19dfb-742b-4d82-aa5f-5d4cca9f3d0a": {
|
102
|
+
"id": "86b19dfb-742b-4d82-aa5f-5d4cca9f3d0a",
|
103
|
+
"type": "DROPDOWN",
|
104
|
+
"name": "Pan-On-Scroll Modes",
|
105
|
+
"presetType": "USER",
|
106
|
+
"config": {
|
107
|
+
"choices": [
|
108
|
+
{
|
109
|
+
"id": "\"free\"",
|
110
|
+
"name": "\"free\""
|
111
|
+
},
|
112
|
+
{
|
113
|
+
"id": "\"vertical\"",
|
114
|
+
"name": "\"vertical\""
|
115
|
+
},
|
116
|
+
{
|
117
|
+
"id": "\"horizontal\"",
|
118
|
+
"name": "\"horizontal\""
|
119
|
+
}
|
120
|
+
]
|
121
|
+
}
|
122
|
+
}
|
123
|
+
},
|
124
|
+
"uiTypeCols": {
|
125
|
+
"04f95495-52ba-4277-a79e-228bb1c6a5bc": {
|
126
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"gui\",\"panOnScrollMode\"]}": {
|
127
|
+
"uiTypeId": "86b19dfb-742b-4d82-aa5f-5d4cca9f3d0a"
|
128
|
+
},
|
129
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"gui\",\"selectionMode\"]}": {
|
130
|
+
"uiTypeId": "1ec5d8de-f984-451d-b43a-78917f698d52"
|
131
|
+
},
|
132
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"gui\",\"showGridLines\"]}": {
|
133
|
+
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
134
|
+
},
|
135
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"gui\",\"gridColor\"]}": {
|
136
|
+
"uiTypeId": "74de30af-accf-44db-9b6b-da4260f0bd60"
|
137
|
+
},
|
138
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"gui\",\"gridColorDarkMode\"]}": {
|
139
|
+
"uiTypeId": "74de30af-accf-44db-9b6b-da4260f0bd60"
|
140
|
+
},
|
141
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"gui\",\"gridPattern\"]}": {
|
142
|
+
"uiTypeId": "90f2233a-2864-498f-a4df-4c027fa0c4a4"
|
143
|
+
},
|
144
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"backend\",\"showDefaultConfigOnLoad\"]}": {
|
145
|
+
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
146
|
+
},
|
147
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"backend\",\"inferImports\"]}": {
|
148
|
+
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
149
|
+
},
|
150
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"backend\",\"autosave\"]}": {
|
151
|
+
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
152
|
+
},
|
153
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"backend\",\"autobackup\"]}": {
|
154
|
+
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
155
|
+
},
|
156
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"gui\",\"leftSidePaneShiftsMap\"]}": {
|
157
|
+
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
158
|
+
},
|
159
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"gui\",\"panOnDrag\"]}": {
|
160
|
+
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
161
|
+
},
|
162
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"gui\",\"panOnScroll\"]}": {
|
163
|
+
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
164
|
+
},
|
165
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"gui\",\"zoomOnScroll\"]}": {
|
166
|
+
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
167
|
+
},
|
168
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"gui\",\"zoomOnPinch\"]}": {
|
169
|
+
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
170
|
+
},
|
171
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"gui\",\"zoomOnDoubleClick\"]}": {
|
172
|
+
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
173
|
+
},
|
174
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"backend\",\"clearTerminalBeforeMarkingAsReady\"]}": {
|
175
|
+
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
176
|
+
},
|
177
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"backend\",\"exportDbRawOnSave\"]}": {
|
178
|
+
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
179
|
+
},
|
180
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"backend\",\"exportDbReadableOnSave\"]}": {
|
181
|
+
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
182
|
+
},
|
183
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"backend\",\"exportDbReadableWithVariantsOnSave\"]}": {
|
184
|
+
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
185
|
+
},
|
186
|
+
"JSON-{\"filenameGlob\":\"setta-settings*.json\",\"key\":[\"backend\",\"saveRenderedValues\"]}": {
|
187
|
+
"uiTypeId": "69cdf4c5-7555-4ef3-93d3-bda03f33c6d5"
|
188
|
+
}
|
189
|
+
}
|
190
|
+
},
|
191
|
+
"sections": {
|
192
|
+
"69084c06-aa67-4e6b-8098-3334044eebc9": {
|
193
|
+
"id": "69084c06-aa67-4e6b-8098-3334044eebc9",
|
194
|
+
"name": "shortcuts",
|
195
|
+
"size": {
|
196
|
+
"width": 550
|
197
|
+
},
|
198
|
+
"variantId": "19f203aa-cae6-4ccc-928c-dab0194ade77",
|
199
|
+
"uiTypeId": "0191cde4-3d98-4ba0-972a-fead19b8ac73",
|
200
|
+
"uiTypeColId": "04f95495-52ba-4277-a79e-228bb1c6a5bc",
|
201
|
+
"defaultVariantId": "19f203aa-cae6-4ccc-928c-dab0194ade77",
|
202
|
+
"variantIds": ["19f203aa-cae6-4ccc-928c-dab0194ade77"],
|
203
|
+
"configLanguage": "json",
|
204
|
+
"hideSearch": true,
|
205
|
+
"jsonSource": "setta-settings*.json",
|
206
|
+
"jsonSourceKeys": ["shortcuts"]
|
207
|
+
},
|
208
|
+
"6b264a9a-0f87-4288-80aa-45cc6b16db96": {
|
209
|
+
"id": "6b264a9a-0f87-4288-80aa-45cc6b16db96",
|
210
|
+
"name": "gui",
|
211
|
+
"size": {
|
212
|
+
"width": 550
|
213
|
+
},
|
214
|
+
"variantId": "f3cb4189-2692-4e75-b58f-76d632f44205",
|
215
|
+
"uiTypeId": "0191cde4-3d98-4ba0-972a-fead19b8ac73",
|
216
|
+
"uiTypeColId": "04f95495-52ba-4277-a79e-228bb1c6a5bc",
|
217
|
+
"defaultVariantId": "f3cb4189-2692-4e75-b58f-76d632f44205",
|
218
|
+
"variantIds": ["f3cb4189-2692-4e75-b58f-76d632f44205"],
|
219
|
+
"configLanguage": "json",
|
220
|
+
"hideSearch": true,
|
221
|
+
"jsonSource": "setta-settings*.json",
|
222
|
+
"jsonSourceKeys": ["gui"]
|
223
|
+
},
|
224
|
+
"f74b5aaf-d11d-4153-b55b-9c18e11e3a73": {
|
225
|
+
"id": "f74b5aaf-d11d-4153-b55b-9c18e11e3a73",
|
226
|
+
"name": "backend",
|
227
|
+
"size": {
|
228
|
+
"width": 550
|
229
|
+
},
|
230
|
+
"variantId": "36d29a06-7971-48d1-a1d2-23480f770d74",
|
231
|
+
"uiTypeId": "0191cde4-3d98-4ba0-972a-fead19b8ac73",
|
232
|
+
"uiTypeColId": "04f95495-52ba-4277-a79e-228bb1c6a5bc",
|
233
|
+
"defaultVariantId": "36d29a06-7971-48d1-a1d2-23480f770d74",
|
234
|
+
"variantIds": ["36d29a06-7971-48d1-a1d2-23480f770d74"],
|
235
|
+
"configLanguage": "json",
|
236
|
+
"hideSearch": true,
|
237
|
+
"jsonSource": "setta-settings*.json",
|
238
|
+
"jsonSourceKeys": ["backend"]
|
239
|
+
},
|
240
|
+
"8389d4b3-0a1e-4c44-819b-7c745d6c3f1b": {
|
241
|
+
"id": "8389d4b3-0a1e-4c44-819b-7c745d6c3f1b",
|
242
|
+
"name": "languageServer",
|
243
|
+
"size": {
|
244
|
+
"width": 550
|
245
|
+
},
|
246
|
+
"variantId": "4490975a-8d8d-4f02-8ed4-f48f8258f1ec",
|
247
|
+
"uiTypeId": "0191cde4-3d98-4ba0-972a-fead19b8ac73",
|
248
|
+
"uiTypeColId": "04f95495-52ba-4277-a79e-228bb1c6a5bc",
|
249
|
+
"defaultVariantId": "4490975a-8d8d-4f02-8ed4-f48f8258f1ec",
|
250
|
+
"variantIds": ["4490975a-8d8d-4f02-8ed4-f48f8258f1ec"],
|
251
|
+
"configLanguage": "json",
|
252
|
+
"hideSearch": true,
|
253
|
+
"jsonSource": "setta-settings*.json",
|
254
|
+
"jsonSourceKeys": ["languageServer"]
|
255
|
+
},
|
256
|
+
"514c2046-25de-4b0a-b6f9-fca1dd14ad8e": {
|
257
|
+
"id": "514c2046-25de-4b0a-b6f9-fca1dd14ad8e",
|
258
|
+
"name": "sections",
|
259
|
+
"size": {
|
260
|
+
"width": 550
|
261
|
+
},
|
262
|
+
"variantId": "d2c7059a-8e28-488a-aa33-056476652d5e",
|
263
|
+
"uiTypeId": "0191cde4-3d98-4ba0-972a-fead19b8ac73",
|
264
|
+
"uiTypeColId": "04f95495-52ba-4277-a79e-228bb1c6a5bc",
|
265
|
+
"defaultVariantId": "d2c7059a-8e28-488a-aa33-056476652d5e",
|
266
|
+
"variantIds": ["d2c7059a-8e28-488a-aa33-056476652d5e"],
|
267
|
+
"configLanguage": "json",
|
268
|
+
"hideSearch": true,
|
269
|
+
"jsonSource": "setta-settings*.json",
|
270
|
+
"jsonSourceKeys": ["sections"]
|
271
|
+
}
|
272
|
+
},
|
273
|
+
"codeInfo": {},
|
274
|
+
"codeInfoCols": {},
|
275
|
+
"artifacts": {}
|
276
|
+
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<svg
|
2
|
+
width="24"
|
3
|
+
height="24"
|
4
|
+
viewBox="0 0 24 24"
|
5
|
+
fill="white"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
style="fill:white; filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.4));"
|
8
|
+
>
|
9
|
+
<path
|
10
|
+
fill-rule="evenodd"
|
11
|
+
clip-rule="evenodd"
|
12
|
+
d="M3.49997 12.8995C2.71892 13.6805 2.71892 14.9468 3.49997 15.7279L7.35785 19.5858H4.08576C3.53347 19.5858 3.08576 20.0335 3.08576 20.5858C3.08576 21.1381 3.53347 21.5858 4.08576 21.5858H20.0858C20.638 21.5858 21.0858 21.1381 21.0858 20.5858C21.0858 20.0335 20.638 19.5858 20.0858 19.5858H10.9558L20.4705 10.071C21.2516 9.28999 21.2516 8.02366 20.4705 7.24261L16.2279 2.99997C15.4468 2.21892 14.1805 2.21892 13.3995 2.99997L3.49997 12.8995ZM7.82579 11.4021L4.91418 14.3137L9.15683 18.5563L12.0684 15.6447L7.82579 11.4021ZM9.24 9.98787L13.4826 14.2305L19.0563 8.65683L14.8137 4.41418L9.24 9.98787Z"
|
13
|
+
fill="white"
|
14
|
+
/>
|
15
|
+
</svg>
|