dsh-audiogen 0.3.2 → 0.3.4

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/lib/client.js CHANGED
@@ -96,7 +96,7 @@ window.__ModuleLoader__.load({
96
96
  "mode.voiceDesign": "音色设计",
97
97
  "prompt.placeholder": "输入文本、音乐/音效描述,或音色设计描述…",
98
98
  "prompt.required": "请输入文本或提示词",
99
- "model.label": "模型 / 音色",
99
+ "model.label": "模型",
100
100
  "voice.label": "音色",
101
101
  "speed.label": "语速",
102
102
  "duration.label": "时长(秒)",
@@ -194,7 +194,7 @@ window.__ModuleLoader__.load({
194
194
  "mode.voiceDesign": "Voice design",
195
195
  "prompt.placeholder": "Text to speak, or a music/SFX/voice-design description…",
196
196
  "prompt.required": "Prompt or text is required",
197
- "model.label": "Model / voice",
197
+ "model.label": "Model",
198
198
  "voice.label": "Voice",
199
199
  "speed.label": "Speed",
200
200
  "duration.label": "Duration (s)",
@@ -542,36 +542,36 @@ window.__ModuleLoader__.load({
542
542
  document.head.appendChild(tag);
543
543
  }
544
544
  var audio_panel_module_css_default = {
545
- "audioList": "Oo1fpq_audioList",
546
- "hint": "Oo1fpq_hint",
547
- "historyEmpty": "Oo1fpq_historyEmpty",
548
- "row": "Oo1fpq_row",
549
- "label": "Oo1fpq_label",
545
+ "history": "Oo1fpq_history",
550
546
  "layout": "Oo1fpq_layout",
551
- "textarea": "Oo1fpq_textarea",
552
- "result": "Oo1fpq_result",
553
- "input": "Oo1fpq_input",
547
+ "modeButton": "Oo1fpq_modeButton",
554
548
  "historyTitle": "Oo1fpq_historyTitle",
555
- "download": "Oo1fpq_download",
556
- "checkbox": "Oo1fpq_checkbox",
557
- "header": "Oo1fpq_header",
558
- "empty": "Oo1fpq_empty",
549
+ "historyAudio": "Oo1fpq_historyAudio",
559
550
  "generate": "Oo1fpq_generate",
560
- "title": "Oo1fpq_title",
561
- "audio": "Oo1fpq_audio",
551
+ "input": "Oo1fpq_input",
562
552
  "modeRow": "Oo1fpq_modeRow",
553
+ "label": "Oo1fpq_label",
563
554
  "select": "Oo1fpq_select",
564
- "historyAudio": "Oo1fpq_historyAudio",
565
- "historyItem": "Oo1fpq_historyItem",
566
- "error": "Oo1fpq_error",
567
- "panel": "Oo1fpq_panel",
568
- "historyMeta": "Oo1fpq_historyMeta",
569
- "modeButton": "Oo1fpq_modeButton",
570
- "advanced": "Oo1fpq_advanced",
571
555
  "audioCard": "Oo1fpq_audioCard",
572
- "historyPrompt": "Oo1fpq_historyPrompt",
556
+ "textarea": "Oo1fpq_textarea",
557
+ "advanced": "Oo1fpq_advanced",
558
+ "panel": "Oo1fpq_panel",
559
+ "audio": "Oo1fpq_audio",
560
+ "historyEmpty": "Oo1fpq_historyEmpty",
561
+ "error": "Oo1fpq_error",
562
+ "download": "Oo1fpq_download",
573
563
  "form": "Oo1fpq_form",
574
- "history": "Oo1fpq_history"
564
+ "historyPrompt": "Oo1fpq_historyPrompt",
565
+ "title": "Oo1fpq_title",
566
+ "historyMeta": "Oo1fpq_historyMeta",
567
+ "header": "Oo1fpq_header",
568
+ "hint": "Oo1fpq_hint",
569
+ "empty": "Oo1fpq_empty",
570
+ "row": "Oo1fpq_row",
571
+ "checkbox": "Oo1fpq_checkbox",
572
+ "result": "Oo1fpq_result",
573
+ "historyItem": "Oo1fpq_historyItem",
574
+ "audioList": "Oo1fpq_audioList"
575
575
  };
576
576
  //#endregion
577
577
  //#region src/client/AudioGenPanel.tsx
@@ -627,6 +627,8 @@ window.__ModuleLoader__.load({
627
627
  const [voice, setVoice] = (0, react.useState)("");
628
628
  const [speed, setSpeed] = (0, react.useState)("");
629
629
  const [duration, setDuration] = (0, react.useState)("");
630
+ const [lyrics, setLyrics] = (0, react.useState)("");
631
+ const [instrumental, setInstrumental] = (0, react.useState)(false);
630
632
  const [format, setFormat] = (0, react.useState)("mp3");
631
633
  const [emotion, setEmotion] = (0, react.useState)("");
632
634
  const [vol, setVol] = (0, react.useState)("");
@@ -667,6 +669,8 @@ window.__ModuleLoader__.load({
667
669
  ...voice.trim() !== "" ? { voice: voice.trim() } : {},
668
670
  ...speed.trim() !== "" ? { speed: Number(speed) } : {},
669
671
  ...duration.trim() !== "" ? { duration: Number(duration) } : {},
672
+ ...lyrics.trim() !== "" ? { lyrics: lyrics.trim() } : {},
673
+ ...instrumental ? { isInstrumental: true } : {},
670
674
  ...format.trim() !== "" ? { format: format.trim() } : {},
671
675
  ...emotion.trim() !== "" ? { emotion: emotion.trim() } : {},
672
676
  ...vol.trim() !== "" ? { vol: Number(vol) } : {},
@@ -908,6 +912,87 @@ window.__ModuleLoader__.load({
908
912
  placeholder: "30"
909
913
  })]
910
914
  }) : null,
915
+ mode === "music" ? /* @__PURE__ */ (0, react_jsx_runtime.jsxs)(react_jsx_runtime.Fragment, { children: [
916
+ /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("label", {
917
+ className: audio_panel_module_css_default.label,
918
+ children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", { children: "歌词(纯音乐模式可留空;多段用空行分隔)" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("textarea", {
919
+ className: audio_panel_module_css_default.textarea,
920
+ value: lyrics,
921
+ onChange: (event) => setLyrics(event.target.value),
922
+ placeholder: "第一段歌词…\n\n第二段歌词…"
923
+ })]
924
+ }),
925
+ /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("label", {
926
+ className: audio_panel_module_css_default.checkbox,
927
+ children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("input", {
928
+ type: "checkbox",
929
+ checked: instrumental,
930
+ onChange: (event) => setInstrumental(event.target.checked)
931
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", { children: "纯音乐(无歌词/人声)is_instrumental" })]
932
+ }),
933
+ /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
934
+ className: audio_panel_module_css_default.row,
935
+ children: [/* @__PURE__ */ (0, react_jsx_runtime.jsxs)("label", {
936
+ className: audio_panel_module_css_default.label,
937
+ children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", { children: "采样率" }), /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("select", {
938
+ className: audio_panel_module_css_default.select,
939
+ value: sampleRate,
940
+ onChange: (event) => setSampleRate(event.target.value),
941
+ children: [
942
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("option", {
943
+ value: "",
944
+ children: "默认(44100)"
945
+ }),
946
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("option", {
947
+ value: "16000",
948
+ children: "16000"
949
+ }),
950
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("option", {
951
+ value: "24000",
952
+ children: "24000"
953
+ }),
954
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("option", {
955
+ value: "32000",
956
+ children: "32000"
957
+ }),
958
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("option", {
959
+ value: "44100",
960
+ children: "44100"
961
+ })
962
+ ]
963
+ })]
964
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("label", {
965
+ className: audio_panel_module_css_default.label,
966
+ children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", { children: "码率 bps" }), /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("select", {
967
+ className: audio_panel_module_css_default.select,
968
+ value: bitrate,
969
+ onChange: (event) => setBitrate(event.target.value),
970
+ children: [
971
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("option", {
972
+ value: "",
973
+ children: "默认(256000)"
974
+ }),
975
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("option", {
976
+ value: "32000",
977
+ children: "32000"
978
+ }),
979
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("option", {
980
+ value: "64000",
981
+ children: "64000"
982
+ }),
983
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("option", {
984
+ value: "128000",
985
+ children: "128000"
986
+ }),
987
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("option", {
988
+ value: "256000",
989
+ children: "256000"
990
+ })
991
+ ]
992
+ })]
993
+ })]
994
+ })
995
+ ] }) : null,
911
996
  needModel ? /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("label", {
912
997
  className: audio_panel_module_css_default.label,
913
998
  children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", { children: tt("format.label") }), /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("select", {
@@ -923,14 +1008,13 @@ window.__ModuleLoader__.load({
923
1008
  value: "wav",
924
1009
  children: "wav"
925
1010
  }),
926
- /* @__PURE__ */ (0, react_jsx_runtime.jsx)("option", {
1011
+ mode === "tts" ? /* @__PURE__ */ (0, react_jsx_runtime.jsxs)(react_jsx_runtime.Fragment, { children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("option", {
927
1012
  value: "flac",
928
1013
  children: "flac"
929
- }),
930
- /* @__PURE__ */ (0, react_jsx_runtime.jsx)("option", {
1014
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("option", {
931
1015
  value: "ogg",
932
1016
  children: "ogg"
933
- }),
1017
+ })] }) : null,
934
1018
  /* @__PURE__ */ (0, react_jsx_runtime.jsx)("option", {
935
1019
  value: "pcm",
936
1020
  children: "pcm"
@@ -1050,167 +1134,167 @@ window.__ModuleLoader__.load({
1050
1134
  document.head.appendChild(tag);
1051
1135
  }
1052
1136
  var panel_module_css_default = {
1053
- "promptCount": "rwa6qG_promptCount",
1054
- "generateButton": "rwa6qG_generateButton",
1055
- "galleryImage": "rwa6qG_galleryImage",
1056
- "entryIcon": "rwa6qG_entryIcon",
1057
- "historyHeader": "rwa6qG_historyHeader",
1058
- "gallerySelect": "rwa6qG_gallerySelect",
1059
- "historyThumbPlaceholder": "rwa6qG_historyThumbPlaceholder",
1060
- "updateBanner": "rwa6qG_updateBanner",
1061
- "taskStatus": "rwa6qG_taskStatus",
1062
- "configScroll": "rwa6qG_configScroll",
1063
- "referenceActions": "rwa6qG_referenceActions",
1064
- "galleryBulkButton": "rwa6qG_galleryBulkButton",
1065
- "modelMenu": "rwa6qG_modelMenu",
1066
- "lightboxIndex": "rwa6qG_lightboxIndex",
1067
- "lightboxTools": "rwa6qG_lightboxTools",
1068
- "updateActions": "rwa6qG_updateActions",
1069
- "canvas": "rwa6qG_canvas",
1070
- "galleryTagFilter": "rwa6qG_galleryTagFilter",
1137
+ "lightboxZoomLevel": "rwa6qG_lightboxZoomLevel",
1138
+ "lightboxEdit": "rwa6qG_lightboxEdit",
1139
+ "modelSelect": "rwa6qG_modelSelect",
1140
+ "updateRelease": "rwa6qG_updateRelease",
1141
+ "configGuideBody": "rwa6qG_configGuideBody",
1142
+ "taskRows": "rwa6qG_taskRows",
1143
+ "galleryToast": "rwa6qG_galleryToast",
1144
+ "studio": "rwa6qG_studio",
1145
+ "image": "rwa6qG_image",
1146
+ "lightboxDownload": "rwa6qG_lightboxDownload",
1147
+ "comparisonFullscreen": "rwa6qG_comparisonFullscreen",
1071
1148
  "galleryMasonry": "rwa6qG_galleryMasonry",
1072
- "gallerySearch": "rwa6qG_gallerySearch",
1073
- "bigSpinner": "rwa6qG_bigSpinner",
1074
- "comparisonImageButton": "rwa6qG_comparisonImageButton",
1149
+ "galleryImageButton": "rwa6qG_galleryImageButton",
1150
+ "config": "rwa6qG_config",
1151
+ "galleryAdd": "rwa6qG_galleryAdd",
1075
1152
  "prompt": "rwa6qG_prompt",
1076
- "lightboxActions": "rwa6qG_lightboxActions",
1077
- "lightboxCopy": "rwa6qG_lightboxCopy",
1078
- "studio": "rwa6qG_studio",
1079
- "galleryClear": "rwa6qG_galleryClear",
1080
- "uploadHint": "rwa6qG_uploadHint",
1081
- "modelSelect": "rwa6qG_modelSelect",
1082
- "historySearch": "rwa6qG_historySearch",
1083
- "configGuide": "rwa6qG_configGuide",
1084
- "paramGroup": "rwa6qG_paramGroup",
1085
- "historyThumb": "rwa6qG_historyThumb",
1086
1153
  "uploadIcon": "rwa6qG_uploadIcon",
1087
- "lightboxCaptionRow": "rwa6qG_lightboxCaptionRow",
1088
- "galleryFilterCount": "rwa6qG_galleryFilterCount",
1089
- "modeRow": "rwa6qG_modeRow",
1090
- "modelWrap": "rwa6qG_modelWrap",
1154
+ "taskTrayChevron": "rwa6qG_taskTrayChevron",
1155
+ "taskPrompt": "rwa6qG_taskPrompt",
1156
+ "referenceImage": "rwa6qG_referenceImage",
1157
+ "githubLink": "rwa6qG_githubLink",
1158
+ "historyHeader": "rwa6qG_historyHeader",
1159
+ "paramLabel": "rwa6qG_paramLabel",
1091
1160
  "canvasState": "rwa6qG_canvasState",
1092
- "gallerySort": "rwa6qG_gallerySort",
1093
- "panel": "rwa6qG_panel",
1094
- "configGuideBody": "rwa6qG_configGuideBody",
1095
- "modelMenuItem": "rwa6qG_modelMenuItem",
1096
- "canvasStateHint": "rwa6qG_canvasStateHint",
1097
- "lightboxTool": "rwa6qG_lightboxTool",
1098
- "panelHeading": "rwa6qG_panelHeading",
1099
- "hiddenFile": "rwa6qG_hiddenFile",
1100
- "zoomHint": "rwa6qG_zoomHint",
1101
- "galleryCardInfo": "rwa6qG_galleryCardInfo",
1102
- "image": "rwa6qG_image",
1103
- "history": "rwa6qG_history",
1104
- "canvasMeta": "rwa6qG_canvasMeta",
1105
- "canvasStateTitle": "rwa6qG_canvasStateTitle",
1106
1161
  "galleryFilter": "rwa6qG_galleryFilter",
1107
- "galleryToolbar": "rwa6qG_galleryToolbar",
1108
- "config": "rwa6qG_config",
1109
- "historyInfo": "rwa6qG_historyInfo",
1110
- "updateRelease": "rwa6qG_updateRelease",
1111
- "lightbox": "rwa6qG_lightbox",
1112
- "taskTrayToggle": "rwa6qG_taskTrayToggle",
1113
- "connectionStatus": "rwa6qG_connectionStatus",
1114
- "historyClear": "rwa6qG_historyClear",
1115
- "modelLabel": "rwa6qG_modelLabel",
1116
- "canvasBody": "rwa6qG_canvasBody",
1117
- "lightboxImage": "rwa6qG_lightboxImage",
1118
- "galleryFilters": "rwa6qG_galleryFilters",
1119
- "galleryFilterHeading": "rwa6qG_galleryFilterHeading",
1162
+ "gallerySelectionClear": "rwa6qG_gallerySelectionClear",
1163
+ "galleryViewToggle": "rwa6qG_galleryViewToggle",
1164
+ "lightboxClose": "rwa6qG_lightboxClose",
1165
+ "galleryRatioList": "rwa6qG_galleryRatioList",
1166
+ "taskTrayHeader": "rwa6qG_taskTrayHeader",
1167
+ "gallerySelect": "rwa6qG_gallerySelect",
1168
+ "comparisonGrid": "rwa6qG_comparisonGrid",
1169
+ "taskStatus": "rwa6qG_taskStatus",
1170
+ "gallerySelectMode": "rwa6qG_gallerySelectMode",
1171
+ "historySearch": "rwa6qG_historySearch",
1172
+ "historyTitle": "rwa6qG_historyTitle",
1173
+ "galleryTags": "rwa6qG_galleryTags",
1174
+ "zoomHint": "rwa6qG_zoomHint",
1120
1175
  "historyFilters": "rwa6qG_historyFilters",
1121
- "dshImageGenSpin": "rwa6qG_dshImageGenSpin",
1122
- "uploadBox": "rwa6qG_uploadBox",
1176
+ "grid": "rwa6qG_grid",
1177
+ "historyInfo": "rwa6qG_historyInfo",
1178
+ "canvasEmptyIcon": "rwa6qG_canvasEmptyIcon",
1123
1179
  "gallerySelectionBar": "rwa6qG_gallerySelectionBar",
1124
- "comparisonBoard": "rwa6qG_comparisonBoard",
1125
- "historyItem": "rwa6qG_historyItem",
1126
- "galleryTags": "rwa6qG_galleryTags",
1127
- "galleryCount": "rwa6qG_galleryCount",
1128
- "galleryTagEditor": "rwa6qG_galleryTagEditor",
1129
- "compareToggle": "rwa6qG_compareToggle",
1130
- "card": "rwa6qG_card",
1131
- "updateText": "rwa6qG_updateText",
1132
- "paramLabel": "rwa6qG_paramLabel",
1133
- "historyMain": "rwa6qG_historyMain",
1134
1180
  "optionRow": "rwa6qG_optionRow",
1135
- "lightboxStage": "rwa6qG_lightboxStage",
1136
- "galleryRatioList": "rwa6qG_galleryRatioList",
1137
- "taskTray": "rwa6qG_taskTray",
1181
+ "modelMenuItem": "rwa6qG_modelMenuItem",
1138
1182
  "paramHint": "rwa6qG_paramHint",
1139
- "galleryRemove": "rwa6qG_galleryRemove",
1140
- "imageCaption": "rwa6qG_imageCaption",
1141
- "galleryTagFilterList": "rwa6qG_galleryTagFilterList",
1142
- "historyMeta": "rwa6qG_historyMeta",
1143
- "lightboxZoomLevel": "rwa6qG_lightboxZoomLevel",
1183
+ "promptCount": "rwa6qG_promptCount",
1184
+ "lightboxActions": "rwa6qG_lightboxActions",
1185
+ "galleryTagFilter": "rwa6qG_galleryTagFilter",
1186
+ "galleryAvatar": "rwa6qG_galleryAvatar",
1187
+ "lightboxImage": "rwa6qG_lightboxImage",
1188
+ "taskTrayClose": "rwa6qG_taskTrayClose",
1189
+ "footer": "rwa6qG_footer",
1190
+ "galleryToolbar": "rwa6qG_galleryToolbar",
1191
+ "generateButton": "rwa6qG_generateButton",
1192
+ "optionPill": "rwa6qG_optionPill",
1193
+ "compareToggle": "rwa6qG_compareToggle",
1144
1194
  "galleryHeading": "rwa6qG_galleryHeading",
1145
- "reference": "rwa6qG_reference",
1146
- "galleryImageButton": "rwa6qG_galleryImageButton",
1147
- "historyList": "rwa6qG_historyList",
1148
- "historyPrompt": "rwa6qG_historyPrompt",
1149
- "modelMenuList": "rwa6qG_modelMenuList",
1150
- "galleryFilterDivider": "rwa6qG_galleryFilterDivider",
1151
- "galleryViewToggle": "rwa6qG_galleryViewToggle",
1152
- "lightboxClose": "rwa6qG_lightboxClose",
1195
+ "dshImageGenToastIn": "rwa6qG_dshImageGenToastIn",
1196
+ "panelHeader": "rwa6qG_panelHeader",
1197
+ "configGuide": "rwa6qG_configGuide",
1198
+ "galleryRemove": "rwa6qG_galleryRemove",
1153
1199
  "galleryRatio": "rwa6qG_galleryRatio",
1154
- "canvasEmptyIcon": "rwa6qG_canvasEmptyIcon",
1155
- "canvasHistoryTag": "rwa6qG_canvasHistoryTag",
1156
- "lightboxCaption": "rwa6qG_lightboxCaption",
1200
+ "lightboxScaleFrame": "rwa6qG_lightboxScaleFrame",
1201
+ "updateText": "rwa6qG_updateText",
1202
+ "comparisonFullscreenGrid": "rwa6qG_comparisonFullscreenGrid",
1203
+ "modelLabel": "rwa6qG_modelLabel",
1204
+ "comparisonImageButton": "rwa6qG_comparisonImageButton",
1205
+ "historyList": "rwa6qG_historyList",
1206
+ "gallerySearch": "rwa6qG_gallerySearch",
1207
+ "historyThumbPlaceholder": "rwa6qG_historyThumbPlaceholder",
1157
1208
  "lightboxMeta": "rwa6qG_lightboxMeta",
1158
- "historyAction": "rwa6qG_historyAction",
1209
+ "reference": "rwa6qG_reference",
1210
+ "comparisonBoard": "rwa6qG_comparisonBoard",
1211
+ "compareControl": "rwa6qG_compareControl",
1212
+ "historyMain": "rwa6qG_historyMain",
1213
+ "lightboxCaption": "rwa6qG_lightboxCaption",
1214
+ "galleryTagInput": "rwa6qG_galleryTagInput",
1215
+ "uploadHint": "rwa6qG_uploadHint",
1216
+ "canvasHistoryTag": "rwa6qG_canvasHistoryTag",
1217
+ "galleryImage": "rwa6qG_galleryImage",
1218
+ "lightboxFigure": "rwa6qG_lightboxFigure",
1219
+ "galleryTagEdit": "rwa6qG_galleryTagEdit",
1220
+ "compareModelChoices": "rwa6qG_compareModelChoices",
1221
+ "historyEmpty": "rwa6qG_historyEmpty",
1222
+ "updateActions": "rwa6qG_updateActions",
1223
+ "lightboxTool": "rwa6qG_lightboxTool",
1224
+ "taskTrayCount": "rwa6qG_taskTrayCount",
1159
1225
  "enhanceButton": "rwa6qG_enhanceButton",
1160
- "taskTrayChevron": "rwa6qG_taskTrayChevron",
1161
- "spinner": "rwa6qG_spinner",
1162
- "generateInner": "rwa6qG_generateInner",
1163
- "taskRow": "rwa6qG_taskRow",
1226
+ "historyAction": "rwa6qG_historyAction",
1227
+ "referenceActions": "rwa6qG_referenceActions",
1228
+ "historyActions": "rwa6qG_historyActions",
1229
+ "historyPrompt": "rwa6qG_historyPrompt",
1230
+ "entryIcon": "rwa6qG_entryIcon",
1231
+ "templatesButton": "rwa6qG_templatesButton",
1232
+ "modelMenu": "rwa6qG_modelMenu",
1233
+ "taskTray": "rwa6qG_taskTray",
1234
+ "canvasStateTitle": "rwa6qG_canvasStateTitle",
1164
1235
  "lightboxNav": "rwa6qG_lightboxNav",
1165
- "lightboxDownload": "rwa6qG_lightboxDownload",
1166
- "promptFooter": "rwa6qG_promptFooter",
1167
- "grid": "rwa6qG_grid",
1168
- "referenceImage": "rwa6qG_referenceImage",
1169
- "imageCard": "rwa6qG_imageCard",
1170
- "galleryToast": "rwa6qG_galleryToast",
1236
+ "history": "rwa6qG_history",
1237
+ "galleryFilters": "rwa6qG_galleryFilters",
1238
+ "imageCaption": "rwa6qG_imageCaption",
1239
+ "galleryCount": "rwa6qG_galleryCount",
1240
+ "historyItem": "rwa6qG_historyItem",
1241
+ "lightboxCaptionRow": "rwa6qG_lightboxCaptionRow",
1242
+ "canvasError": "rwa6qG_canvasError",
1243
+ "panelTitle": "rwa6qG_panelTitle",
1244
+ "hiddenFile": "rwa6qG_hiddenFile",
1245
+ "galleryClear": "rwa6qG_galleryClear",
1246
+ "panel": "rwa6qG_panel",
1247
+ "galleryTagEditor": "rwa6qG_galleryTagEditor",
1171
1248
  "galleryBadge": "rwa6qG_galleryBadge",
1249
+ "lightbox": "rwa6qG_lightbox",
1250
+ "galleryFilterDivider": "rwa6qG_galleryFilterDivider",
1172
1251
  "galleryCardFooter": "rwa6qG_galleryCardFooter",
1173
- "comparisonFullscreen": "rwa6qG_comparisonFullscreen",
1174
- "historyEmpty": "rwa6qG_historyEmpty",
1175
- "galleryToolbarActions": "rwa6qG_galleryToolbarActions",
1176
- "taskTrayCount": "rwa6qG_taskTrayCount",
1177
- "taskTrayClose": "rwa6qG_taskTrayClose",
1178
- "templatesButton": "rwa6qG_templatesButton",
1179
- "gallerySelectMode": "rwa6qG_gallerySelectMode",
1180
- "githubLink": "rwa6qG_githubLink",
1181
- "compareModelChoices": "rwa6qG_compareModelChoices",
1252
+ "download": "rwa6qG_download",
1253
+ "historyThumb": "rwa6qG_historyThumb",
1254
+ "modeRow": "rwa6qG_modeRow",
1255
+ "gallerySort": "rwa6qG_gallerySort",
1256
+ "configScroll": "rwa6qG_configScroll",
1257
+ "card": "rwa6qG_card",
1258
+ "modePill": "rwa6qG_modePill",
1259
+ "promptFooter": "rwa6qG_promptFooter",
1260
+ "optionGrid": "rwa6qG_optionGrid",
1261
+ "modelWrap": "rwa6qG_modelWrap",
1262
+ "canvasStateHint": "rwa6qG_canvasStateHint",
1263
+ "lightboxCopy": "rwa6qG_lightboxCopy",
1264
+ "lightboxIndex": "rwa6qG_lightboxIndex",
1182
1265
  "entry": "rwa6qG_entry",
1183
- "footer": "rwa6qG_footer",
1184
- "galleryCard": "rwa6qG_galleryCard",
1266
+ "view": "rwa6qG_view",
1185
1267
  "entryLabel": "rwa6qG_entryLabel",
1186
- "optionPill": "rwa6qG_optionPill",
1187
- "panelHeader": "rwa6qG_panelHeader",
1188
- "galleryAvatar": "rwa6qG_galleryAvatar",
1189
- "historyTitle": "rwa6qG_historyTitle",
1190
- "galleryTagInput": "rwa6qG_galleryTagInput",
1191
- "connectionDot": "rwa6qG_connectionDot",
1192
- "dshImageGenToastIn": "rwa6qG_dshImageGenToastIn",
1193
- "modePill": "rwa6qG_modePill",
1194
- "gallerySelectionClear": "rwa6qG_gallerySelectionClear",
1195
- "panelTitle": "rwa6qG_panelTitle",
1268
+ "galleryCard": "rwa6qG_galleryCard",
1269
+ "imageCard": "rwa6qG_imageCard",
1270
+ "paramGroup": "rwa6qG_paramGroup",
1196
1271
  "galleryWorkspace": "rwa6qG_galleryWorkspace",
1197
- "taskTrayHeader": "rwa6qG_taskTrayHeader",
1198
- "galleryTagEdit": "rwa6qG_galleryTagEdit",
1272
+ "dshImageGenSpin": "rwa6qG_dshImageGenSpin",
1273
+ "galleryToolbarActions": "rwa6qG_galleryToolbarActions",
1274
+ "generateInner": "rwa6qG_generateInner",
1275
+ "galleryFilterHeading": "rwa6qG_galleryFilterHeading",
1276
+ "canvasMeta": "rwa6qG_canvasMeta",
1277
+ "modelMenuList": "rwa6qG_modelMenuList",
1278
+ "lightboxTools": "rwa6qG_lightboxTools",
1279
+ "taskTrayToggle": "rwa6qG_taskTrayToggle",
1280
+ "historyMeta": "rwa6qG_historyMeta",
1199
1281
  "galleryFilterNote": "rwa6qG_galleryFilterNote",
1200
- "comparisonGrid": "rwa6qG_comparisonGrid",
1201
- "lightboxEdit": "rwa6qG_lightboxEdit",
1202
- "comparisonFullscreenGrid": "rwa6qG_comparisonFullscreenGrid",
1203
- "lightboxScaleFrame": "rwa6qG_lightboxScaleFrame",
1204
- "taskPrompt": "rwa6qG_taskPrompt",
1205
- "optionGrid": "rwa6qG_optionGrid",
1206
- "download": "rwa6qG_download",
1207
- "lightboxFigure": "rwa6qG_lightboxFigure",
1208
- "view": "rwa6qG_view",
1209
- "compareControl": "rwa6qG_compareControl",
1210
- "taskRows": "rwa6qG_taskRows",
1211
- "historyActions": "rwa6qG_historyActions",
1212
- "canvasError": "rwa6qG_canvasError",
1213
- "galleryAdd": "rwa6qG_galleryAdd"
1282
+ "galleryCardInfo": "rwa6qG_galleryCardInfo",
1283
+ "connectionDot": "rwa6qG_connectionDot",
1284
+ "taskRow": "rwa6qG_taskRow",
1285
+ "updateBanner": "rwa6qG_updateBanner",
1286
+ "galleryBulkButton": "rwa6qG_galleryBulkButton",
1287
+ "canvas": "rwa6qG_canvas",
1288
+ "panelHeading": "rwa6qG_panelHeading",
1289
+ "spinner": "rwa6qG_spinner",
1290
+ "bigSpinner": "rwa6qG_bigSpinner",
1291
+ "lightboxStage": "rwa6qG_lightboxStage",
1292
+ "galleryFilterCount": "rwa6qG_galleryFilterCount",
1293
+ "galleryTagFilterList": "rwa6qG_galleryTagFilterList",
1294
+ "connectionStatus": "rwa6qG_connectionStatus",
1295
+ "uploadBox": "rwa6qG_uploadBox",
1296
+ "historyClear": "rwa6qG_historyClear",
1297
+ "canvasBody": "rwa6qG_canvasBody"
1214
1298
  };
1215
1299
  //#endregion
1216
1300
  //#region src/client/mount.tsx
@@ -1867,79 +1951,79 @@ window.__ModuleLoader__.load({
1867
1951
  document.head.appendChild(tag);
1868
1952
  }
1869
1953
  var settings_card_module_css_default = {
1870
- "footer": "zmjoSq_footer",
1871
- "save": "zmjoSq_save",
1872
- "modelCatalog": "zmjoSq_modelCatalog",
1873
- "channelDotReady": "zmjoSq_channelDotReady",
1874
- "candidateTitle": "zmjoSq_candidateTitle",
1875
- "label": "zmjoSq_label",
1876
- "candidatePanel": "zmjoSq_candidatePanel",
1877
- "select": "zmjoSq_select",
1878
- "editorFooter": "zmjoSq_editorFooter",
1879
- "description": "zmjoSq_description",
1880
- "channelMain": "zmjoSq_channelMain",
1881
- "modelArrow": "zmjoSq_modelArrow",
1882
- "channelAdd": "zmjoSq_channelAdd",
1883
- "modelRows": "zmjoSq_modelRows",
1884
- "candidateList": "zmjoSq_candidateList",
1885
- "card": "zmjoSq_card",
1886
- "candidate": "zmjoSq_candidate",
1887
- "customSettingsSummary": "zmjoSq_customSettingsSummary",
1954
+ "headText": "zmjoSq_headText",
1955
+ "sectionTitle": "zmjoSq_sectionTitle",
1956
+ "reset": "zmjoSq_reset",
1888
1957
  "customSettingsBody": "zmjoSq_customSettingsBody",
1958
+ "channelMeta": "zmjoSq_channelMeta",
1959
+ "candidateTitle": "zmjoSq_candidateTitle",
1960
+ "channelRow": "zmjoSq_channelRow",
1961
+ "linkButton": "zmjoSq_linkButton",
1962
+ "sectionHint": "zmjoSq_sectionHint",
1889
1963
  "modelCatalogMeta": "zmjoSq_modelCatalogMeta",
1890
- "modelCatalogTitle": "zmjoSq_modelCatalogTitle",
1891
- "channelSection": "zmjoSq_channelSection",
1892
1964
  "detectOk": "zmjoSq_detectOk",
1893
- "channelDotWarn": "zmjoSq_channelDotWarn",
1894
- "body": "zmjoSq_body",
1895
- "channelDanger": "zmjoSq_channelDanger",
1896
- "linkButton": "zmjoSq_linkButton",
1897
- "deleteConfirmText": "zmjoSq_deleteConfirmText",
1898
- "editorHeader": "zmjoSq_editorHeader",
1899
- "discard": "zmjoSq_discard",
1900
- "editorTitle": "zmjoSq_editorTitle",
1901
- "head": "zmjoSq_head",
1902
- "channelHost": "zmjoSq_channelHost",
1903
- "chevronOpen": "zmjoSq_chevronOpen",
1904
- "modelRow": "zmjoSq_modelRow",
1905
1965
  "chevron": "zmjoSq_chevron",
1906
- "sectionHeader": "zmjoSq_sectionHeader",
1907
- "channelMeta": "zmjoSq_channelMeta",
1908
- "failed": "zmjoSq_failed",
1966
+ "customSettingsSummary": "zmjoSq_customSettingsSummary",
1967
+ "modelCatalogTools": "zmjoSq_modelCatalogTools",
1968
+ "pending": "zmjoSq_pending",
1969
+ "chevronOpen": "zmjoSq_chevronOpen",
1970
+ "name": "zmjoSq_name",
1909
1971
  "modelCatalogHead": "zmjoSq_modelCatalogHead",
1910
- "header": "zmjoSq_header",
1911
- "link": "zmjoSq_link",
1972
+ "body": "zmjoSq_body",
1973
+ "modelRow": "zmjoSq_modelRow",
1974
+ "channelDotReady": "zmjoSq_channelDotReady",
1975
+ "channelMain": "zmjoSq_channelMain",
1976
+ "candidateList": "zmjoSq_candidateList",
1977
+ "select": "zmjoSq_select",
1912
1978
  "field": "zmjoSq_field",
1913
- "input": "zmjoSq_input",
1914
- "editorWrap": "zmjoSq_editorWrap",
1979
+ "discard": "zmjoSq_discard",
1980
+ "modelCatalogTitle": "zmjoSq_modelCatalogTitle",
1981
+ "channelBadge": "zmjoSq_channelBadge",
1982
+ "editorTitle": "zmjoSq_editorTitle",
1983
+ "candidate": "zmjoSq_candidate",
1984
+ "candidateId": "zmjoSq_candidateId",
1985
+ "customSettings": "zmjoSq_customSettings",
1986
+ "modelCategorySelect": "zmjoSq_modelCategorySelect",
1987
+ "footer": "zmjoSq_footer",
1988
+ "modelCatalog": "zmjoSq_modelCatalog",
1989
+ "addModel": "zmjoSq_addModel",
1990
+ "modelArrow": "zmjoSq_modelArrow",
1915
1991
  "modelInput": "zmjoSq_modelInput",
1916
- "channelAddRow": "zmjoSq_channelAddRow",
1917
- "candidateActions": "zmjoSq_candidateActions",
1992
+ "modelRowRemove": "zmjoSq_modelRowRemove",
1993
+ "channelEditor": "zmjoSq_channelEditor",
1994
+ "header": "zmjoSq_header",
1918
1995
  "channelList": "zmjoSq_channelList",
1919
- "modelEmpty": "zmjoSq_modelEmpty",
1920
- "addModel": "zmjoSq_addModel",
1921
- "sectionTitle": "zmjoSq_sectionTitle",
1922
- "name": "zmjoSq_name",
1923
- "reset": "zmjoSq_reset",
1924
- "candidateId": "zmjoSq_candidateId",
1925
- "modelCatalogTools": "zmjoSq_modelCatalogTools",
1926
- "headText": "zmjoSq_headText",
1927
1996
  "editorTag": "zmjoSq_editorTag",
1997
+ "sectionHeader": "zmjoSq_sectionHeader",
1998
+ "card": "zmjoSq_card",
1999
+ "channelDotWarn": "zmjoSq_channelDotWarn",
2000
+ "channelAdd": "zmjoSq_channelAdd",
2001
+ "modelRows": "zmjoSq_modelRows",
2002
+ "channelSection": "zmjoSq_channelSection",
1928
2003
  "candidateLabel": "zmjoSq_candidateLabel",
1929
- "candidateHead": "zmjoSq_candidateHead",
2004
+ "channelHost": "zmjoSq_channelHost",
2005
+ "editorWrap": "zmjoSq_editorWrap",
1930
2006
  "readOnly": "zmjoSq_readOnly",
1931
- "channelRow": "zmjoSq_channelRow",
1932
- "modelCategorySelect": "zmjoSq_modelCategorySelect",
1933
- "channelAction": "zmjoSq_channelAction",
1934
- "modelRowRemove": "zmjoSq_modelRowRemove",
2007
+ "description": "zmjoSq_description",
2008
+ "deleteConfirmText": "zmjoSq_deleteConfirmText",
2009
+ "head": "zmjoSq_head",
2010
+ "candidateActions": "zmjoSq_candidateActions",
2011
+ "editorFooter": "zmjoSq_editorFooter",
2012
+ "channelAddRow": "zmjoSq_channelAddRow",
2013
+ "failed": "zmjoSq_failed",
2014
+ "link": "zmjoSq_link",
1935
2015
  "channelEmpty": "zmjoSq_channelEmpty",
1936
- "pending": "zmjoSq_pending",
2016
+ "candidatePanel": "zmjoSq_candidatePanel",
2017
+ "channelAction": "zmjoSq_channelAction",
2018
+ "input": "zmjoSq_input",
2019
+ "label": "zmjoSq_label",
2020
+ "editorHeader": "zmjoSq_editorHeader",
1937
2021
  "modelBadge": "zmjoSq_modelBadge",
2022
+ "save": "zmjoSq_save",
1938
2023
  "channelName": "zmjoSq_channelName",
1939
- "sectionHint": "zmjoSq_sectionHint",
1940
- "channelEditor": "zmjoSq_channelEditor",
1941
- "customSettings": "zmjoSq_customSettings",
1942
- "channelBadge": "zmjoSq_channelBadge"
2024
+ "modelEmpty": "zmjoSq_modelEmpty",
2025
+ "candidateHead": "zmjoSq_candidateHead",
2026
+ "channelDanger": "zmjoSq_channelDanger"
1943
2027
  };
1944
2028
  //#endregion
1945
2029
  //#region src/client/SettingsCard.tsx
@@ -2844,17 +2928,17 @@ window.__ModuleLoader__.load({
2844
2928
  document.head.appendChild(tag);
2845
2929
  }
2846
2930
  var audio_toolview_module_css_default = {
2847
- "message": "_7K1QKa_message",
2848
- "status": "_7K1QKa_status",
2849
- "audioRow": "_7K1QKa_audioRow",
2850
- "empty": "_7K1QKa_empty",
2851
- "error": "_7K1QKa_error",
2852
2931
  "audio": "_7K1QKa_audio",
2932
+ "empty": "_7K1QKa_empty",
2933
+ "status": "_7K1QKa_status",
2853
2934
  "icon": "_7K1QKa_icon",
2854
- "download": "_7K1QKa_download",
2855
2935
  "root": "_7K1QKa_root",
2936
+ "audioRow": "_7K1QKa_audioRow",
2856
2937
  "audios": "_7K1QKa_audios",
2857
- "header": "_7K1QKa_header"
2938
+ "message": "_7K1QKa_message",
2939
+ "header": "_7K1QKa_header",
2940
+ "error": "_7K1QKa_error",
2941
+ "download": "_7K1QKa_download"
2858
2942
  };
2859
2943
  //#endregion
2860
2944
  //#region src/client/audio-toolview.tsx