opc-agent 4.0.31 → 4.0.32
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.
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
--mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
|
|
20
20
|
--radius: 12px; --radius-lg: 20px;
|
|
21
21
|
}
|
|
22
|
-
body { font-family: var(--font); background: var(--bg); color: var(--text); min-height: 100vh; font-size:
|
|
22
|
+
body { font-family: var(--font); background: var(--bg); color: var(--text); min-height: 100vh; font-size: 15px; line-height: 1.6; background-image: radial-gradient(ellipse at top, rgba(124,92,255,0.08) 0%, transparent 50%), radial-gradient(ellipse at bottom right, rgba(0,212,255,0.05) 0%, transparent 50%); }
|
|
23
23
|
a { color: var(--accent); text-decoration: none; }
|
|
24
24
|
button { font-family: var(--font); cursor: pointer; border: none; }
|
|
25
25
|
input, select, textarea { font-family: var(--font); }
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
.sidebar-logo span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
|
|
35
35
|
.nav-item {
|
|
36
36
|
display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 10px;
|
|
37
|
-
cursor: pointer; color: var(--text-muted); transition: all 0.2s ease; font-size:
|
|
37
|
+
cursor: pointer; color: var(--text-muted); transition: all 0.2s ease; font-size: 15px; margin-bottom: 3px;
|
|
38
38
|
}
|
|
39
39
|
.nav-item:hover { background: var(--bg-hover); color: var(--text); transform: translateX(4px); }
|
|
40
40
|
.nav-item.active { background: var(--accent-light); color: var(--accent); font-weight: 500; box-shadow: var(--glow-sm); }
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
/* Page container */
|
|
57
57
|
.page { display: none; padding: 32px; max-width: 1200px; margin: 0 auto; }
|
|
58
58
|
.page.active { display: block; }
|
|
59
|
-
.page-title { font-size:
|
|
60
|
-
.page-subtitle { color: var(--text-muted); font-size:
|
|
59
|
+
.page-title { font-size: 28px; font-weight: 700; margin-bottom: 8px; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
|
|
60
|
+
.page-subtitle { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; }
|
|
61
61
|
|
|
62
62
|
/* Cards */
|
|
63
63
|
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: all 0.25s ease; backdrop-filter: blur(10px); box-shadow: var(--card-glow); }
|
|
@@ -65,21 +65,21 @@
|
|
|
65
65
|
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
|
|
66
66
|
|
|
67
67
|
/* Buttons */
|
|
68
|
-
.btn { padding: 8px 20px; border-radius: 10px; font-size: 14px; font-weight: 500; transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 8px; height:
|
|
68
|
+
.btn { padding: 8px 20px; border-radius: 10px; font-size: 14px; font-weight: 500; transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 8px; height: 38px; line-height: 20px; }
|
|
69
69
|
.btn-primary { background: var(--gradient); color: white; box-shadow: var(--glow-sm); }
|
|
70
70
|
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--glow); }
|
|
71
71
|
.btn-secondary { background: rgba(255,255,255,0.05); color: var(--text); border: 1px solid var(--border); backdrop-filter: blur(10px); }
|
|
72
72
|
.btn-secondary:hover { border-color: var(--accent); box-shadow: var(--glow-sm); }
|
|
73
73
|
.btn-danger { background: rgba(239,68,68,0.1); color: var(--red); }
|
|
74
74
|
.btn-danger:hover { background: rgba(239,68,68,0.2); }
|
|
75
|
-
.btn-sm { padding: 6px 12px; font-size: 13px; }
|
|
76
|
-
.btn-lg { padding: 14px 28px; font-size: 16px; }
|
|
75
|
+
.btn-sm { padding: 6px 12px; font-size: 13px; height: 32px; }
|
|
76
|
+
.btn-lg { padding: 14px 28px; font-size: 16px; height: 48px; }
|
|
77
77
|
|
|
78
78
|
/* Form elements */
|
|
79
|
-
.input { width: 100%; padding: 8px 14px; height:
|
|
79
|
+
.input { width: 100%; padding: 8px 14px; height: 40px; background: var(--bg-input); border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-size: 15px; outline: none; transition: all 0.2s ease; backdrop-filter: blur(5px); }
|
|
80
80
|
.input:focus { border-color: var(--accent); box-shadow: var(--glow-sm); }
|
|
81
81
|
.input::placeholder { color: var(--text-dim); }
|
|
82
|
-
.label { display: block; font-size: 13px; font-weight: 500; color: var(--text-muted); margin-bottom: 6px; }
|
|
82
|
+
.label { display: block; font-size: 13px; font-weight: 500; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
|
|
83
83
|
.form-group { margin-bottom: 20px; }
|
|
84
84
|
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23737373' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
|
|
85
85
|
|
package/package.json
CHANGED
package/src/studio-ui/index.html
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
--mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
|
|
20
20
|
--radius: 12px; --radius-lg: 20px;
|
|
21
21
|
}
|
|
22
|
-
body { font-family: var(--font); background: var(--bg); color: var(--text); min-height: 100vh; font-size:
|
|
22
|
+
body { font-family: var(--font); background: var(--bg); color: var(--text); min-height: 100vh; font-size: 15px; line-height: 1.6; background-image: radial-gradient(ellipse at top, rgba(124,92,255,0.08) 0%, transparent 50%), radial-gradient(ellipse at bottom right, rgba(0,212,255,0.05) 0%, transparent 50%); }
|
|
23
23
|
a { color: var(--accent); text-decoration: none; }
|
|
24
24
|
button { font-family: var(--font); cursor: pointer; border: none; }
|
|
25
25
|
input, select, textarea { font-family: var(--font); }
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
.sidebar-logo span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
|
|
35
35
|
.nav-item {
|
|
36
36
|
display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 10px;
|
|
37
|
-
cursor: pointer; color: var(--text-muted); transition: all 0.2s ease; font-size:
|
|
37
|
+
cursor: pointer; color: var(--text-muted); transition: all 0.2s ease; font-size: 15px; margin-bottom: 3px;
|
|
38
38
|
}
|
|
39
39
|
.nav-item:hover { background: var(--bg-hover); color: var(--text); transform: translateX(4px); }
|
|
40
40
|
.nav-item.active { background: var(--accent-light); color: var(--accent); font-weight: 500; box-shadow: var(--glow-sm); }
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
/* Page container */
|
|
57
57
|
.page { display: none; padding: 32px; max-width: 1200px; margin: 0 auto; }
|
|
58
58
|
.page.active { display: block; }
|
|
59
|
-
.page-title { font-size:
|
|
60
|
-
.page-subtitle { color: var(--text-muted); font-size:
|
|
59
|
+
.page-title { font-size: 28px; font-weight: 700; margin-bottom: 8px; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
|
|
60
|
+
.page-subtitle { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; }
|
|
61
61
|
|
|
62
62
|
/* Cards */
|
|
63
63
|
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: all 0.25s ease; backdrop-filter: blur(10px); box-shadow: var(--card-glow); }
|
|
@@ -65,21 +65,21 @@
|
|
|
65
65
|
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
|
|
66
66
|
|
|
67
67
|
/* Buttons */
|
|
68
|
-
.btn { padding: 8px 20px; border-radius: 10px; font-size: 14px; font-weight: 500; transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 8px; height:
|
|
68
|
+
.btn { padding: 8px 20px; border-radius: 10px; font-size: 14px; font-weight: 500; transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 8px; height: 38px; line-height: 20px; }
|
|
69
69
|
.btn-primary { background: var(--gradient); color: white; box-shadow: var(--glow-sm); }
|
|
70
70
|
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--glow); }
|
|
71
71
|
.btn-secondary { background: rgba(255,255,255,0.05); color: var(--text); border: 1px solid var(--border); backdrop-filter: blur(10px); }
|
|
72
72
|
.btn-secondary:hover { border-color: var(--accent); box-shadow: var(--glow-sm); }
|
|
73
73
|
.btn-danger { background: rgba(239,68,68,0.1); color: var(--red); }
|
|
74
74
|
.btn-danger:hover { background: rgba(239,68,68,0.2); }
|
|
75
|
-
.btn-sm { padding: 6px 12px; font-size: 13px; }
|
|
76
|
-
.btn-lg { padding: 14px 28px; font-size: 16px; }
|
|
75
|
+
.btn-sm { padding: 6px 12px; font-size: 13px; height: 32px; }
|
|
76
|
+
.btn-lg { padding: 14px 28px; font-size: 16px; height: 48px; }
|
|
77
77
|
|
|
78
78
|
/* Form elements */
|
|
79
|
-
.input { width: 100%; padding: 8px 14px; height:
|
|
79
|
+
.input { width: 100%; padding: 8px 14px; height: 40px; background: var(--bg-input); border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-size: 15px; outline: none; transition: all 0.2s ease; backdrop-filter: blur(5px); }
|
|
80
80
|
.input:focus { border-color: var(--accent); box-shadow: var(--glow-sm); }
|
|
81
81
|
.input::placeholder { color: var(--text-dim); }
|
|
82
|
-
.label { display: block; font-size: 13px; font-weight: 500; color: var(--text-muted); margin-bottom: 6px; }
|
|
82
|
+
.label { display: block; font-size: 13px; font-weight: 500; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
|
|
83
83
|
.form-group { margin-bottom: 20px; }
|
|
84
84
|
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23737373' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
|
|
85
85
|
|