webcake-landing-mcp 1.0.23 → 1.0.24
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/dist/changelog.json +7 -7
- package/dist/web-guide.js +11 -5
- package/package.json +1 -1
package/dist/changelog.json
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"v": "1.0.24",
|
|
4
|
+
"d": "07/06/2026",
|
|
5
|
+
"type": "Changed",
|
|
6
|
+
"en": "The numbered installation steps on the GET / guide page now display a faint vertical connector line between step numbers, giving the list a clear…",
|
|
7
|
+
"vi": "Các bước cài đặt được đánh số trên trang hướng dẫn GET / nay hiển thị đường kết nối dọc mờ giữa các số thứ tự, tạo giao diện stepper rõ ràng."
|
|
8
|
+
},
|
|
2
9
|
{
|
|
3
10
|
"v": "1.0.23",
|
|
4
11
|
"d": "07/06/2026",
|
|
@@ -33,12 +40,5 @@
|
|
|
33
40
|
"type": "Changed",
|
|
34
41
|
"en": "get_generation_guide now includes a Section Playbook block that lists a common section menu for lead-gen and COD sales pages (header, hero,…",
|
|
35
42
|
"vi": "get_generation_guide nay có thêm khối \"Section Playbook\" liệt kê bộ section thường dùng cho trang thu lead và bán hàng COD (header, hero, tính…"
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"v": "1.0.18",
|
|
39
|
-
"d": "07/06/2026",
|
|
40
|
-
"type": "Changed",
|
|
41
|
-
"en": "new_element for list-product now seeds a default styles.colorBtn (rgba(246,4,87,1)) so generated product-list button labels have a visible accent…",
|
|
42
|
-
"vi": "new_element cho list-product nay gán sẵn styles.colorBtn mặc định (rgba(246,4,87,1)) để nhãn nút của danh sách sản phẩm có màu nhấn nhìn thấy được…"
|
|
43
43
|
}
|
|
44
44
|
]
|
package/dist/web-guide.js
CHANGED
|
@@ -524,18 +524,24 @@ export function guideHtml(origin, lang = "vi") {
|
|
|
524
524
|
.method{margin-bottom:16px;padding:24px}
|
|
525
525
|
.method>.tag{margin-bottom:4px}
|
|
526
526
|
.msub{color:var(--mut);font-size:.92rem;margin:.5rem 0 1.2rem}
|
|
527
|
-
.steps{list-style:none;margin:0;padding:0;display:grid;gap:
|
|
528
|
-
.steps li{display:flex;gap:14px}
|
|
527
|
+
.steps{list-style:none;margin:0;padding:0;display:grid;gap:18px;position:relative}
|
|
528
|
+
.steps li{display:flex;gap:14px;align-items:flex-start;position:relative}
|
|
529
|
+
/* Faint connector between step numbers → reads as an intentional stepper */
|
|
530
|
+
.steps li:not(:last-child)::after{content:"";position:absolute;left:13px;top:30px;bottom:-18px;width:2px;background:var(--line)}
|
|
529
531
|
.steps .n{flex:0 0 auto;width:28px;height:28px;border-radius:50%;color:var(--ic-fg);
|
|
530
532
|
background:rgba(29,185,84,.12);border:1px solid var(--line);
|
|
531
533
|
font:800 .85rem/1 system-ui;display:flex;align-items:center;justify-content:center}
|
|
532
534
|
.steps .body{flex:1;min-width:0;font-size:.95rem}
|
|
533
535
|
.steps .body pre{margin-top:9px}
|
|
534
|
-
|
|
536
|
+
/* A button inside a step drops to its own left-aligned line (inline-flex would
|
|
537
|
+
sit beside the text and be shoved off-baseline by the top margin). */
|
|
538
|
+
.steps .body .btn{display:flex;width:fit-content;margin-top:10px}
|
|
535
539
|
code.inl{background:rgba(29,185,84,.13);color:var(--g7);padding:1px 6px;border-radius:6px;font-size:.85em;font-weight:600;
|
|
536
540
|
overflow-wrap:anywhere;word-break:break-word}
|
|
537
541
|
.note{font-size:.86rem;color:var(--mut);margin-top:10px}
|
|
538
542
|
.note + pre,.note + .codewrap{margin-top:9px}
|
|
543
|
+
.tip{margin-top:16px;background:rgba(29,185,84,.06);border:1px solid var(--line);border-radius:12px;padding:13px 15px}
|
|
544
|
+
.tip .note{margin:0}
|
|
539
545
|
details{padding:2px 18px;margin-bottom:11px}
|
|
540
546
|
details summary{cursor:pointer;font-weight:600;padding:15px 0;list-style:none;display:flex;align-items:center;gap:10px}
|
|
541
547
|
details summary::-webkit-details-marker{display:none}
|
|
@@ -584,6 +590,7 @@ export function guideHtml(origin, lang = "vi") {
|
|
|
584
590
|
.lead{font-size:1.05rem}
|
|
585
591
|
.method{padding:18px 15px}
|
|
586
592
|
.card{padding:18px}
|
|
593
|
+
.tip{padding:11px 12px}
|
|
587
594
|
.cl-wrap{padding:18px 16px 10px}
|
|
588
595
|
.langsw{padding:6px 10px}
|
|
589
596
|
.uses li,.feat li{padding:14px}
|
|
@@ -666,8 +673,7 @@ export function guideHtml(origin, lang = "vi") {
|
|
|
666
673
|
<ol class="steps">
|
|
667
674
|
${steps(t.m1Steps.map(fill))}
|
|
668
675
|
</ol>
|
|
669
|
-
<p class="note">${t.m1Note}</p>
|
|
670
|
-
<pre>${INSTALL_ALL_CMD}</pre>
|
|
676
|
+
<div class="tip"><p class="note">${t.m1Note}</p><pre>${INSTALL_ALL_CMD}</pre></div>
|
|
671
677
|
</div>
|
|
672
678
|
|
|
673
679
|
<div class="glass card method reveal">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webcake-landing-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.24",
|
|
4
4
|
"description": "MCP server exposing Webcake landing-page element schemas + AI usage hints, and persisting LLM-generated page sources to a Webcake backend.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|