@dickpy/dsh-imagegen 1.5.6 → 1.5.7
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 +2 -1
- package/lib/client.js +426 -390
- package/lib/client.js.map +1 -1
- package/lib/index.js +181 -5
- package/package.json +81 -81
- package/src/canvas-store.ts +375 -375
- package/src/client/ImageGenPanel.tsx +2823 -2807
- package/src/client/SettingsCard.tsx +1128 -1128
- package/src/client/locales.ts +1515 -1509
- package/src/client/panel.module.css +7 -0
- package/src/engine.ts +998 -845
- package/src/gallery-store.ts +311 -311
- package/src/history-store.ts +275 -275
- package/src/image-storage-path.ts +12 -12
- package/src/index.ts +430 -429
- package/src/model-catalog.ts +149 -124
- package/src/presets.ts +95 -86
- package/src/prompt-enhancer.ts +151 -137
- package/src/protocol.ts +580 -580
|
@@ -1763,6 +1763,13 @@ html[data-dsh-imagegen-chat-collapsed] [data-dsh-imagegen-chat-resizer] {
|
|
|
1763
1763
|
font-variant-numeric: tabular-nums;
|
|
1764
1764
|
}
|
|
1765
1765
|
|
|
1766
|
+
/* Over the model's documented prompt limit: red + bold so the locked generate
|
|
1767
|
+
button is self-explanatory (the tooltip repeats the exact limit). */
|
|
1768
|
+
.promptCount[data-over] {
|
|
1769
|
+
color: var(--dsw-alias-status-danger, #e5484d);
|
|
1770
|
+
font-weight: 600;
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1766
1773
|
/* --- parameter groups ----------------------------------------------------------- */
|
|
1767
1774
|
|
|
1768
1775
|
.paramGroup {
|