@triptease/design-system-mcp 1.2.15 → 1.3.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/dist/index.js +20 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -30196,7 +30196,7 @@ var StdioServerTransport = class {
|
|
|
30196
30196
|
// package.json
|
|
30197
30197
|
var package_default = {
|
|
30198
30198
|
name: "@triptease/design-system-mcp",
|
|
30199
|
-
version: "1.
|
|
30199
|
+
version: "1.3.0",
|
|
30200
30200
|
description: "MCP server for Triptease design system documentation",
|
|
30201
30201
|
type: "module",
|
|
30202
30202
|
main: "dist/index.js",
|
|
@@ -31432,6 +31432,25 @@ var combobox_default = {
|
|
|
31432
31432
|
</tt-combobox>
|
|
31433
31433
|
<button type="submit">Submit Form</button>
|
|
31434
31434
|
</form>`
|
|
31435
|
+
},
|
|
31436
|
+
{
|
|
31437
|
+
title: "Grouped options",
|
|
31438
|
+
description: "Use grouped options when users can use category membership to navigate the list. Example scenario: a hotel selector where users know the region they are looking for \u2014 group headers let them skip directly to that section. Avoid grouping when categories are sparse, non-obvious, or do not reflect distinctions users will actually use to scan.",
|
|
31439
|
+
code: `<label for="hotel-grouped">Our Hotels</label>
|
|
31440
|
+
<tt-combobox id="hotel-grouped">
|
|
31441
|
+
<optgroup label="America" slot="option">
|
|
31442
|
+
<option value="courtyard-by-marriott-southern-pines-aberdeen">Courtyard by Marriott Southern Pines Aberdeen</option>
|
|
31443
|
+
<option value="albuquerque-marriott-pyramid-north">Albuquerque Marriott Pyramid North</option>
|
|
31444
|
+
</optgroup>
|
|
31445
|
+
<optgroup label="France" slot="option">
|
|
31446
|
+
<option value="moxy-amiens">Moxy Amiens</option>
|
|
31447
|
+
<option value="courtyard-by-marriott-paris-arcueil">Courtyard by Marriott Paris Arcueil</option>
|
|
31448
|
+
</optgroup>
|
|
31449
|
+
<optgroup label="United Kingdom" slot="option">
|
|
31450
|
+
<option value="aloft-aberdeen-teca">Aloft Aberdeen TECA</option>
|
|
31451
|
+
<option value="bournemouth-highcliff-marriott-hotel">Bournemouth Highcliff Marriott Hotel</option>
|
|
31452
|
+
</optgroup>
|
|
31453
|
+
</tt-combobox>`
|
|
31435
31454
|
},
|
|
31436
31455
|
{
|
|
31437
31456
|
title: "Multi-select",
|