kingkont 0.7.31 → 0.7.33
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/assets/icon.png +0 -0
- package/assets/logo-1024.png +0 -0
- package/assets/logo-256.png +0 -0
- package/assets/logo-512.png +0 -0
- package/assets/logo.icns +0 -0
- package/package.json +1 -1
- package/settings.html +11 -1
package/assets/icon.png
CHANGED
|
Binary file
|
package/assets/logo-1024.png
CHANGED
|
Binary file
|
package/assets/logo-256.png
CHANGED
|
Binary file
|
package/assets/logo-512.png
CHANGED
|
Binary file
|
package/assets/logo.icns
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kingkont",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.33",
|
|
4
4
|
"description": "KingKont \u00b7 Chatium \u2014 \u043d\u043e\u0434-\u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u0441\u0446\u0435\u043d \u0441 AI-\u0433\u0435\u043d\u0435\u0440\u0430\u0446\u0438\u0435\u0439 (\u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0438/\u0432\u0438\u0434\u0435\u043e/\u0433\u043e\u043b\u043e\u0441/SFX/\u043c\u0443\u0437\u044b\u043a\u0430/\u0442\u0435\u043a\u0441\u0442)",
|
|
5
5
|
"main": "main.js",
|
|
6
6
|
"bin": {
|
package/settings.html
CHANGED
|
@@ -81,7 +81,17 @@
|
|
|
81
81
|
}
|
|
82
82
|
.provider-head .badge { color: var(--muted); font-weight: 400; font-size: 11px; }
|
|
83
83
|
.provider-block { transition: opacity 0.15s; }
|
|
84
|
-
|
|
84
|
+
/* Когда провайдер выключен, тушим визуально, НО оставляем клик по
|
|
85
|
+
provider-head (чекбокс должен включаться обратно). pointer-events:
|
|
86
|
+
none ставим только на input/hint внутри — поле ключа становится
|
|
87
|
+
нередактируемым, но чекбокс активный. */
|
|
88
|
+
.provider-block.disabled { opacity: 0.55; }
|
|
89
|
+
.provider-block.disabled input[type="password"],
|
|
90
|
+
.provider-block.disabled input[type="text"],
|
|
91
|
+
.provider-block.disabled .hint { pointer-events: none; }
|
|
92
|
+
.card.disabled .chatium-state,
|
|
93
|
+
.card.disabled .row,
|
|
94
|
+
.card.disabled .hint { pointer-events: none; }
|
|
85
95
|
|
|
86
96
|
/* Chatium card */
|
|
87
97
|
.chatium-state { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
|