@dgplsoares/singulai-ds-mcp 0.10.0 → 0.10.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/catalog.json +54 -3
- package/package.json +1 -1
package/dist/data/catalog.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.10.
|
|
3
|
-
"generated_at": "2026-06-
|
|
2
|
+
"version": "0.10.1",
|
|
3
|
+
"generated_at": "2026-06-19T03:00:00.000Z",
|
|
4
4
|
"design_system": {
|
|
5
5
|
"name": "Singulai Design System",
|
|
6
|
-
"version": "0.10.
|
|
6
|
+
"version": "0.10.1",
|
|
7
7
|
"homepage": "https://design.singulai.ai",
|
|
8
8
|
"repo": "https://github.com/dgplsoares/singulai-design-system",
|
|
9
9
|
"stack": [
|
|
@@ -2528,6 +2528,57 @@
|
|
|
2528
2528
|
"<ds-accordion [modules]=\"cursoModules\" (moduleEdit)=\"editModule($event)\" (addItem)=\"addLesson($event)\" (itemView)=\"viewItem($event)\" />",
|
|
2529
2529
|
"<ds-accordion [modules]=\"mentoriaModules\" addItemLabel=\"Adicionar Sessao\" (moduleToggle)=\"trackToggle($event)\" />"
|
|
2530
2530
|
]
|
|
2531
|
+
},
|
|
2532
|
+
{
|
|
2533
|
+
"name": "TypePickerComponent",
|
|
2534
|
+
"selector": "ds-type-picker",
|
|
2535
|
+
"description": "Cards visuais para selecao de tipo (kind). Componente NOVO no DS para selecao via cards 104x99 — usado no offcanvas de criar/editar aula (Cursos), sessao (Mentorias) e programacao (Eventos) da Fase D. Pixel-perfect contra Figma 657:4912. Card 2-layer nested: outer border 1px #DFE3EA + radius 10; inner bg rgba(255,255,255,0.25) + border 1px #FFFFFF + padding 20. Estado SELECTED: bg #F5F7FA + border 1px #CFD7E2 + 5-layer drop shadow (effect_box_2) + inset neumorphic (-4 4 rgba(94,114,150,0.14) + 4 4 #FFF) + label #2C5CB1. API discriminated union (DEC-D-H): TypePickerOption[] com kind tipado. Suporta iconSrc (SVG custom Figma — preferido) ou icon (heroicon como fallback) + iconWidth/Height per option. Acessibilidade: role=radiogroup + role=radio + aria-checked + aria-disabled + focus-visible outline. Mobile responsive: cards menores em <=480px.",
|
|
2536
|
+
"tags": [
|
|
2537
|
+
"type-picker",
|
|
2538
|
+
"selection",
|
|
2539
|
+
"cards",
|
|
2540
|
+
"radio",
|
|
2541
|
+
"kind",
|
|
2542
|
+
"wizard",
|
|
2543
|
+
"form"
|
|
2544
|
+
],
|
|
2545
|
+
"props": [
|
|
2546
|
+
{
|
|
2547
|
+
"name": "options",
|
|
2548
|
+
"type": "TypePickerOption[]",
|
|
2549
|
+
"required": true,
|
|
2550
|
+
"description": "Opcoes a renderizar (1 card por opcao). Each: { kind, label, iconSrc?, icon?, iconWidth?, iconHeight?, disabled? }."
|
|
2551
|
+
},
|
|
2552
|
+
{
|
|
2553
|
+
"name": "selectedKind",
|
|
2554
|
+
"type": "string | null",
|
|
2555
|
+
"default": "null",
|
|
2556
|
+
"description": "Kind atualmente selecionado (null = nenhum)."
|
|
2557
|
+
},
|
|
2558
|
+
{
|
|
2559
|
+
"name": "disabled",
|
|
2560
|
+
"type": "boolean",
|
|
2561
|
+
"default": "false",
|
|
2562
|
+
"description": "Desabilita TODOS os cards (override do disabled per-option)."
|
|
2563
|
+
},
|
|
2564
|
+
{
|
|
2565
|
+
"name": "ariaLabel",
|
|
2566
|
+
"type": "string",
|
|
2567
|
+
"default": "'Selecione um tipo'",
|
|
2568
|
+
"description": "Aria-label do grupo de radio buttons."
|
|
2569
|
+
}
|
|
2570
|
+
],
|
|
2571
|
+
"outputs": [
|
|
2572
|
+
{
|
|
2573
|
+
"name": "selectedKindChange",
|
|
2574
|
+
"type": "EventEmitter<string>"
|
|
2575
|
+
}
|
|
2576
|
+
],
|
|
2577
|
+
"examples": [
|
|
2578
|
+
"<ds-type-picker [options]=\"typeOptions\" [(selectedKind)]=\"kind\" ariaLabel=\"Tipo de aula\" />",
|
|
2579
|
+
"<ds-type-picker [options]=\"[{ kind: 'videoaula', label: 'Videoaula', icon: 'heroVideoCamera', iconWidth: 27, iconHeight: 15 }, { kind: 'ebook', label: 'Ebook', icon: 'heroBookOpen', iconWidth: 23, iconHeight: 23 }]\" [selectedKind]=\"selected()\" (selectedKindChange)=\"onSelect($event)\" />",
|
|
2580
|
+
"<ds-type-picker [options]=\"opts\" [selectedKind]=\"null\" [disabled]=\"isSaving\" />"
|
|
2581
|
+
]
|
|
2531
2582
|
}
|
|
2532
2583
|
],
|
|
2533
2584
|
"services": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dgplsoares/singulai-ds-mcp",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"description": "MCP server exposing the Singulai Design System (Angular 20) to AI agents \u2014 Claude Desktop, Claude Code, Cursor, Continue.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|