@iress-oss/ids-mcp-server 6.0.0-alpha.6 → 6.0.0-alpha.7

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.
@@ -214,6 +214,27 @@ boolean
214
214
 
215
215
 
216
216
  | \- | \- |
217
+ | size |
218
+
219
+ Size of the modal
220
+
221
+ * `sm`: Small modals communicate the outcome of an irreversible action. They should be concise and straightforward, containing a single action and, in some cases, a single input field.
222
+ * `md`: Medium modals provide optional supporting information to help users understand the context of a word or screen. They may contain a single action and, in some cases, a larger input such as a textarea.
223
+ * `lg`: Large modals are used for more complex tasks that require multiple steps or a lot of information as well as media such as video and PDF documents. They can contain multiple actions, inputs, and supporting information.
224
+
225
+ union
226
+
227
+
228
+
229
+ |
230
+
231
+ 'md'
232
+
233
+ |
234
+
235
+ smmdlg
236
+
237
+ |
217
238
  | static |
218
239
 
219
240
  When set to `true`, the modal will act like a static element when open. This means it will not lock scroll or focus within the modal. Note: This is used internally to display modals in Styler. It is not recommended to use this prop in your own applications.
@@ -397,6 +418,27 @@ boolean
397
418
 
398
419
 
399
420
  | \- | \- |
421
+ | size |
422
+
423
+ Size of the modal
424
+
425
+ * `sm`: Small modals communicate the outcome of an irreversible action. They should be concise and straightforward, containing a single action and, in some cases, a single input field.
426
+ * `md`: Medium modals provide optional supporting information to help users understand the context of a word or screen. They may contain a single action and, in some cases, a larger input such as a textarea.
427
+ * `lg`: Large modals are used for more complex tasks that require multiple steps or a lot of information as well as media such as video and PDF documents. They can contain multiple actions, inputs, and supporting information.
428
+
429
+ union
430
+
431
+
432
+
433
+ |
434
+
435
+ 'md'
436
+
437
+ |
438
+
439
+ smmdlg
440
+
441
+ |
400
442
  | static |
401
443
 
402
444
  When set to `true`, the modal will act like a static element when open. This means it will not lock scroll or focus within the modal. Note: This is used internally to display modals in Styler. It is not recommended to use this prop in your own applications.
@@ -672,6 +714,27 @@ boolean
672
714
 
673
715
 
674
716
  | \- | \- |
717
+ | size |
718
+
719
+ Size of the modal
720
+
721
+ * `sm`: Small modals communicate the outcome of an irreversible action. They should be concise and straightforward, containing a single action and, in some cases, a single input field.
722
+ * `md`: Medium modals provide optional supporting information to help users understand the context of a word or screen. They may contain a single action and, in some cases, a larger input such as a textarea.
723
+ * `lg`: Large modals are used for more complex tasks that require multiple steps or a lot of information as well as media such as video and PDF documents. They can contain multiple actions, inputs, and supporting information.
724
+
725
+ union
726
+
727
+
728
+
729
+ |
730
+
731
+ 'md'
732
+
733
+ |
734
+
735
+ smmdlg
736
+
737
+ |
675
738
  | static |
676
739
 
677
740
  When set to `true`, the modal will act like a static element when open. This means it will not lock scroll or focus within the modal. Note: This is used internally to display modals in Styler. It is not recommended to use this prop in your own applications.
@@ -898,6 +961,27 @@ boolean
898
961
 
899
962
 
900
963
  | \- | \- |
964
+ | size |
965
+
966
+ Size of the modal
967
+
968
+ * `sm`: Small modals communicate the outcome of an irreversible action. They should be concise and straightforward, containing a single action and, in some cases, a single input field.
969
+ * `md`: Medium modals provide optional supporting information to help users understand the context of a word or screen. They may contain a single action and, in some cases, a larger input such as a textarea.
970
+ * `lg`: Large modals are used for more complex tasks that require multiple steps or a lot of information as well as media such as video and PDF documents. They can contain multiple actions, inputs, and supporting information.
971
+
972
+ union
973
+
974
+
975
+
976
+ |
977
+
978
+ 'md'
979
+
980
+ |
981
+
982
+ smmdlg
983
+
984
+ |
901
985
  | static |
902
986
 
903
987
  When set to `true`, the modal will act like a static element when open. This means it will not lock scroll or focus within the modal. Note: This is used internally to display modals in Styler. It is not recommended to use this prop in your own applications.
@@ -974,7 +1058,7 @@ const SmallModal \= () \=> {
974
1058
  Small modals communicate the outcome of an irreversible action. They should be concise and straightforward, containing a single action and, in some cases, a single input field. </p\>
975
1059
  </IressCard\>
976
1060
  <IressModal
977
- width\="overlay.sm"
1061
+ size\="sm"
978
1062
  heading\="Terms of service update"
979
1063
  footer\={
980
1064
  <IressButton mode\="primary" onClick\={() \=> setShow(false)}\>
@@ -1007,7 +1091,7 @@ const MediumModal \= () \=> {
1007
1091
  Medium modals provide optional supporting information to help users understand the context of a word or screen. They may contain a single action and, in some cases, a larger input such as a textarea. </p\>
1008
1092
  </IressCard\>
1009
1093
  <IressModal
1010
- width\="overlay.md"
1094
+ size\="md"
1011
1095
  heading\="History of Iress"
1012
1096
  footer\={<IressButton onClick\={() \=> setShow(false)}\>Close</IressButton\>}
1013
1097
  fixedFooter
@@ -1104,7 +1188,7 @@ const LargeModal \= () \=> {
1104
1188
  Large modals facilitate sub-flows within a primary flow, allowing users to focus on tasks that will impact the underlying screen once the modal is closed (e.g., adding an item to a table or bulk uploading items). They should be used sparingly and only when there is a direct relationship to the underlying screen, where the action wouldn't warrant a separate dedicated screen. </p\>
1105
1189
  </IressCard\>
1106
1190
  <IressModal
1107
- width\="overlay.lg"
1191
+ size\="lg"
1108
1192
  heading\="Upload from CSV"
1109
1193
  footer\={
1110
1194
  <LargeModalActions
@@ -1340,9 +1424,21 @@ boolean
1340
1424
  | \- | \- |
1341
1425
  | size |
1342
1426
 
1343
- \-
1427
+ Size of the modal
1344
1428
 
1345
- | \- | \- |
1429
+ * `sm`: Small modals communicate the outcome of an irreversible action. They should be concise and straightforward, containing a single action and, in some cases, a single input field.
1430
+ * `md`: Medium modals provide optional supporting information to help users understand the context of a word or screen. They may contain a single action and, in some cases, a larger input such as a textarea.
1431
+ * `lg`: Large modals are used for more complex tasks that require multiple steps or a lot of information as well as media such as video and PDF documents. They can contain multiple actions, inputs, and supporting information.
1432
+
1433
+ union
1434
+
1435
+
1436
+
1437
+ |
1438
+
1439
+ 'md'
1440
+
1441
+ | \- |
1346
1442
  | static |
1347
1443
 
1348
1444
  When set to `true`, the modal will act like a static element when open. This means it will not lock scroll or focus within the modal. Note: This is used internally to display modals in Styler. It is not recommended to use this prop in your own applications.
@@ -1355,11 +1451,13 @@ boolean
1355
1451
 
1356
1452
  ### Responsive size
1357
1453
 
1358
- The `size` prop can take an object that takes five key/value pairs that correlate with the IDS breakpoints.
1454
+ The `size` prop no longer accepts responsive values directly, instead you must use the `width` styling prop to set responsive sizes.
1455
+
1456
+ The `width` prop can take an object that takes five key/value pairs that correlate with the IDS breakpoints.
1359
1457
 
1360
- If you set a responsive `size`, the modal becomes full width on screens smaller than the value you specified. For example, if you want to create a large modal on medium screens and above:
1458
+ If you set a responsive `width`, the modal becomes full width on screens smaller than the value you specified. For example, if you want to create a large modal on medium screens and above:
1361
1459
 
1362
- <IressModal size\={{ md: IressModal.Size.Lg }}\>
1460
+ <IressModal size\="lg" width\={{ md: 'overlay.lg' }}\>
1363
1461
 
1364
1462
  ```
1365
1463
 
@@ -1561,6 +1659,27 @@ boolean
1561
1659
 
1562
1660
 
1563
1661
  | \- | \- |
1662
+ | size |
1663
+
1664
+ Size of the modal
1665
+
1666
+ * `sm`: Small modals communicate the outcome of an irreversible action. They should be concise and straightforward, containing a single action and, in some cases, a single input field.
1667
+ * `md`: Medium modals provide optional supporting information to help users understand the context of a word or screen. They may contain a single action and, in some cases, a larger input such as a textarea.
1668
+ * `lg`: Large modals are used for more complex tasks that require multiple steps or a lot of information as well as media such as video and PDF documents. They can contain multiple actions, inputs, and supporting information.
1669
+
1670
+ union
1671
+
1672
+
1673
+
1674
+ |
1675
+
1676
+ 'md'
1677
+
1678
+ |
1679
+
1680
+ smmdlg
1681
+
1682
+ |
1564
1683
  | static |
1565
1684
 
1566
1685
  When set to `true`, the modal will act like a static element when open. This means it will not lock scroll or focus within the modal. Note: This is used internally to display modals in Styler. It is not recommended to use this prop in your own applications.
@@ -1815,6 +1934,27 @@ boolean
1815
1934
 
1816
1935
 
1817
1936
  | \- | \- |
1937
+ | size |
1938
+
1939
+ Size of the modal
1940
+
1941
+ * `sm`: Small modals communicate the outcome of an irreversible action. They should be concise and straightforward, containing a single action and, in some cases, a single input field.
1942
+ * `md`: Medium modals provide optional supporting information to help users understand the context of a word or screen. They may contain a single action and, in some cases, a larger input such as a textarea.
1943
+ * `lg`: Large modals are used for more complex tasks that require multiple steps or a lot of information as well as media such as video and PDF documents. They can contain multiple actions, inputs, and supporting information.
1944
+
1945
+ union
1946
+
1947
+
1948
+
1949
+ |
1950
+
1951
+ 'md'
1952
+
1953
+ |
1954
+
1955
+ smmdlg
1956
+
1957
+ |
1818
1958
  | static |
1819
1959
 
1820
1960
  When set to `true`, the modal will act like a static element when open. This means it will not lock scroll or focus within the modal. Note: This is used internally to display modals in Styler. It is not recommended to use this prop in your own applications.
@@ -2010,6 +2150,23 @@ boolean
2010
2150
 
2011
2151
 
2012
2152
  | \- | \- |
2153
+ | size |
2154
+
2155
+ Size of the modal
2156
+
2157
+ * `sm`: Small modals communicate the outcome of an irreversible action. They should be concise and straightforward, containing a single action and, in some cases, a single input field.
2158
+ * `md`: Medium modals provide optional supporting information to help users understand the context of a word or screen. They may contain a single action and, in some cases, a larger input such as a textarea.
2159
+ * `lg`: Large modals are used for more complex tasks that require multiple steps or a lot of information as well as media such as video and PDF documents. They can contain multiple actions, inputs, and supporting information.
2160
+
2161
+ union
2162
+
2163
+
2164
+
2165
+ |
2166
+
2167
+ 'md'
2168
+
2169
+ | \- |
2013
2170
  | static |
2014
2171
 
2015
2172
  When set to `true`, the modal will act like a static element when open. This means it will not lock scroll or focus within the modal. Note: This is used internally to display modals in Styler. It is not recommended to use this prop in your own applications.
@@ -1,7 +1,7 @@
1
1
  Iress Design System
2
2
  ===================
3
3
 
4
- 6.0.0-alpha.6
4
+ 6.0.0-alpha.7
5
5
 
6
6
  The Iress Design System (IDS) serves as a shared visual language, working code, design tools and resources, human interface guidelines, and a community. It supports designers and developers building digital products for both B2B (Financial Advisors, Paraplanners) and B2B2C (client customers) segments.
7
7
 
@@ -25,7 +25,7 @@ None selected
25
25
 
26
26
  Show deprecated tokens
27
27
 
28
- Tokens (85)
28
+ Tokens (86)
29
29
  | Name
30
30
  | Alias
31
31
 
@@ -78,6 +78,7 @@ Tokens (85)
78
78
  | elevation.overflow.shadow | | Shadow for overflow elevations | |
79
79
  | elevation.overflow.border | | Border for overflow elevations | |
80
80
  | elevation.focus.shadow | | Shadow for focus elevations | |
81
+ | elevation.focus.borderColor | | Border color for focus elevations | |
81
82
  | elevation.focusCompact.shadow | | Shadow for focus compact elevations | |
82
83
  | elevation.focusCompact.borderColor | | Border color for focus compact elevations | |
83
84
  | radius.100 | | The base unit for radius | |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iress-oss/ids-mcp-server",
3
- "version": "6.0.0-alpha.6",
3
+ "version": "6.0.0-alpha.7",
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",