@iress-oss/ids-mcp-server 6.0.0-alpha.8 → 6.0.0-alpha.9

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.
Files changed (55) hide show
  1. package/generated/docs/components_components-alert-docs.md +23 -23
  2. package/generated/docs/components_components-autocomplete-docs.md +30 -86
  3. package/generated/docs/components_components-button-docs.md +18 -18
  4. package/generated/docs/components_components-buttongroup-docs.md +2 -2
  5. package/generated/docs/components_components-card-docs.md +13 -13
  6. package/generated/docs/components_components-checkbox-docs.md +0 -14
  7. package/generated/docs/components_components-checkboxgroup-docs.md +13 -13
  8. package/generated/docs/components_components-col-docs.md +6 -6
  9. package/generated/docs/components_components-expander-docs.md +2 -2
  10. package/generated/docs/components_components-field-docs.md +4 -4
  11. package/generated/docs/components_components-filter-docs.md +35 -35
  12. package/generated/docs/components_components-hide-docs.md +7 -13
  13. package/generated/docs/components_components-icon-docs.md +25 -25
  14. package/generated/docs/components_components-inline-docs.md +7 -7
  15. package/generated/docs/components_components-input-docs.md +9 -9
  16. package/generated/docs/components_components-inputcurrency-docs.md +1 -1
  17. package/generated/docs/components_components-menu-docs.md +38 -38
  18. package/generated/docs/components_components-menu-menuitem-docs.md +2 -2
  19. package/generated/docs/components_components-modal-docs.md +7 -7
  20. package/generated/docs/components_components-panel-docs.md +10 -10
  21. package/generated/docs/components_components-popover-docs.md +63 -35
  22. package/generated/docs/components_components-popover-recipes-docs.md +18 -10
  23. package/generated/docs/components_components-radiogroup-docs.md +7 -23
  24. package/generated/docs/components_components-readonly-docs.md +2 -2
  25. package/generated/docs/components_components-richselect-docs.md +33 -35
  26. package/generated/docs/components_components-row-docs.md +2 -2
  27. package/generated/docs/components_components-select-docs.md +12 -12
  28. package/generated/docs/components_components-skiplink-docs.md +2 -2
  29. package/generated/docs/components_components-slideout-docs.md +19 -19
  30. package/generated/docs/components_components-slider-docs.md +4 -4
  31. package/generated/docs/components_components-stack-docs.md +6 -6
  32. package/generated/docs/components_components-styled-docs.md +477 -0
  33. package/generated/docs/components_components-table-docs.md +35 -35
  34. package/generated/docs/components_components-tabset-docs.md +7 -7
  35. package/generated/docs/components_components-tag-docs.md +3 -3
  36. package/generated/docs/components_components-text-docs.md +4 -0
  37. package/generated/docs/components_components-toggle-docs.md +4 -4
  38. package/generated/docs/components_components-validationmessage-docs.md +6 -6
  39. package/generated/docs/components_foundations-responsive-layout-docs.md +10 -10
  40. package/generated/docs/components_foundations-z-index-stacking-docs.md +3 -3
  41. package/generated/docs/components_introduction-docs.md +1 -1
  42. package/generated/docs/components_patterns-form-docs.md +144 -29
  43. package/generated/docs/components_patterns-form-recipes-docs.md +30 -30
  44. package/generated/docs/components_patterns-loading-docs.md +3 -9
  45. package/generated/docs/components_patterns-shadow-docs.md +2 -2
  46. package/generated/docs/components_sandbox-docs.md +1 -1
  47. package/generated/docs/components_styling-props-colour-docs.md +2 -0
  48. package/generated/docs/components_styling-props-reference-docs.md +6 -9
  49. package/generated/docs/components_styling-props-screen-readers-docs.md +40 -1
  50. package/generated/docs/components_styling-props-scrollable-docs.md +76 -0
  51. package/generated/docs/components_styling-props-sizing-docs.md +1 -1
  52. package/generated/docs/components_styling-props-spacing-docs.md +6 -6
  53. package/generated/docs/guidelines.md +13 -13
  54. package/generated/docs/tokens_sandbox-docs.md +3 -0
  55. package/package.json +8 -8
@@ -46,7 +46,7 @@ object
46
46
 
47
47
  | \- |
48
48
 
49
- RAW
49
+ Edit JSON
50
50
 
51
51
  srOnly :
52
52
 
@@ -64,3 +64,42 @@ srOnly :
64
64
 
65
65
 
66
66
  |
67
+
68
+ `hideFrom` and `hideBelow`
69
+ --------------------------
70
+
71
+ The `hideFrom` and `hideBelow` props allow you to hide content from both visual users and screen readers at different breakpoints. This is useful when certain content is not relevant on smaller screens, and you want to ensure that screen reader users have the same experience as visual users.
72
+
73
+ [](./iframe.html?id=styling-props-screen-readers--hide-from)
74
+
75
+ Only on mobile screens
76
+
77
+ Show codedrawOpen in CodeSandbox
78
+
79
+ #### Props
80
+
81
+ | Name | Description | Default | Control |
82
+ | --- | --- | --- | --- |
83
+ | hideFrom |
84
+ string
85
+
86
+
87
+
88
+ | \- | lg |
89
+
90
+ [](./iframe.html?id=styling-props-screen-readers--hide-below)
91
+
92
+ Only on large screens
93
+
94
+ Show codedrawOpen in CodeSandbox
95
+
96
+ #### Props
97
+
98
+ | Name | Description | Default | Control |
99
+ | --- | --- | --- | --- |
100
+ | hideBelow |
101
+ string
102
+
103
+
104
+
105
+ | \- | lg |
@@ -0,0 +1,76 @@
1
+ Scrollable
2
+ ==========
3
+
4
+ The scrollable prop enables scrolling behavior for an element when its content overflows its bounds. It sets the `overflow` CSS property to `auto`, allowing scrollbars to appear as needed. The scrollbar has been styled to match the design system.
5
+
6
+ You can set the value to `true` to enable scrolling on both axes, or specify `'x'` or `'y'` to restrict scrolling to a single axis.
7
+
8
+ [](./iframe.html?id=styling-props-scrollable--scrollable)
9
+
10
+ History of Iress
11
+ ================
12
+
13
+ **Iress Limited** (originally “Iress Market Technology”) is an Australian-based software company that provides technology solutions to the financial services industry. Its clients span sectors including wealth management, financial advice, trading, investment management, mortgages, and superannuation.
14
+
15
+ Early Years (1993 – 2000)
16
+ -------------------------
17
+
18
+ Iress was founded in **1993** in Melbourne, Australia. The company's initial product offerings focused on market data and trading software for financial institutions and professionals needing live pricing and analytics tools.
19
+
20
+ In **2000**, Iress listed on the **Australian Stock Exchange (ASX)** under the ticker **IRE**, signaling its growth beyond market data services.
21
+
22
+ Hide codedrawOpen in CodeSandbox
23
+
24
+ <IressPanel
25
+ layerStyle\="elevation.raised"
26
+ px\="sm"
27
+ \>
28
+ <IressPanel
29
+ scrollable\="y"
30
+ style\={{
31
+ height: '200px'
32
+ }}
33
+ \>
34
+ <h1\>
35
+ History of Iress </h1\>
36
+ <p\>
37
+ <strong\>
38
+ Iress Limited </strong\>
39
+ {' '}(originally “Iress Market Technology”) is an Australian-based software company that provides technology solutions to the financial services industry. Its clients span sectors including wealth management, financial advice, trading, investment management, mortgages, and superannuation.
40
+ </p\>
41
+ <section\>
42
+ <h2\>
43
+ Early Years (1993 – 2000) </h2\>
44
+ <p\>
45
+ Iress was founded in{' '}
46
+ <strong\>
47
+ 1993 </strong\>
48
+ {' '}in Melbourne, Australia. The company's initial product offerings focused on market data and trading software for financial institutions and professionals needing live pricing and analytics tools.
49
+ </p\>
50
+ <p\>
51
+ In{' '}
52
+ <strong\>
53
+ 2000 </strong\>
54
+ , Iress listed on the{' '}
55
+ <strong\>
56
+ Australian Stock Exchange (ASX) </strong\>
57
+ {' '}under the ticker{' '}
58
+ <strong\>
59
+ IRE </strong\>
60
+ , signaling its growth beyond market data services. </p\>
61
+ </section\>
62
+ </IressPanel\>
63
+ </IressPanel\>
64
+
65
+ ```
66
+
67
+ #### Props
68
+
69
+ | Name | Description | Default | Control |
70
+ | --- | --- | --- | --- |
71
+ | scrollable |
72
+ string
73
+
74
+
75
+
76
+ | \- | y |
@@ -196,7 +196,7 @@ Setting to true will ignore the border radius set in the theme and set it to zer
196
196
 
197
197
  boolean
198
198
 
199
- <table class="css-3nr4py"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `borderRadius="none"` instead.</td></tr></tbody></table>
199
+ <table class="css-ymgjf7"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `borderRadius="none"` instead.</td></tr></tbody></table>
200
200
 
201
201
  | \- | Set boolean |
202
202
  | stretch |
@@ -151,7 +151,7 @@ object
151
151
 
152
152
  | \- |
153
153
 
154
- RAW
154
+ Edit JSON
155
155
 
156
156
  p :
157
157
 
@@ -203,7 +203,7 @@ object
203
203
 
204
204
  | \- |
205
205
 
206
- RAW
206
+ Edit JSON
207
207
 
208
208
  px :
209
209
 
@@ -229,7 +229,7 @@ object
229
229
 
230
230
  | \- |
231
231
 
232
- RAW
232
+ Edit JSON
233
233
 
234
234
  py :
235
235
 
@@ -376,7 +376,7 @@ object
376
376
 
377
377
  | \- |
378
378
 
379
- RAW
379
+ Edit JSON
380
380
 
381
381
  m :
382
382
 
@@ -428,7 +428,7 @@ object
428
428
 
429
429
  | \- |
430
430
 
431
- RAW
431
+ Edit JSON
432
432
 
433
433
  mx :
434
434
 
@@ -454,7 +454,7 @@ object
454
454
 
455
455
  | \- |
456
456
 
457
- RAW
457
+ Edit JSON
458
458
 
459
459
  my :
460
460
 
@@ -223,7 +223,7 @@ ReactNode
223
223
 
224
224
  | \- |
225
225
 
226
- RAW
226
+ Edit JSON
227
227
 
228
228
  caption :
229
229
 
@@ -324,7 +324,7 @@ TRow\[\]
324
324
 
325
325
  | \[\] |
326
326
 
327
- RAW
327
+ Edit JSON
328
328
 
329
329
  * rows :
330
330
 
@@ -367,7 +367,7 @@ union
367
367
 
368
368
  | \- |
369
369
 
370
- rowcol
370
+ scoperowcol
371
371
 
372
372
  |
373
373
 
@@ -604,7 +604,7 @@ union
604
604
 
605
605
  | \- |
606
606
 
607
- rowcol
607
+ scoperowcol
608
608
 
609
609
  |
610
610
 
@@ -876,7 +876,7 @@ union
876
876
 
877
877
  | \- |
878
878
 
879
- rowcol
879
+ scoperowcol
880
880
 
881
881
  |
882
882
 
@@ -1188,7 +1188,7 @@ union
1188
1188
 
1189
1189
  | \- |
1190
1190
 
1191
- rowcol
1191
+ scoperowcol
1192
1192
 
1193
1193
  |
1194
1194
 
@@ -1596,7 +1596,7 @@ union
1596
1596
 
1597
1597
  | \- |
1598
1598
 
1599
- rowcol
1599
+ scoperowcol
1600
1600
 
1601
1601
  |
1602
1602
 
@@ -2004,7 +2004,7 @@ union
2004
2004
 
2005
2005
  | \- |
2006
2006
 
2007
- rowcol
2007
+ scoperowcol
2008
2008
 
2009
2009
  |
2010
2010
 
@@ -2412,7 +2412,7 @@ union
2412
2412
 
2413
2413
  | \- |
2414
2414
 
2415
- rowcol
2415
+ scoperowcol
2416
2416
 
2417
2417
  |
2418
2418
 
@@ -2630,7 +2630,7 @@ union
2630
2630
 
2631
2631
  | \- |
2632
2632
 
2633
- rowcol
2633
+ scoperowcol
2634
2634
 
2635
2635
  |
2636
2636
 
@@ -2768,7 +2768,7 @@ TableColumn<TRow, TVal>\[\]
2768
2768
 
2769
2769
  | \- |
2770
2770
 
2771
- RAW
2771
+ Edit JSON
2772
2772
 
2773
2773
  * columns :
2774
2774
 
@@ -2856,7 +2856,7 @@ TRow\[\]
2856
2856
 
2857
2857
  | \[\] |
2858
2858
 
2859
- RAW
2859
+ Edit JSON
2860
2860
 
2861
2861
  * rows :
2862
2862
 
@@ -2903,7 +2903,7 @@ union
2903
2903
 
2904
2904
  | \- |
2905
2905
 
2906
- rowcol
2906
+ scoperowcol
2907
2907
 
2908
2908
  |
2909
2909
 
@@ -1 +1,4 @@
1
+ Redirecting to CodeSandbox...
2
+ -----------------------------
1
3
 
4
+ [Click here to open CodeSandbox](https://codesandbox.io/api/v1/sandboxes/define?parameters=N4IgZglgNgpgziAXKCA7AJjAHgOgBYAuAtlEqAMYD2qBMNSIAPISQHwA6qABF8zAIboO3HrwIQCsVgEkAIgGUuAFUoBrOnEYB6cZJjCe2vAKGdDAI0roAngdGN0EAG5cI6ALzsQAJ0qUCXqzajk522pY2wkbEUMIgADQgEHAAQmj83tZIYPxQcDAAvolomLgEcFhkIFQ0dAQMEEQADpTeBFwASgLk7WC-RFwA5N7dBIMA3JyNLW2do7IA8gCyXH2UA8OjALTo61rkUBB1E1PNre3AXORwcABqGXBcBav9QwACECM3W5Q3Wm5wLYENQaE6oTg1ODtACCTSaXHcXAAFABKBGsLjAMxcEYEACu3m4SOxhhCJNEUOssHcwCxIlEoiagkcqAA5ogrjd7t44Dg4EzyGhWQBtQYARkGAF14uSGVQoK0Odc7g8cPLKAScE1vI0MtYcLQsAQZfTRAUCuS7AyAMKUBUEmDoLiGgKm4LOOwoyaoArezhdfg9RZLNUjfi0Dp-AhI3bkPFEOo4VkwAgAUVgCZoKWs0nQSOGUcGKIAhCicCMMDBvMSRIwAz0cPICDqeksrPpyYxYfCtGEtPWCI3mxBW-3WCavZwEklUulMtlcvkiiABap-MmcAArODUKo1Wj0RAgOk8LyYJp0TCoQXwLwck-iLxhnp3rheKDh-ABBLkp_bXZEK-76flCXgmgyT6CPwcB4EBIAfrQoE_qaXgfF8gK_HA_zoICwLqKgcBwbkTR4PwXjYhaPrTskaSoHqC55IU5pAA).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iress-oss/ids-mcp-server",
3
- "version": "6.0.0-alpha.8",
3
+ "version": "6.0.0-alpha.9",
4
4
  "description": "Model Context Protocol (MCP) server for Iress Design System (IDS) component library - provides AI assistants with contextual information about IDS components, design tokens, and usage patterns",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -38,22 +38,22 @@
38
38
  "LICENSE.txt"
39
39
  ],
40
40
  "dependencies": {
41
- "@modelcontextprotocol/sdk": "1.22.0",
42
- "zod": "4.1.12"
41
+ "@modelcontextprotocol/sdk": "1.24.3",
42
+ "zod": "4.1.13"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@types/minimist": "1.2.5",
46
- "@types/node": "^24.10.1",
46
+ "@types/node": "^25.0.2",
47
47
  "@types/turndown": "5.0.6",
48
- "@vitest/coverage-v8": "4.0.13",
48
+ "@vitest/coverage-v8": "4.0.15",
49
49
  "minimist": "1.2.8",
50
- "playwright": "1.56.1",
50
+ "playwright": "1.57.0",
51
51
  "rimraf": "6.1.2",
52
- "tsx": "4.20.6",
52
+ "tsx": "4.21.0",
53
53
  "turndown": "7.2.2",
54
54
  "turndown-plugin-gfm": "1.0.2",
55
55
  "typescript": "5.9.3",
56
- "vitest": "4.0.13"
56
+ "vitest": "4.0.15"
57
57
  },
58
58
  "repository": {
59
59
  "type": "git",