codexmate 0.0.33 → 0.0.34
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/cli/agents-files.js +6 -0
- package/cli/archive-helpers.js +11 -4
- package/cli/local-bridge.js +9 -4
- package/cli/openai-bridge.js +1 -1
- package/cli/update.js +11 -2
- package/cli.js +65 -9
- package/lib/cli-webhook.js +29 -1
- package/package.json +1 -1
- package/web-ui/app.js +4 -0
- package/web-ui/index.html +1 -0
- package/web-ui/logic.claude.mjs +4 -0
- package/web-ui/modules/app.methods.claude-config.mjs +37 -0
- package/web-ui/modules/app.methods.codex-config.mjs +11 -3
- package/web-ui/modules/app.methods.navigation.mjs +14 -0
- package/web-ui/modules/app.methods.session-browser.mjs +5 -6
- package/web-ui/modules/app.methods.startup-claude.mjs +9 -0
- package/web-ui/modules/app.methods.webhook.mjs +8 -0
- package/web-ui/modules/i18n.dict.mjs +3 -0
- package/web-ui/partials/index/modal-webhook.html +42 -0
- package/web-ui/partials/index/modals-basic.html +50 -0
- package/web-ui/partials/index/panel-config-claude.html +14 -25
- package/web-ui/partials/index/panel-config-codex.html +7 -21
- package/web-ui/partials/index/panel-settings.html +117 -149
- package/web-ui/styles/bridge-pool.css +69 -0
- package/web-ui/styles/settings-panel.css +300 -234
- package/web-ui/styles/webhook.css +38 -4
|
@@ -1,4 +1,39 @@
|
|
|
1
|
-
/*
|
|
1
|
+
/* ============================================
|
|
2
|
+
Webhook 模态框 — 极简设计
|
|
3
|
+
============================================ */
|
|
4
|
+
|
|
5
|
+
/* Webhook 事件复选框列表 */
|
|
6
|
+
.webhook-events-checkbox-list {
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
gap: 4px;
|
|
10
|
+
padding: 4px 0;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.webhook-event-checkbox-item {
|
|
14
|
+
display: inline-flex;
|
|
15
|
+
align-items: center;
|
|
16
|
+
gap: 10px;
|
|
17
|
+
padding: 10px 14px;
|
|
18
|
+
font-size: 14px;
|
|
19
|
+
color: var(--color-text-secondary);
|
|
20
|
+
cursor: pointer;
|
|
21
|
+
border-radius: 10px;
|
|
22
|
+
transition: all 0.15s ease;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.webhook-event-checkbox-item:hover {
|
|
26
|
+
background: rgba(137, 111, 94, 0.06);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.webhook-event-checkbox-item input[type="checkbox"] {
|
|
30
|
+
width: 18px;
|
|
31
|
+
height: 18px;
|
|
32
|
+
accent-color: var(--color-brand);
|
|
33
|
+
cursor: pointer;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/* 保留兼容旧组件的样式 */
|
|
2
37
|
.webhook-row {
|
|
3
38
|
display: flex;
|
|
4
39
|
align-items: center;
|
|
@@ -30,7 +65,6 @@
|
|
|
30
65
|
color: var(--color-text-muted);
|
|
31
66
|
}
|
|
32
67
|
|
|
33
|
-
/* 只读展示行 */
|
|
34
68
|
.webhook-readonly-row {
|
|
35
69
|
display: flex;
|
|
36
70
|
align-items: flex-start;
|
|
@@ -71,11 +105,11 @@
|
|
|
71
105
|
|
|
72
106
|
.webhook-event-tag {
|
|
73
107
|
display: inline-block;
|
|
74
|
-
padding:
|
|
108
|
+
padding: 4px 10px;
|
|
75
109
|
border-radius: 999px;
|
|
76
110
|
border: 1px solid var(--color-border);
|
|
77
111
|
background: var(--color-brand-light);
|
|
78
112
|
color: var(--color-brand-dark);
|
|
79
|
-
font-size:
|
|
113
|
+
font-size: 12px;
|
|
80
114
|
font-weight: var(--font-weight-secondary);
|
|
81
115
|
}
|