@mohityadav0903/branintelle-mcp 2.0.2 → 2.1.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mohityadav0903/branintelle-mcp",
3
- "version": "2.0.2",
3
+ "version": "2.1.0",
4
4
  "type": "module",
5
5
  "description": "MCP server for Branintelle UI Library - provides component documentation via Model Context Protocol",
6
6
  "main": "mcp-server.js",
@@ -1203,5 +1203,38 @@
1203
1203
  "Step": "label: string;\n status: 'done' | 'active' | 'upcoming';"
1204
1204
  },
1205
1205
  "types": {}
1206
+ },
1207
+ "right-sidebar": {
1208
+ "selector": "bi-right-sidebar",
1209
+ "inputs": {
1210
+ "menuItems": {
1211
+ "type": "SidebarMenuItem[]",
1212
+ "default": "[]",
1213
+ "required": false
1214
+ },
1215
+ "profile": {
1216
+ "type": "SidebarProfile",
1217
+ "default": "undefined",
1218
+ "required": false
1219
+ },
1220
+ "activeItemId": {
1221
+ "type": "string",
1222
+ "default": "undefined",
1223
+ "required": false
1224
+ }
1225
+ },
1226
+ "outputs": {
1227
+ "menuItemClicked": {
1228
+ "type": "EventEmitter<string>"
1229
+ },
1230
+ "profileClicked": {
1231
+ "type": "EventEmitter<void>"
1232
+ }
1233
+ },
1234
+ "interfaces": {
1235
+ "SidebarMenuItem": "id: string;\n icon: string;\n label?: string;\n badgeCount?: number | string;\n dividerAfter?: boolean;\n height?: string;",
1236
+ "SidebarProfile": "image?: string;\n firstName?: string;\n imageBaseUrl?: string;"
1237
+ },
1238
+ "types": {}
1206
1239
  }
1207
1240
  }