@slexkit/mcp 0.3.0 → 0.3.1
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/data/llms-components.txt +2 -1
- package/dist/data/llms-full.txt +73 -42
- package/dist/data/llms-runtime.txt +11 -12
- package/dist/data/llms.txt +1 -1
- package/dist/data/slexkit-ai-manifest.json +77 -73
- package/dist/index.js +3 -2
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -996,7 +996,6 @@ var inputSpec = component({
|
|
|
996
996
|
min: { type: "string | number", dynamic: true, description: "Minimum value used by numeric input controls." },
|
|
997
997
|
max: { type: "string | number", dynamic: true, description: "Maximum value used by numeric input controls." },
|
|
998
998
|
step: { type: "string | number", dynamic: true, description: "Step size used by numeric input controls." },
|
|
999
|
-
controls: { type: "boolean", default: true, dynamic: true, description: "Show decrement and increment buttons for numeric inputs." },
|
|
1000
999
|
onchange: { type: "write-expression", description: "Write expression invoked when the value changes." }
|
|
1001
1000
|
},
|
|
1002
1001
|
children: noChildren,
|
|
@@ -1476,6 +1475,8 @@ var textSpec = component({
|
|
|
1476
1475
|
content: { type: "string", dynamic: true, description: "Alias for text." },
|
|
1477
1476
|
label: { type: "string", dynamic: true, description: "Alias for text." },
|
|
1478
1477
|
variant: { type: "string", values: ["default", "muted"], default: "default", description: "Text visual variant." },
|
|
1478
|
+
color: { type: "string", dynamic: true, description: "Optional CSS color for controlled previews." },
|
|
1479
|
+
size: { type: "string | number", dynamic: true, description: "Optional font size. Numbers are treated as px." },
|
|
1479
1480
|
class: { type: "string", description: "Additional host-controlled CSS class." }
|
|
1480
1481
|
},
|
|
1481
1482
|
children: noChildren,
|
|
@@ -2059,4 +2060,4 @@ rl.on("line", (line) => {
|
|
|
2059
2060
|
})();
|
|
2060
2061
|
});
|
|
2061
2062
|
|
|
2062
|
-
//# debugId=
|
|
2063
|
+
//# debugId=47E6ACD49C36F18A64756E2164756E21
|