@dickpy/dsh-imagegen 1.0.19 → 1.0.20
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/README.md +9 -2
- package/docs/images/gallery-workspace.png +0 -0
- package/lib/client.js +162 -162
- package/lib/client.js.map +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/protocol.ts +1 -1
package/README.md
CHANGED
|
@@ -34,9 +34,16 @@ DeepSeek Harness (DSH) Web GUI 的 AI 生图插件。它通过宿主进程安全
|
|
|
34
34
|
|
|
35
35
|

|
|
36
36
|
|
|
37
|
+
### 画廊工作区
|
|
38
|
+
|
|
39
|
+
画廊标签页提供左侧分类筛选和右侧作品墙:可在瀑布流与整齐网格之间切换,纵向滚动浏览收藏,点击任意图片打开大图预览。
|
|
40
|
+
|
|
41
|
+

|
|
42
|
+
|
|
37
43
|
## 功能
|
|
38
44
|
|
|
39
45
|
- **文生图与图生图**:输入提示词生成图片,或上传 PNG、JPG、WEBP 参考图进行编辑。
|
|
46
|
+
- **Grok Imagine 支持**:支持 xAI `grok-imagine-image` 文生图与图生图;将 API 地址设置为 `https://api.x.ai/v1` 即可使用官方比例、分辨率和 JSON 图片协议。
|
|
40
47
|
- **可调生成参数**:尺寸、清晰度、生成数量和细节等级均可在界面中选择;未指定的参数保持自动。
|
|
41
48
|
- **结果操作**:结果区固定为四分格:单图铺满,双图占上排,三图占三格,四图为 2×2;支持下载、全屏预览、可滚动缩放、前后切换、复制优化提示词,以及一键将当前图片添加到图生图。
|
|
42
49
|
- **画廊收藏**:结果卡片、全屏预览与历史记录条目上都有「加入画廊」,可把满意的图片收藏起来;切到画廊后进入左侧分类筛选、右侧瀑布流/整齐网格的作品墙,支持按生成模式、模型、画面比例筛选、按发布时间排序、预览、移出、清空与恢复参数。画廊持久化在宿主侧 `~/.dsh/dsh-imagegen/gallery/`,无数量上限,且内容相同的图片不会重复加入。
|
|
@@ -70,10 +77,10 @@ dsh 会自动把插件注册进 profile 的 bundle 清单(无需手动改 cord
|
|
|
70
77
|
### 方式三:聚合包(tarball)安装
|
|
71
78
|
|
|
72
79
|
从 [GitHub Releases](https://github.com/dickpy/dsh-imagegen/releases) 下载发布产物
|
|
73
|
-
(如 `dickpy-dsh-imagegen-1.0.
|
|
80
|
+
(如 `dickpy-dsh-imagegen-1.0.20.tgz`),然后:
|
|
74
81
|
|
|
75
82
|
```bash
|
|
76
|
-
dsh plugin --profile web add <下载路径>/dickpy-dsh-imagegen-1.0.
|
|
83
|
+
dsh plugin --profile web add <下载路径>/dickpy-dsh-imagegen-1.0.20.tgz
|
|
77
84
|
```
|
|
78
85
|
|
|
79
86
|
重启 dsh web。
|
|
Binary file
|
package/lib/client.js
CHANGED
|
@@ -12,7 +12,7 @@ window.__ModuleLoader__.load({
|
|
|
12
12
|
let _deepseek_ai_dsh_client_runtime_client = require("@deepseek-ai/dsh-client-runtime/client");
|
|
13
13
|
//#region src/protocol.ts
|
|
14
14
|
/** Published package version shared by the host updater and the client UI. */
|
|
15
|
-
const PLUGIN_VERSION = "1.0.
|
|
15
|
+
const PLUGIN_VERSION = "1.0.20";
|
|
16
16
|
/** Same-origin route family (loopback-only, mirroring the dsh-ssh fence). */
|
|
17
17
|
const SETTINGS_API = {
|
|
18
18
|
describe: "/api/dsh-imagegen/settings/describe",
|
|
@@ -582,46 +582,46 @@ window.__ModuleLoader__.load({
|
|
|
582
582
|
document.head.appendChild(tag);
|
|
583
583
|
}
|
|
584
584
|
var templates_module_css_default = {
|
|
585
|
+
"detailActions": "o0mAxG_detailActions",
|
|
586
|
+
"headerActions": "o0mAxG_headerActions",
|
|
587
|
+
"categoryPill": "o0mAxG_categoryPill",
|
|
588
|
+
"spinner": "o0mAxG_spinner",
|
|
589
|
+
"detailMeta": "o0mAxG_detailMeta",
|
|
590
|
+
"state": "o0mAxG_state",
|
|
591
|
+
"detail": "o0mAxG_detail",
|
|
592
|
+
"detailImage": "o0mAxG_detailImage",
|
|
585
593
|
"title": "o0mAxG_title",
|
|
586
|
-
"
|
|
594
|
+
"heading": "o0mAxG_heading",
|
|
587
595
|
"cardTitle": "o0mAxG_cardTitle",
|
|
588
|
-
"
|
|
596
|
+
"detailTitle": "o0mAxG_detailTitle",
|
|
597
|
+
"dsh-imagegen-templates-spin": "o0mAxG_dsh-imagegen-templates-spin",
|
|
598
|
+
"meta": "o0mAxG_meta",
|
|
589
599
|
"detailInfo": "o0mAxG_detailInfo",
|
|
590
|
-
"heading": "o0mAxG_heading",
|
|
591
|
-
"detailMeta": "o0mAxG_detailMeta",
|
|
592
|
-
"attribution": "o0mAxG_attribution",
|
|
593
|
-
"detailLink": "o0mAxG_detailLink",
|
|
594
|
-
"detailActions": "o0mAxG_detailActions",
|
|
595
|
-
"shell": "o0mAxG_shell",
|
|
596
|
-
"card": "o0mAxG_card",
|
|
597
600
|
"body": "o0mAxG_body",
|
|
598
|
-
"
|
|
599
|
-
"
|
|
600
|
-
"
|
|
601
|
-
"dsh-imagegen-templates-spin": "o0mAxG_dsh-imagegen-templates-spin",
|
|
602
|
-
"spinner": "o0mAxG_spinner",
|
|
603
|
-
"headerActions": "o0mAxG_headerActions",
|
|
601
|
+
"grid": "o0mAxG_grid",
|
|
602
|
+
"thumbPlaceholder": "o0mAxG_thumbPlaceholder",
|
|
603
|
+
"detailMedia": "o0mAxG_detailMedia",
|
|
604
604
|
"overlay": "o0mAxG_overlay",
|
|
605
|
+
"categoryRow": "o0mAxG_categoryRow",
|
|
606
|
+
"cardSource": "o0mAxG_cardSource",
|
|
607
|
+
"header": "o0mAxG_header",
|
|
608
|
+
"footer": "o0mAxG_footer",
|
|
609
|
+
"close": "o0mAxG_close",
|
|
610
|
+
"card": "o0mAxG_card",
|
|
611
|
+
"sourceLink": "o0mAxG_sourceLink",
|
|
612
|
+
"cardBody": "o0mAxG_cardBody",
|
|
613
|
+
"detailLink": "o0mAxG_detailLink",
|
|
605
614
|
"notice": "o0mAxG_notice",
|
|
615
|
+
"attribution": "o0mAxG_attribution",
|
|
616
|
+
"shell": "o0mAxG_shell",
|
|
606
617
|
"thumbWrap": "o0mAxG_thumbWrap",
|
|
607
|
-
"
|
|
608
|
-
"
|
|
609
|
-
"detailImage": "o0mAxG_detailImage",
|
|
610
|
-
"categoryRow": "o0mAxG_categoryRow",
|
|
618
|
+
"toolbar": "o0mAxG_toolbar",
|
|
619
|
+
"search": "o0mAxG_search",
|
|
611
620
|
"thumb": "o0mAxG_thumb",
|
|
612
621
|
"cardMeta": "o0mAxG_cardMeta",
|
|
613
|
-
"detailMedia": "o0mAxG_detailMedia",
|
|
614
|
-
"grid": "o0mAxG_grid",
|
|
615
|
-
"cardBody": "o0mAxG_cardBody",
|
|
616
|
-
"detail": "o0mAxG_detail",
|
|
617
|
-
"search": "o0mAxG_search",
|
|
618
|
-
"detailTitle": "o0mAxG_detailTitle",
|
|
619
622
|
"detailOverlay": "o0mAxG_detailOverlay",
|
|
620
|
-
"
|
|
621
|
-
"
|
|
622
|
-
"toolbar": "o0mAxG_toolbar",
|
|
623
|
-
"close": "o0mAxG_close",
|
|
624
|
-
"state": "o0mAxG_state",
|
|
623
|
+
"featuredBadge": "o0mAxG_featuredBadge",
|
|
624
|
+
"cardCategory": "o0mAxG_cardCategory",
|
|
625
625
|
"detailPrompt": "o0mAxG_detailPrompt"
|
|
626
626
|
};
|
|
627
627
|
//#endregion
|
|
@@ -1109,132 +1109,132 @@ window.__ModuleLoader__.load({
|
|
|
1109
1109
|
document.head.appendChild(tag);
|
|
1110
1110
|
}
|
|
1111
1111
|
var panel_module_css_default = {
|
|
1112
|
-
"
|
|
1113
|
-
"galleryClear": "Yvqh9W_galleryClear",
|
|
1112
|
+
"config": "Yvqh9W_config",
|
|
1114
1113
|
"generateInner": "Yvqh9W_generateInner",
|
|
1115
|
-
"
|
|
1116
|
-
"
|
|
1117
|
-
"
|
|
1118
|
-
"
|
|
1119
|
-
"
|
|
1120
|
-
"
|
|
1121
|
-
"
|
|
1122
|
-
"
|
|
1123
|
-
"
|
|
1124
|
-
"
|
|
1114
|
+
"panelHeader": "Yvqh9W_panelHeader",
|
|
1115
|
+
"lightboxTools": "Yvqh9W_lightboxTools",
|
|
1116
|
+
"lightbox": "Yvqh9W_lightbox",
|
|
1117
|
+
"hiddenFile": "Yvqh9W_hiddenFile",
|
|
1118
|
+
"galleryRemove": "Yvqh9W_galleryRemove",
|
|
1119
|
+
"promptCount": "Yvqh9W_promptCount",
|
|
1120
|
+
"lightboxCaptionRow": "Yvqh9W_lightboxCaptionRow",
|
|
1121
|
+
"zoomHint": "Yvqh9W_zoomHint",
|
|
1122
|
+
"galleryRatio": "Yvqh9W_galleryRatio",
|
|
1123
|
+
"modelSelect": "Yvqh9W_modelSelect",
|
|
1124
|
+
"galleryRatioList": "Yvqh9W_galleryRatioList",
|
|
1125
|
+
"historyHeader": "Yvqh9W_historyHeader",
|
|
1126
|
+
"galleryWorkspace": "Yvqh9W_galleryWorkspace",
|
|
1127
|
+
"canvasState": "Yvqh9W_canvasState",
|
|
1128
|
+
"entry": "Yvqh9W_entry",
|
|
1129
|
+
"gallerySort": "Yvqh9W_gallerySort",
|
|
1130
|
+
"galleryImage": "Yvqh9W_galleryImage",
|
|
1131
|
+
"paramLabel": "Yvqh9W_paramLabel",
|
|
1132
|
+
"grid": "Yvqh9W_grid",
|
|
1133
|
+
"canvasEmptyIcon": "Yvqh9W_canvasEmptyIcon",
|
|
1134
|
+
"lightboxTool": "Yvqh9W_lightboxTool",
|
|
1135
|
+
"galleryFilters": "Yvqh9W_galleryFilters",
|
|
1125
1136
|
"reference": "Yvqh9W_reference",
|
|
1126
|
-
"imageCaption": "Yvqh9W_imageCaption",
|
|
1127
|
-
"historyActions": "Yvqh9W_historyActions",
|
|
1128
|
-
"galleryImageButton": "Yvqh9W_galleryImageButton",
|
|
1129
|
-
"lightboxIndex": "Yvqh9W_lightboxIndex",
|
|
1130
|
-
"canvasBody": "Yvqh9W_canvasBody",
|
|
1131
|
-
"galleryAvatar": "Yvqh9W_galleryAvatar",
|
|
1132
1137
|
"optionGrid": "Yvqh9W_optionGrid",
|
|
1133
|
-
"
|
|
1134
|
-
"modelLabel": "Yvqh9W_modelLabel",
|
|
1135
|
-
"bigSpinner": "Yvqh9W_bigSpinner",
|
|
1136
|
-
"galleryFilterCount": "Yvqh9W_galleryFilterCount",
|
|
1137
|
-
"galleryRatioList": "Yvqh9W_galleryRatioList",
|
|
1138
|
-
"galleryRatio": "Yvqh9W_galleryRatio",
|
|
1139
|
-
"canvasError": "Yvqh9W_canvasError",
|
|
1140
|
-
"historyEmpty": "Yvqh9W_historyEmpty",
|
|
1141
|
-
"githubLink": "Yvqh9W_githubLink",
|
|
1142
|
-
"imageCard": "Yvqh9W_imageCard",
|
|
1143
|
-
"updateText": "Yvqh9W_updateText",
|
|
1144
|
-
"canvasStateTitle": "Yvqh9W_canvasStateTitle",
|
|
1145
|
-
"modelMenu": "Yvqh9W_modelMenu",
|
|
1146
|
-
"prompt": "Yvqh9W_prompt",
|
|
1138
|
+
"configScroll": "Yvqh9W_configScroll",
|
|
1147
1139
|
"uploadIcon": "Yvqh9W_uploadIcon",
|
|
1148
|
-
"canvas": "Yvqh9W_canvas",
|
|
1149
|
-
"galleryImage": "Yvqh9W_galleryImage",
|
|
1150
|
-
"entry": "Yvqh9W_entry",
|
|
1151
|
-
"updateRelease": "Yvqh9W_updateRelease",
|
|
1152
|
-
"dshImageGenSpin": "Yvqh9W_dshImageGenSpin",
|
|
1153
|
-
"lightboxDownload": "Yvqh9W_lightboxDownload",
|
|
1154
|
-
"galleryCardFooter": "Yvqh9W_galleryCardFooter",
|
|
1155
|
-
"download": "Yvqh9W_download",
|
|
1156
1140
|
"historyTitle": "Yvqh9W_historyTitle",
|
|
1157
|
-
"
|
|
1158
|
-
"
|
|
1159
|
-
"
|
|
1160
|
-
"
|
|
1161
|
-
"historyClear": "Yvqh9W_historyClear",
|
|
1141
|
+
"lightboxActions": "Yvqh9W_lightboxActions",
|
|
1142
|
+
"view": "Yvqh9W_view",
|
|
1143
|
+
"historyEmpty": "Yvqh9W_historyEmpty",
|
|
1144
|
+
"card": "Yvqh9W_card",
|
|
1162
1145
|
"galleryToolbarActions": "Yvqh9W_galleryToolbarActions",
|
|
1163
|
-
"
|
|
1164
|
-
"
|
|
1165
|
-
"
|
|
1166
|
-
"
|
|
1167
|
-
"
|
|
1168
|
-
"
|
|
1169
|
-
"
|
|
1170
|
-
"
|
|
1146
|
+
"lightboxCaption": "Yvqh9W_lightboxCaption",
|
|
1147
|
+
"spinner": "Yvqh9W_spinner",
|
|
1148
|
+
"canvasMeta": "Yvqh9W_canvasMeta",
|
|
1149
|
+
"paramHint": "Yvqh9W_paramHint",
|
|
1150
|
+
"canvasStateTitle": "Yvqh9W_canvasStateTitle",
|
|
1151
|
+
"footer": "Yvqh9W_footer",
|
|
1152
|
+
"galleryCount": "Yvqh9W_galleryCount",
|
|
1153
|
+
"historyThumbPlaceholder": "Yvqh9W_historyThumbPlaceholder",
|
|
1154
|
+
"galleryAdd": "Yvqh9W_galleryAdd",
|
|
1155
|
+
"historyActions": "Yvqh9W_historyActions",
|
|
1171
1156
|
"historyItem": "Yvqh9W_historyItem",
|
|
1172
|
-
"studio": "Yvqh9W_studio",
|
|
1173
|
-
"galleryFilterHeading": "Yvqh9W_galleryFilterHeading",
|
|
1174
|
-
"historyHeader": "Yvqh9W_historyHeader",
|
|
1175
|
-
"paramLabel": "Yvqh9W_paramLabel",
|
|
1176
|
-
"historyAction": "Yvqh9W_historyAction",
|
|
1177
|
-
"galleryCardInfo": "Yvqh9W_galleryCardInfo",
|
|
1178
|
-
"lightboxCaptionRow": "Yvqh9W_lightboxCaptionRow",
|
|
1179
|
-
"promptCount": "Yvqh9W_promptCount",
|
|
1180
|
-
"historyList": "Yvqh9W_historyList",
|
|
1181
|
-
"config": "Yvqh9W_config",
|
|
1182
|
-
"galleryBadge": "Yvqh9W_galleryBadge",
|
|
1183
|
-
"modelWrap": "Yvqh9W_modelWrap",
|
|
1184
|
-
"canvasState": "Yvqh9W_canvasState",
|
|
1185
|
-
"historyInfo": "Yvqh9W_historyInfo",
|
|
1186
|
-
"image": "Yvqh9W_image",
|
|
1187
|
-
"lightboxImage": "Yvqh9W_lightboxImage",
|
|
1188
|
-
"lightboxClose": "Yvqh9W_lightboxClose",
|
|
1189
|
-
"promptFooter": "Yvqh9W_promptFooter",
|
|
1190
1157
|
"galleryFilterNote": "Yvqh9W_galleryFilterNote",
|
|
1191
|
-
"
|
|
1158
|
+
"uploadHint": "Yvqh9W_uploadHint",
|
|
1159
|
+
"modelMenuList": "Yvqh9W_modelMenuList",
|
|
1160
|
+
"galleryClear": "Yvqh9W_galleryClear",
|
|
1161
|
+
"githubLink": "Yvqh9W_githubLink",
|
|
1162
|
+
"lightboxFigure": "Yvqh9W_lightboxFigure",
|
|
1163
|
+
"galleryImageButton": "Yvqh9W_galleryImageButton",
|
|
1192
1164
|
"history": "Yvqh9W_history",
|
|
1193
|
-
"
|
|
1194
|
-
"
|
|
1195
|
-
"
|
|
1165
|
+
"imageCaption": "Yvqh9W_imageCaption",
|
|
1166
|
+
"modelLabel": "Yvqh9W_modelLabel",
|
|
1167
|
+
"dshImageGenSpin": "Yvqh9W_dshImageGenSpin",
|
|
1168
|
+
"historyClear": "Yvqh9W_historyClear",
|
|
1169
|
+
"lightboxImage": "Yvqh9W_lightboxImage",
|
|
1170
|
+
"image": "Yvqh9W_image",
|
|
1196
1171
|
"galleryFilterDivider": "Yvqh9W_galleryFilterDivider",
|
|
1197
|
-
"modePill": "Yvqh9W_modePill",
|
|
1198
|
-
"grid": "Yvqh9W_grid",
|
|
1199
1172
|
"updateBanner": "Yvqh9W_updateBanner",
|
|
1200
|
-
"
|
|
1173
|
+
"connectionStatus": "Yvqh9W_connectionStatus",
|
|
1174
|
+
"modelMenuItem": "Yvqh9W_modelMenuItem",
|
|
1175
|
+
"galleryAvatar": "Yvqh9W_galleryAvatar",
|
|
1176
|
+
"updateRelease": "Yvqh9W_updateRelease",
|
|
1177
|
+
"studio": "Yvqh9W_studio",
|
|
1178
|
+
"uploadBox": "Yvqh9W_uploadBox",
|
|
1179
|
+
"historyMeta": "Yvqh9W_historyMeta",
|
|
1180
|
+
"generateButton": "Yvqh9W_generateButton",
|
|
1181
|
+
"connectionDot": "Yvqh9W_connectionDot",
|
|
1182
|
+
"panelHeading": "Yvqh9W_panelHeading",
|
|
1183
|
+
"galleryViewToggle": "Yvqh9W_galleryViewToggle",
|
|
1184
|
+
"modePill": "Yvqh9W_modePill",
|
|
1185
|
+
"galleryToolbar": "Yvqh9W_galleryToolbar",
|
|
1186
|
+
"historyPrompt": "Yvqh9W_historyPrompt",
|
|
1201
1187
|
"galleryToast": "Yvqh9W_galleryToast",
|
|
1202
|
-
"
|
|
1203
|
-
"
|
|
1204
|
-
"referenceActions": "Yvqh9W_referenceActions",
|
|
1205
|
-
"panelHeader": "Yvqh9W_panelHeader",
|
|
1188
|
+
"canvasStateHint": "Yvqh9W_canvasStateHint",
|
|
1189
|
+
"galleryMasonry": "Yvqh9W_galleryMasonry",
|
|
1206
1190
|
"paramGroup": "Yvqh9W_paramGroup",
|
|
1207
|
-
"
|
|
1208
|
-
"
|
|
1209
|
-
"historyThumbPlaceholder": "Yvqh9W_historyThumbPlaceholder",
|
|
1210
|
-
"entryLabel": "Yvqh9W_entryLabel",
|
|
1211
|
-
"uploadHint": "Yvqh9W_uploadHint",
|
|
1212
|
-
"modelSelect": "Yvqh9W_modelSelect",
|
|
1213
|
-
"canvasEmptyIcon": "Yvqh9W_canvasEmptyIcon",
|
|
1214
|
-
"lightbox": "Yvqh9W_lightbox",
|
|
1191
|
+
"download": "Yvqh9W_download",
|
|
1192
|
+
"templatesButton": "Yvqh9W_templatesButton",
|
|
1215
1193
|
"lightboxStage": "Yvqh9W_lightboxStage",
|
|
1216
|
-
"
|
|
1194
|
+
"galleryFilter": "Yvqh9W_galleryFilter",
|
|
1195
|
+
"referenceActions": "Yvqh9W_referenceActions",
|
|
1196
|
+
"dshImageGenToastIn": "Yvqh9W_dshImageGenToastIn",
|
|
1197
|
+
"imageCard": "Yvqh9W_imageCard",
|
|
1217
1198
|
"entryIcon": "Yvqh9W_entryIcon",
|
|
1218
|
-
"
|
|
1219
|
-
"
|
|
1220
|
-
"
|
|
1221
|
-
"
|
|
1222
|
-
"
|
|
1223
|
-
"
|
|
1224
|
-
"
|
|
1199
|
+
"canvas": "Yvqh9W_canvas",
|
|
1200
|
+
"galleryHeading": "Yvqh9W_galleryHeading",
|
|
1201
|
+
"entryLabel": "Yvqh9W_entryLabel",
|
|
1202
|
+
"updateActions": "Yvqh9W_updateActions",
|
|
1203
|
+
"modelMenu": "Yvqh9W_modelMenu",
|
|
1204
|
+
"historyInfo": "Yvqh9W_historyInfo",
|
|
1205
|
+
"canvasBody": "Yvqh9W_canvasBody",
|
|
1206
|
+
"galleryBadge": "Yvqh9W_galleryBadge",
|
|
1207
|
+
"lightboxEdit": "Yvqh9W_lightboxEdit",
|
|
1208
|
+
"bigSpinner": "Yvqh9W_bigSpinner",
|
|
1209
|
+
"modelWrap": "Yvqh9W_modelWrap",
|
|
1210
|
+
"referenceImage": "Yvqh9W_referenceImage",
|
|
1211
|
+
"lightboxClose": "Yvqh9W_lightboxClose",
|
|
1212
|
+
"historyMain": "Yvqh9W_historyMain",
|
|
1213
|
+
"lightboxZoomLevel": "Yvqh9W_lightboxZoomLevel",
|
|
1225
1214
|
"lightboxCopy": "Yvqh9W_lightboxCopy",
|
|
1226
|
-
"
|
|
1227
|
-
"
|
|
1228
|
-
"
|
|
1229
|
-
"
|
|
1230
|
-
"
|
|
1231
|
-
"
|
|
1232
|
-
"
|
|
1233
|
-
"
|
|
1234
|
-
"
|
|
1235
|
-
"
|
|
1236
|
-
"
|
|
1237
|
-
"
|
|
1215
|
+
"prompt": "Yvqh9W_prompt",
|
|
1216
|
+
"panelTitle": "Yvqh9W_panelTitle",
|
|
1217
|
+
"optionRow": "Yvqh9W_optionRow",
|
|
1218
|
+
"canvasError": "Yvqh9W_canvasError",
|
|
1219
|
+
"canvasHistoryTag": "Yvqh9W_canvasHistoryTag",
|
|
1220
|
+
"historyThumb": "Yvqh9W_historyThumb",
|
|
1221
|
+
"historyList": "Yvqh9W_historyList",
|
|
1222
|
+
"lightboxMeta": "Yvqh9W_lightboxMeta",
|
|
1223
|
+
"galleryFilterHeading": "Yvqh9W_galleryFilterHeading",
|
|
1224
|
+
"optionPill": "Yvqh9W_optionPill",
|
|
1225
|
+
"panel": "Yvqh9W_panel",
|
|
1226
|
+
"galleryCardInfo": "Yvqh9W_galleryCardInfo",
|
|
1227
|
+
"lightboxNav": "Yvqh9W_lightboxNav",
|
|
1228
|
+
"lightboxScaleFrame": "Yvqh9W_lightboxScaleFrame",
|
|
1229
|
+
"galleryCardFooter": "Yvqh9W_galleryCardFooter",
|
|
1230
|
+
"lightboxIndex": "Yvqh9W_lightboxIndex",
|
|
1231
|
+
"lightboxDownload": "Yvqh9W_lightboxDownload",
|
|
1232
|
+
"galleryFilterCount": "Yvqh9W_galleryFilterCount",
|
|
1233
|
+
"promptFooter": "Yvqh9W_promptFooter",
|
|
1234
|
+
"updateText": "Yvqh9W_updateText",
|
|
1235
|
+
"galleryCard": "Yvqh9W_galleryCard",
|
|
1236
|
+
"modeRow": "Yvqh9W_modeRow",
|
|
1237
|
+
"historyAction": "Yvqh9W_historyAction"
|
|
1238
1238
|
};
|
|
1239
1239
|
//#endregion
|
|
1240
1240
|
//#region src/client/ImageGenPanel.tsx
|
|
@@ -3431,35 +3431,35 @@ window.__ModuleLoader__.load({
|
|
|
3431
3431
|
document.head.appendChild(tag);
|
|
3432
3432
|
}
|
|
3433
3433
|
var settings_card_module_css_default = {
|
|
3434
|
-
"
|
|
3435
|
-
"
|
|
3436
|
-
"failed": "i1cc5G_failed",
|
|
3434
|
+
"headText": "i1cc5G_headText",
|
|
3435
|
+
"name": "i1cc5G_name",
|
|
3437
3436
|
"readOnly": "i1cc5G_readOnly",
|
|
3438
|
-
"
|
|
3437
|
+
"input": "i1cc5G_input",
|
|
3438
|
+
"footer": "i1cc5G_footer",
|
|
3439
3439
|
"versionValue": "i1cc5G_versionValue",
|
|
3440
|
-
"
|
|
3441
|
-
"
|
|
3442
|
-
"
|
|
3443
|
-
"
|
|
3440
|
+
"reset": "i1cc5G_reset",
|
|
3441
|
+
"select": "i1cc5G_select",
|
|
3442
|
+
"field": "i1cc5G_field",
|
|
3443
|
+
"body": "i1cc5G_body",
|
|
3444
|
+
"chevron": "i1cc5G_chevron",
|
|
3445
|
+
"pending": "i1cc5G_pending",
|
|
3444
3446
|
"save": "i1cc5G_save",
|
|
3445
3447
|
"card": "i1cc5G_card",
|
|
3446
|
-
"
|
|
3447
|
-
"
|
|
3448
|
-
"
|
|
3449
|
-
"body": "i1cc5G_body",
|
|
3450
|
-
"headText": "i1cc5G_headText",
|
|
3451
|
-
"label": "i1cc5G_label",
|
|
3448
|
+
"head": "i1cc5G_head",
|
|
3449
|
+
"failed": "i1cc5G_failed",
|
|
3450
|
+
"versionRow": "i1cc5G_versionRow",
|
|
3452
3451
|
"badge": "i1cc5G_badge",
|
|
3453
|
-
"
|
|
3452
|
+
"hint": "i1cc5G_hint",
|
|
3453
|
+
"header": "i1cc5G_header",
|
|
3454
|
+
"versionLabel": "i1cc5G_versionLabel",
|
|
3455
|
+
"label": "i1cc5G_label",
|
|
3456
|
+
"invalid": "i1cc5G_invalid",
|
|
3454
3457
|
"inputInvalid": "i1cc5G_inputInvalid",
|
|
3455
3458
|
"chevronOpen": "i1cc5G_chevronOpen",
|
|
3456
|
-
"
|
|
3457
|
-
"
|
|
3458
|
-
"select": "i1cc5G_select",
|
|
3459
|
+
"notExposed": "i1cc5G_notExposed",
|
|
3460
|
+
"badges": "i1cc5G_badges",
|
|
3459
3461
|
"description": "i1cc5G_description",
|
|
3460
|
-
"
|
|
3461
|
-
"invalid": "i1cc5G_invalid",
|
|
3462
|
-
"versionLabel": "i1cc5G_versionLabel"
|
|
3462
|
+
"discard": "i1cc5G_discard"
|
|
3463
3463
|
};
|
|
3464
3464
|
//#endregion
|
|
3465
3465
|
//#region src/client/SettingsCard.tsx
|