@iress-oss/ids-mcp-server 5.20.4 → 5.20.5

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.
@@ -12,14 +12,13 @@ This is a simple info alert
12
12
 
13
13
  Hide codedrawOpen in CodeSandbox
14
14
 
15
- {
16
- args: {
17
- children: 'This is a simple info alert',
18
- status: IressAlert.Status.Info,
19
- heading: '',
20
- footer: ''
21
- }
22
- }
15
+ <IressAlert
16
+ footer\=""
17
+ heading\=""
18
+ status\="info"
19
+ \>
20
+ This is a simple info alert
21
+ </IressAlert\>
23
22
 
24
23
  ```
25
24
 
@@ -11,6 +11,7 @@ Autocomplete allow for users to fill in their input by providing suggestions as
11
11
  Hide codedrawOpen in CodeSandbox
12
12
 
13
13
  <IressAutocomplete
14
+ minSearchLength\={0}
14
15
  options\={\[
15
16
  {
16
17
  label: 'Option 1'
@@ -121,6 +122,13 @@ ReactNode
121
122
  6
122
123
 
123
124
  | Set object |
125
+ | minSearchLength |
126
+
127
+ number
128
+
129
+
130
+
131
+ | \- | |
124
132
  | noResultsText |
125
133
 
126
134
  Text to be displayed when no results are found.
@@ -236,6 +244,7 @@ Hide codedrawOpen in CodeSandbox
236
244
 
237
245
  <IressAutocomplete
238
246
  defaultValue\="Option 1"
247
+ minSearchLength\={0}
239
248
  options\={\[
240
249
  {
241
250
  label: 'Option 1'
@@ -352,6 +361,13 @@ ReactNode
352
361
  6
353
362
 
354
363
  | Set object |
364
+ | minSearchLength |
365
+
366
+ number
367
+
368
+
369
+
370
+ | \- | |
355
371
  | noResultsText |
356
372
 
357
373
  Text to be displayed when no results are found.
@@ -468,6 +484,7 @@ export const AutocompleteUsingState \= () \=> {
468
484
  popoverProps: {
469
485
  container: {},
470
486
  },
487
+ minSearchLength: 0,
471
488
  options: \[
472
489
  {
473
490
  label: 'Option 1',
@@ -585,6 +602,13 @@ ReactNode
585
602
  6
586
603
 
587
604
  | Set object |
605
+ | minSearchLength |
606
+
607
+ number
608
+
609
+
610
+
611
+ | \- | |
588
612
  | noResultsText |
589
613
 
590
614
  Text to be displayed when no results are found.
@@ -699,6 +723,7 @@ To use the suggestion functionality, you can provide an array of `LabelValueMeta
699
723
  Hide codedrawOpen in CodeSandbox
700
724
 
701
725
  <IressAutocomplete
726
+ minSearchLength\={0}
702
727
  options\={\[
703
728
  {
704
729
  label: 'Option 1'
@@ -808,6 +833,13 @@ ReactNode
808
833
  6
809
834
 
810
835
  | Set object |
836
+ | minSearchLength |
837
+
838
+ number
839
+
840
+
841
+
842
+ | \- | |
811
843
  | noResultsText |
812
844
 
813
845
  Text to be displayed when no results are found.
@@ -1306,6 +1338,7 @@ Hide codedrawOpen in CodeSandbox
1306
1338
  label: 'Favourite option 3'
1307
1339
  }
1308
1340
  \]}
1341
+ minSearchLength\={0}
1309
1342
  options\={\[
1310
1343
  {
1311
1344
  label: 'Option 1'
@@ -1448,6 +1481,13 @@ Edit JSON
1448
1481
  6
1449
1482
 
1450
1483
  | Set object |
1484
+ | minSearchLength |
1485
+
1486
+ number
1487
+
1488
+
1489
+
1490
+ | \- | |
1451
1491
  | noResultsText |
1452
1492
 
1453
1493
  Text to be displayed when no results are found.
@@ -1553,8 +1593,7 @@ Behaviour
1553
1593
  * Tapping on a suggestion with the mouse will change the input value to the selection and close the popover.
1554
1594
  * When the user presses the arrows keys while the input is focussed, suggestions will be highlighted, but focus remains on the input.
1555
1595
  * When the user presses the enter key while a suggestion is highlighted, the suggestion will be selected and the popover will close.
1556
- * When the user presses the down key while the popover is closed, it will open the popover.
1557
- * When the user pressed the up key while the first suggestion is highlighted, it will close the popover.
1596
+ * When the user presses the down key while the popover is closed, it will attempt to open the popover and populate it with suggestions or initial options.
1558
1597
  * When the user tabs away while no suggestion is highlighted, the input will not be changed.
1559
1598
  * When the user tabs away while a suggestion is highlighted, the suggestion will be selected.
1560
1599
  * When the user tabs away while the popover is open, the popover will close.
@@ -1582,6 +1621,7 @@ Hide codedrawOpen in CodeSandbox
1582
1621
 
1583
1622
  <IressAutocomplete
1584
1623
  autoSelect\={false}
1624
+ minSearchLength\={0}
1585
1625
  options\={\[
1586
1626
  {
1587
1627
  label: 'Option 1'
@@ -1692,6 +1732,13 @@ ReactNode
1692
1732
  6
1693
1733
 
1694
1734
  | Set object |
1735
+ | minSearchLength |
1736
+
1737
+ number
1738
+
1739
+
1740
+
1741
+ | \- | |
1695
1742
  | noResultsText |
1696
1743
 
1697
1744
  Text to be displayed when no results are found.
@@ -1807,6 +1854,7 @@ Hide codedrawOpen in CodeSandbox
1807
1854
 
1808
1855
  <IressAutocomplete
1809
1856
  append\={<IressPopover activator\={<IressButton mode\="tertiary"\><IressIcon name\="cog" /></IressButton\>} align\="bottom-end" container\={document.body}\><IressPanel className\="iress-u-text"\>Some settings in here</IressPanel\></IressPopover\>}
1857
+ minSearchLength\={0}
1810
1858
  options\={\[
1811
1859
  {
1812
1860
  label: 'Option 1'
@@ -1950,6 +1998,13 @@ ReactNode
1950
1998
  6
1951
1999
 
1952
2000
  | Set object |
2001
+ | minSearchLength |
2002
+
2003
+ number
2004
+
2005
+
2006
+
2007
+ | \- | |
1953
2008
  | noResultsText |
1954
2009
 
1955
2010
  Text to be displayed when no results are found.
@@ -2101,6 +2156,7 @@ If you would like to show a message when there are no results, you can use the `
2101
2156
  Hide codedrawOpen in CodeSandbox
2102
2157
 
2103
2158
  <IressAutocomplete
2159
+ minSearchLength\={0}
2104
2160
  noResultsText\={<IressPanel className\="iress-u-text"\>No results found</IressPanel\>}
2105
2161
  options\={\[
2106
2162
  {
@@ -2212,6 +2268,13 @@ ReactNode
2212
2268
  6
2213
2269
 
2214
2270
  | Set object |
2271
+ | minSearchLength |
2272
+
2273
+ number
2274
+
2275
+
2276
+
2277
+ | \- | |
2215
2278
  | noResultsText |
2216
2279
 
2217
2280
  Text to be displayed when no results are found.
@@ -2355,6 +2418,7 @@ There are two additional props that autocomplete accepts to customise the popove
2355
2418
  Hide codedrawOpen in CodeSandbox
2356
2419
 
2357
2420
  <IressAutocomplete
2421
+ minSearchLength\={0}
2358
2422
  options\={\[
2359
2423
  {
2360
2424
  label: 'Option 1'
@@ -2465,6 +2529,13 @@ ReactNode
2465
2529
  6
2466
2530
 
2467
2531
  | Set object |
2532
+ | minSearchLength |
2533
+
2534
+ number
2535
+
2536
+
2537
+
2538
+ | \- | |
2468
2539
  | noResultsText |
2469
2540
 
2470
2541
  Text to be displayed when no results are found.
@@ -2578,6 +2649,7 @@ Hide codedrawOpen in CodeSandbox
2578
2649
 
2579
2650
  <IressAutocomplete
2580
2651
  debounceThreshold\={0}
2652
+ minSearchLength\={0}
2581
2653
  options\={\[
2582
2654
  {
2583
2655
  label: 'Option 1'
@@ -2695,6 +2767,13 @@ ReactNode
2695
2767
  6
2696
2768
 
2697
2769
  | Set object |
2770
+ | minSearchLength |
2771
+
2772
+ number
2773
+
2774
+
2775
+
2776
+ | \- | |
2698
2777
  | noResultsText |
2699
2778
 
2700
2779
  Text to be displayed when no results are found.
@@ -3128,6 +3207,7 @@ Hide codedrawOpen in CodeSandbox
3128
3207
 
3129
3208
  <IressAutocomplete
3130
3209
  defaultValue\="Option 1"
3210
+ minSearchLength\={0}
3131
3211
  options\={\[
3132
3212
  {
3133
3213
  label: 'Option 1'
@@ -3245,6 +3325,13 @@ ReactNode
3245
3325
  6
3246
3326
 
3247
3327
  | Set object |
3328
+ | minSearchLength |
3329
+
3330
+ number
3331
+
3332
+
3333
+
3334
+ | \- | |
3248
3335
  | noResultsText |
3249
3336
 
3250
3337
  Text to be displayed when no results are found.
@@ -590,22 +590,22 @@ Hide codedrawOpen in CodeSandbox
590
590
  stack </h3\>
591
591
  <IressCheckboxGroup layout\="stack"\>
592
592
  <IressCheckbox
593
- className\="ids-styles--add-border-to-label-v5205"
593
+ className\="ids-styles--add-border-to-label-v5206"
594
594
  value\="google"
595
595
  \>
596
596
  Google </IressCheckbox\>
597
597
  <IressCheckbox
598
- className\="ids-styles--add-border-to-label-v5205"
598
+ className\="ids-styles--add-border-to-label-v5206"
599
599
  value\="newspaper"
600
600
  \>
601
601
  Newspaper </IressCheckbox\>
602
602
  <IressCheckbox
603
- className\="ids-styles--add-border-to-label-v5205"
603
+ className\="ids-styles--add-border-to-label-v5206"
604
604
  value\="friend"
605
605
  \>
606
606
  Friend </IressCheckbox\>
607
607
  <IressCheckbox
608
- className\="ids-styles--add-border-to-label-v5205"
608
+ className\="ids-styles--add-border-to-label-v5206"
609
609
  value\="other"
610
610
  \>
611
611
  Other </IressCheckbox\>
@@ -616,22 +616,22 @@ Hide codedrawOpen in CodeSandbox
616
616
  block </h3\>
617
617
  <IressCheckboxGroup layout\="block"\>
618
618
  <IressCheckbox
619
- className\="ids-styles--add-border-to-label-v5205"
619
+ className\="ids-styles--add-border-to-label-v5206"
620
620
  value\="google"
621
621
  \>
622
622
  Google </IressCheckbox\>
623
623
  <IressCheckbox
624
- className\="ids-styles--add-border-to-label-v5205"
624
+ className\="ids-styles--add-border-to-label-v5206"
625
625
  value\="newspaper"
626
626
  \>
627
627
  Newspaper </IressCheckbox\>
628
628
  <IressCheckbox
629
- className\="ids-styles--add-border-to-label-v5205"
629
+ className\="ids-styles--add-border-to-label-v5206"
630
630
  value\="friend"
631
631
  \>
632
632
  Friend </IressCheckbox\>
633
633
  <IressCheckbox
634
- className\="ids-styles--add-border-to-label-v5205"
634
+ className\="ids-styles--add-border-to-label-v5206"
635
635
  value\="other"
636
636
  \>
637
637
  Other </IressCheckbox\>
@@ -642,22 +642,22 @@ Hide codedrawOpen in CodeSandbox
642
642
  inline </h3\>
643
643
  <IressCheckboxGroup layout\="inline"\>
644
644
  <IressCheckbox
645
- className\="ids-styles--add-border-to-label-v5205"
645
+ className\="ids-styles--add-border-to-label-v5206"
646
646
  value\="google"
647
647
  \>
648
648
  Google </IressCheckbox\>
649
649
  <IressCheckbox
650
- className\="ids-styles--add-border-to-label-v5205"
650
+ className\="ids-styles--add-border-to-label-v5206"
651
651
  value\="newspaper"
652
652
  \>
653
653
  Newspaper </IressCheckbox\>
654
654
  <IressCheckbox
655
- className\="ids-styles--add-border-to-label-v5205"
655
+ className\="ids-styles--add-border-to-label-v5206"
656
656
  value\="friend"
657
657
  \>
658
658
  Friend </IressCheckbox\>
659
659
  <IressCheckbox
660
- className\="ids-styles--add-border-to-label-v5205"
660
+ className\="ids-styles--add-border-to-label-v5206"
661
661
  value\="other"
662
662
  \>
663
663
  Other </IressCheckbox\>
@@ -668,22 +668,22 @@ Hide codedrawOpen in CodeSandbox
668
668
  full </h3\>
669
669
  <IressCheckboxGroup layout\="full"\>
670
670
  <IressCheckbox
671
- className\="ids-styles--add-border-to-label-v5205"
671
+ className\="ids-styles--add-border-to-label-v5206"
672
672
  value\="google"
673
673
  \>
674
674
  Google </IressCheckbox\>
675
675
  <IressCheckbox
676
- className\="ids-styles--add-border-to-label-v5205"
676
+ className\="ids-styles--add-border-to-label-v5206"
677
677
  value\="newspaper"
678
678
  \>
679
679
  Newspaper </IressCheckbox\>
680
680
  <IressCheckbox
681
- className\="ids-styles--add-border-to-label-v5205"
681
+ className\="ids-styles--add-border-to-label-v5206"
682
682
  value\="friend"
683
683
  \>
684
684
  Friend </IressCheckbox\>
685
685
  <IressCheckbox
686
- className\="ids-styles--add-border-to-label-v5205"
686
+ className\="ids-styles--add-border-to-label-v5206"
687
687
  value\="other"
688
688
  \>
689
689
  Other </IressCheckbox\>
@@ -1045,7 +1045,7 @@ Hide codedrawOpen in CodeSandbox
1045
1045
  }}
1046
1046
  \>
1047
1047
  <div
1048
- className\="ids-styles--resizable-v5205"
1048
+ className\="ids-styles--resizable-v5206"
1049
1049
  style\={{
1050
1050
  display: 'grid',
1051
1051
  gridAutoRows: '1fr',
@@ -678,7 +678,7 @@ Hide codedrawOpen in CodeSandbox
678
678
 
679
679
  <IressContainer ref\={undefined}\>
680
680
  <IressRow
681
- className\="ids-styles--set-height-v5205"
681
+ className\="ids-styles--set-height-v5206"
682
682
  gutter\="md"
683
683
  \>
684
684
  <IressCol alignSelf\="start"\>
@@ -867,7 +867,7 @@ Hide codedrawOpen in CodeSandbox
867
867
  name\="IressInputDate-default"
868
868
  render\={(controlledProps) \=> <IressInput {...controlledProps} />}
869
869
  rules\={{
870
- minDate: new Date('2026-01-06T04:07:40.949Z')
870
+ minDate: new Date('2026-01-07T03:18:14.045Z')
871
871
  }}
872
872
  />
873
873
  <IressFormField
@@ -878,7 +878,7 @@ Hide codedrawOpen in CodeSandbox
878
878
  rules\={{
879
879
  minDate: {
880
880
  message: 'Please enter a date after today!',
881
- value: new Date('2026-01-06T04:07:40.949Z')
881
+ value: new Date('2026-01-07T03:18:14.045Z')
882
882
  }
883
883
  }}
884
884
  />
@@ -1071,7 +1071,7 @@ Hide codedrawOpen in CodeSandbox
1071
1071
  name\="IressInputDate-default"
1072
1072
  render\={(controlledProps) \=> <IressInput {...controlledProps} />}
1073
1073
  rules\={{
1074
- maxDate: new Date('2026-01-06T04:07:40.949Z')
1074
+ maxDate: new Date('2026-01-07T03:18:14.045Z')
1075
1075
  }}
1076
1076
  />
1077
1077
  <IressFormField
@@ -1082,7 +1082,7 @@ Hide codedrawOpen in CodeSandbox
1082
1082
  rules\={{
1083
1083
  maxDate: {
1084
1084
  message: 'Please enter a date before today!',
1085
- value: new Date('2026-01-06T04:07:40.949Z')
1085
+ value: new Date('2026-01-07T03:18:14.045Z')
1086
1086
  }
1087
1087
  }}
1088
1088
  />
@@ -1086,13 +1086,13 @@ Hide codedrawOpen in CodeSandbox
1086
1086
  \>
1087
1087
  Default width </IressText\>
1088
1088
  <IressIcon
1089
- className\="ids-styles--alt-background-v5205"
1089
+ className\="ids-styles--alt-background-v5206"
1090
1090
  name\="space-shuttle"
1091
1091
  size\="3x"
1092
1092
  />
1093
1093
  <br />
1094
1094
  <IressIcon
1095
- className\="ids-styles--alt-background-v5205"
1095
+ className\="ids-styles--alt-background-v5206"
1096
1096
  name\="wine-glass-alt"
1097
1097
  size\="3x"
1098
1098
  />
@@ -1104,14 +1104,14 @@ Hide codedrawOpen in CodeSandbox
1104
1104
  \>
1105
1105
  Fixed width </IressText\>
1106
1106
  <IressIcon
1107
- className\="ids-styles--alt-background-v5205"
1107
+ className\="ids-styles--alt-background-v5206"
1108
1108
  fixedWidth
1109
1109
  name\="space-shuttle"
1110
1110
  size\="3x"
1111
1111
  />
1112
1112
  <br />
1113
1113
  <IressIcon
1114
- className\="ids-styles--alt-background-v5205"
1114
+ className\="ids-styles--alt-background-v5206"
1115
1115
  fixedWidth
1116
1116
  name\="wine-glass-alt"
1117
1117
  size\="3x"
@@ -491,22 +491,22 @@ Hide codedrawOpen in CodeSandbox
491
491
  stack </h3\>
492
492
  <IressRadioGroup layout\="stack"\>
493
493
  <IressRadio
494
- className\="ids-styles--add-border-v5205"
494
+ className\="ids-styles--add-border-v5206"
495
495
  value\="google"
496
496
  \>
497
497
  Google </IressRadio\>
498
498
  <IressRadio
499
- className\="ids-styles--add-border-v5205"
499
+ className\="ids-styles--add-border-v5206"
500
500
  value\="newspaper"
501
501
  \>
502
502
  Newspaper </IressRadio\>
503
503
  <IressRadio
504
- className\="ids-styles--add-border-v5205"
504
+ className\="ids-styles--add-border-v5206"
505
505
  value\="friend"
506
506
  \>
507
507
  Friend </IressRadio\>
508
508
  <IressRadio
509
- className\="ids-styles--add-border-v5205"
509
+ className\="ids-styles--add-border-v5206"
510
510
  value\="other"
511
511
  \>
512
512
  Other </IressRadio\>
@@ -517,22 +517,22 @@ Hide codedrawOpen in CodeSandbox
517
517
  block </h3\>
518
518
  <IressRadioGroup layout\="block"\>
519
519
  <IressRadio
520
- className\="ids-styles--add-border-v5205"
520
+ className\="ids-styles--add-border-v5206"
521
521
  value\="google"
522
522
  \>
523
523
  Google </IressRadio\>
524
524
  <IressRadio
525
- className\="ids-styles--add-border-v5205"
525
+ className\="ids-styles--add-border-v5206"
526
526
  value\="newspaper"
527
527
  \>
528
528
  Newspaper </IressRadio\>
529
529
  <IressRadio
530
- className\="ids-styles--add-border-v5205"
530
+ className\="ids-styles--add-border-v5206"
531
531
  value\="friend"
532
532
  \>
533
533
  Friend </IressRadio\>
534
534
  <IressRadio
535
- className\="ids-styles--add-border-v5205"
535
+ className\="ids-styles--add-border-v5206"
536
536
  value\="other"
537
537
  \>
538
538
  Other </IressRadio\>
@@ -543,22 +543,22 @@ Hide codedrawOpen in CodeSandbox
543
543
  inline </h3\>
544
544
  <IressRadioGroup layout\="inline"\>
545
545
  <IressRadio
546
- className\="ids-styles--add-border-v5205"
546
+ className\="ids-styles--add-border-v5206"
547
547
  value\="google"
548
548
  \>
549
549
  Google </IressRadio\>
550
550
  <IressRadio
551
- className\="ids-styles--add-border-v5205"
551
+ className\="ids-styles--add-border-v5206"
552
552
  value\="newspaper"
553
553
  \>
554
554
  Newspaper </IressRadio\>
555
555
  <IressRadio
556
- className\="ids-styles--add-border-v5205"
556
+ className\="ids-styles--add-border-v5206"
557
557
  value\="friend"
558
558
  \>
559
559
  Friend </IressRadio\>
560
560
  <IressRadio
561
- className\="ids-styles--add-border-v5205"
561
+ className\="ids-styles--add-border-v5206"
562
562
  value\="other"
563
563
  \>
564
564
  Other </IressRadio\>
@@ -569,22 +569,22 @@ Hide codedrawOpen in CodeSandbox
569
569
  inlineFlex </h3\>
570
570
  <IressRadioGroup layout\="inlineFlex"\>
571
571
  <IressRadio
572
- className\="ids-styles--add-border-v5205"
572
+ className\="ids-styles--add-border-v5206"
573
573
  value\="google"
574
574
  \>
575
575
  Google </IressRadio\>
576
576
  <IressRadio
577
- className\="ids-styles--add-border-v5205"
577
+ className\="ids-styles--add-border-v5206"
578
578
  value\="newspaper"
579
579
  \>
580
580
  Newspaper </IressRadio\>
581
581
  <IressRadio
582
- className\="ids-styles--add-border-v5205"
582
+ className\="ids-styles--add-border-v5206"
583
583
  value\="friend"
584
584
  \>
585
585
  Friend </IressRadio\>
586
586
  <IressRadio
587
- className\="ids-styles--add-border-v5205"
587
+ className\="ids-styles--add-border-v5206"
588
588
  value\="other"
589
589
  \>
590
590
  Other </IressRadio\>
@@ -595,22 +595,22 @@ Hide codedrawOpen in CodeSandbox
595
595
  inlineEqualWidth </h3\>
596
596
  <IressRadioGroup layout\="inlineEqualWidth"\>
597
597
  <IressRadio
598
- className\="ids-styles--add-border-v5205"
598
+ className\="ids-styles--add-border-v5206"
599
599
  value\="google"
600
600
  \>
601
601
  Google </IressRadio\>
602
602
  <IressRadio
603
- className\="ids-styles--add-border-v5205"
603
+ className\="ids-styles--add-border-v5206"
604
604
  value\="newspaper"
605
605
  \>
606
606
  Newspaper </IressRadio\>
607
607
  <IressRadio
608
- className\="ids-styles--add-border-v5205"
608
+ className\="ids-styles--add-border-v5206"
609
609
  value\="friend"
610
610
  \>
611
611
  Friend </IressRadio\>
612
612
  <IressRadio
613
- className\="ids-styles--add-border-v5205"
613
+ className\="ids-styles--add-border-v5206"
614
614
  value\="other"
615
615
  \>
616
616
  Other </IressRadio\>
@@ -979,7 +979,7 @@ Hide codedrawOpen in CodeSandbox
979
979
  }}
980
980
  \>
981
981
  <div
982
- className\="ids-styles--resizable-v5205"
982
+ className\="ids-styles--resizable-v5206"
983
983
  style\={{
984
984
  display: 'grid',
985
985
  gridAutoRows: '1fr',
@@ -1013,7 +1013,7 @@ Hide codedrawOpen in CodeSandbox
1013
1013
  <IressText element\="h2"\>
1014
1014
  Vertical align: top </IressText\>
1015
1015
  <IressRow
1016
- className\="ids-styles--set-height-v5205"
1016
+ className\="ids-styles--set-height-v5206"
1017
1017
  verticalAlign\="top"
1018
1018
  \>
1019
1019
  <React.Fragment key\=".0"\>
@@ -1042,7 +1042,7 @@ Hide codedrawOpen in CodeSandbox
1042
1042
  <IressText element\="h2"\>
1043
1043
  Vertical align: middle </IressText\>
1044
1044
  <IressRow
1045
- className\="ids-styles--set-height-v5205"
1045
+ className\="ids-styles--set-height-v5206"
1046
1046
  verticalAlign\="middle"
1047
1047
  \>
1048
1048
  <React.Fragment key\=".0"\>
@@ -1071,7 +1071,7 @@ Hide codedrawOpen in CodeSandbox
1071
1071
  <IressText element\="h2"\>
1072
1072
  Vertical align: bottom </IressText\>
1073
1073
  <IressRow
1074
- className\="ids-styles--set-height-v5205"
1074
+ className\="ids-styles--set-height-v5206"
1075
1075
  verticalAlign\="bottom"
1076
1076
  \>
1077
1077
  <React.Fragment key\=".0"\>
@@ -1100,7 +1100,7 @@ Hide codedrawOpen in CodeSandbox
1100
1100
  <IressText element\="h2"\>
1101
1101
  Vertical align: stretch </IressText\>
1102
1102
  <IressRow
1103
- className\="ids-styles--set-height-v5205"
1103
+ className\="ids-styles--set-height-v5206"
1104
1104
  verticalAlign\="stretch"
1105
1105
  \>
1106
1106
  <React.Fragment key\=".0"\>
@@ -25,7 +25,7 @@ Hide codedrawOpen in CodeSandbox
25
25
  }}
26
26
  />
27
27
  <main
28
- className\="iress-u-container iress-u-text iress-u-panel ids-styles--highlight-on-focus-v5205"
28
+ className\="iress-u-container iress-u-text iress-u-panel ids-styles--highlight-on-focus-v5206"
29
29
  id\="main"
30
30
  tabIndex\={\-1}
31
31
  \>
@@ -2233,7 +2233,7 @@ For very simple tabular data, you have the option to hide the table header with
2233
2233
 
2234
2234
  [](./iframe.html?id=components-table--hidden-header)
2235
2235
 
2236
- <table class="ids-table-v5205 ids-table--hidden-header-v5205" id="_r_4d_"><caption id="_r_4d_--caption" class="">My investments</caption><tbody><tr id="_r_4d_--rows--0"><th data-column="investment_name" id="_r_4d___0_investment_name" scope="row">Artemis Fund Managers Limited</th><td data-column="cost" headers="_r_4d___0_investment_name" id="_r_4d___0_cost">23898</td><td data-column="investmentDate" headers="_r_4d___0_investment_name" id="_r_4d___0_investmentDate">2019-09-23</td><td data-column="totalPercentage" headers="_r_4d___0_investment_name" id="_r_4d___0_totalPercentage">24.8</td></tr><tr id="_r_4d_--rows--1"><th data-column="investment_name" id="_r_4d___1_investment_name" scope="row">CASH.CASH</th><td data-column="cost" headers="_r_4d___1_investment_name" id="_r_4d___1_cost">49751.4</td><td data-column="investmentDate" headers="_r_4d___1_investment_name" id="_r_4d___1_investmentDate">2020-06-28</td><td data-column="totalPercentage" headers="_r_4d___1_investment_name" id="_r_4d___1_totalPercentage">49</td></tr><tr id="_r_4d_--rows--2"><th data-column="investment_name" id="_r_4d___2_investment_name" scope="row">VODAFONE GRP</th><td data-column="cost" headers="_r_4d___2_investment_name" id="_r_4d___2_cost">26382.456</td><td data-column="investmentDate" headers="_r_4d___2_investment_name" id="_r_4d___2_investmentDate">2019-02-05</td><td data-column="totalPercentage" headers="_r_4d___2_investment_name" id="_r_4d___2_totalPercentage">26.2</td></tr></tbody></table>
2236
+ <table class="ids-table-v5206 ids-table--hidden-header-v5206" id="_r_4d_"><caption id="_r_4d_--caption" class="">My investments</caption><tbody><tr id="_r_4d_--rows--0"><th data-column="investment_name" id="_r_4d___0_investment_name" scope="row">Artemis Fund Managers Limited</th><td data-column="cost" headers="_r_4d___0_investment_name" id="_r_4d___0_cost">23898</td><td data-column="investmentDate" headers="_r_4d___0_investment_name" id="_r_4d___0_investmentDate">2019-09-23</td><td data-column="totalPercentage" headers="_r_4d___0_investment_name" id="_r_4d___0_totalPercentage">24.8</td></tr><tr id="_r_4d_--rows--1"><th data-column="investment_name" id="_r_4d___1_investment_name" scope="row">CASH.CASH</th><td data-column="cost" headers="_r_4d___1_investment_name" id="_r_4d___1_cost">49751.4</td><td data-column="investmentDate" headers="_r_4d___1_investment_name" id="_r_4d___1_investmentDate">2020-06-28</td><td data-column="totalPercentage" headers="_r_4d___1_investment_name" id="_r_4d___1_totalPercentage">49</td></tr><tr id="_r_4d_--rows--2"><th data-column="investment_name" id="_r_4d___2_investment_name" scope="row">VODAFONE GRP</th><td data-column="cost" headers="_r_4d___2_investment_name" id="_r_4d___2_cost">26382.456</td><td data-column="investmentDate" headers="_r_4d___2_investment_name" id="_r_4d___2_investmentDate">2019-02-05</td><td data-column="totalPercentage" headers="_r_4d___2_investment_name" id="_r_4d___2_totalPercentage">26.2</td></tr></tbody></table>
2237
2237
 
2238
2238
  Hide codedrawOpen in CodeSandbox
2239
2239
 
@@ -3318,7 +3318,7 @@ In some cases you may have a table with multiple groups of rows inside it, howev
3318
3318
 
3319
3319
  [](./iframe.html?id=components-table-body--body)
3320
3320
 
3321
- <table class="ids-table-v5205" id="_r_4m_"><caption id="_r_4m_--caption" class="">My liabilities</caption><tbody aria-labelledby="_r_4n_--caption" class=""><tr><th aria-expanded="true" colspan="8" class="ids-table--row-group-header-v5205" id="_r_4n_--caption" scope="rowgroup" aria-controls="_r_4n_--header--0 _r_4n_--rows--0 _r_4n_--children"><button class="ids-table--activator-v5205" type="button">Current liabilities</button></th></tr><tr class="ids-table--row-group-column-headers-v5205" id="_r_4n_--header--0"><th id="_r_4n___owner" headers="_r_4n_--caption" class="" style="width: 75px; min-width: 75px;">Owner</th><th id="_r_4n___type" headers="_r_4n_--caption" class="" style="width: 100px; min-width: 100px;">Type</th><th id="_r_4n___provider" headers="_r_4n_--caption" class="">Provider</th><th id="_r_4n___status" headers="_r_4n_--caption" class="ids-table--divider-v5205">Status</th><th id="_r_4n___frequency" headers="_r_4n_--caption" class="">Frequency</th><th id="_r_4n___outstanding" headers="_r_4n_--caption" aria-sort="none" class="ids-table--cell--currency-v5205"><button type="button" class="ids-table--sort-button-v5205 ids-table--sort-button-no-wrap-v5205">Outstanding (GBP)<span role="img" class="ids-table--sort-icon-v5205 ids-icon-v5205 fa-sort fal" aria-label="sortable"></span></button></th><th id="_r_4n___interestRate" headers="_r_4n_--caption" aria-sort="none" class="ids-table--cell--right-v5205"><button type="button" class="ids-table--sort-button-v5205 ids-table--sort-button-no-wrap-v5205">Interest rate p.a.<span role="img" class="ids-table--sort-icon-v5205 ids-icon-v5205 fa-sort fal" aria-label="sortable"></span></button></th><th id="_r_4n___repayment" headers="_r_4n_--caption" aria-sort="none" class="ids-table--cell--currency-v5205"><button type="button" class="ids-table--sort-button-v5205 ids-table--sort-button-no-wrap-v5205">Repayment (GBP)<span role="img" class="ids-table--sort-icon-v5205 ids-icon-v5205 fa-sort fal" aria-label="sortable"></span></button></th></tr><tr id="_r_4n_--rows--0"><td data-column="owner" headers="_r_4n___owner _r_4n_--caption" id="_r_4n___0_owner" class="" style="width: 75px; min-width: 75px;">Client</td><td data-column="type" headers="_r_4n___type _r_4n_--caption" id="_r_4n___0_type" class="" style="width: 100px; min-width: 100px;">Credit card</td><td data-column="provider" headers="_r_4n___provider _r_4n_--caption" id="_r_4n___0_provider" class=""></td><td data-column="status" headers="_r_4n___status _r_4n_--caption" id="_r_4n___0_status" class="ids-table--divider-v5205">Current</td><td data-column="frequency" headers="_r_4n___frequency _r_4n_--caption" id="_r_4n___0_frequency" class="">Monthly</td><td data-column="outstanding" headers="_r_4n___outstanding _r_4n_--caption" id="_r_4n___0_outstanding" class="ids-table--cell--currency-v5205">5,000.00</td><td data-column="interestRate" headers="_r_4n___interestRate _r_4n_--caption" id="_r_4n___0_interestRate" class="ids-table--cell--right-v5205">0%</td><td data-column="repayment" headers="_r_4n___repayment _r_4n_--caption" id="_r_4n___0_repayment" class="ids-table--cell--currency-v5205">300.00</td></tr><tr id="_r_4n_--children"><td colspan="8"><button class="iress-form-element iress-form-element__inner iress-u-button iress--mode--tertiary" type="button"><span class="iress-u-button__prepend"><span role="img" class="ids-icon-v5205 fa-plus-circle fal" aria-hidden="true"></span></span>Add current liability</button></td></tr></tbody><tbody aria-labelledby="_r_4p_--caption" class=""><tr><th aria-expanded="false" colspan="8" class="ids-table--row-group-header-v5205" id="_r_4p_--caption" scope="rowgroup"><button class="ids-table--activator-v5205" type="button">Long term liabilities</button></th></tr></tbody><tbody aria-labelledby="_r_4q_--caption" class=""><tr><th aria-expanded="false" colspan="8" class="ids-table--row-group-header-v5205" id="_r_4q_--caption" scope="rowgroup"><button class="ids-table--activator-v5205" type="button">Contingent liabilities</button></th></tr></tbody></table>
3321
+ <table class="ids-table-v5206" id="_r_4m_"><caption id="_r_4m_--caption" class="">My liabilities</caption><tbody aria-labelledby="_r_4n_--caption" class=""><tr><th aria-expanded="true" colspan="8" class="ids-table--row-group-header-v5206" id="_r_4n_--caption" scope="rowgroup" aria-controls="_r_4n_--header--0 _r_4n_--rows--0 _r_4n_--children"><button class="ids-table--activator-v5206" type="button">Current liabilities</button></th></tr><tr class="ids-table--row-group-column-headers-v5206" id="_r_4n_--header--0"><th id="_r_4n___owner" headers="_r_4n_--caption" class="" style="width: 75px; min-width: 75px;">Owner</th><th id="_r_4n___type" headers="_r_4n_--caption" class="" style="width: 100px; min-width: 100px;">Type</th><th id="_r_4n___provider" headers="_r_4n_--caption" class="">Provider</th><th id="_r_4n___status" headers="_r_4n_--caption" class="ids-table--divider-v5206">Status</th><th id="_r_4n___frequency" headers="_r_4n_--caption" class="">Frequency</th><th id="_r_4n___outstanding" headers="_r_4n_--caption" aria-sort="none" class="ids-table--cell--currency-v5206"><button type="button" class="ids-table--sort-button-v5206 ids-table--sort-button-no-wrap-v5206">Outstanding (GBP)<span role="img" class="ids-table--sort-icon-v5206 ids-icon-v5206 fa-sort fal" aria-label="sortable"></span></button></th><th id="_r_4n___interestRate" headers="_r_4n_--caption" aria-sort="none" class="ids-table--cell--right-v5206"><button type="button" class="ids-table--sort-button-v5206 ids-table--sort-button-no-wrap-v5206">Interest rate p.a.<span role="img" class="ids-table--sort-icon-v5206 ids-icon-v5206 fa-sort fal" aria-label="sortable"></span></button></th><th id="_r_4n___repayment" headers="_r_4n_--caption" aria-sort="none" class="ids-table--cell--currency-v5206"><button type="button" class="ids-table--sort-button-v5206 ids-table--sort-button-no-wrap-v5206">Repayment (GBP)<span role="img" class="ids-table--sort-icon-v5206 ids-icon-v5206 fa-sort fal" aria-label="sortable"></span></button></th></tr><tr id="_r_4n_--rows--0"><td data-column="owner" headers="_r_4n___owner _r_4n_--caption" id="_r_4n___0_owner" class="" style="width: 75px; min-width: 75px;">Client</td><td data-column="type" headers="_r_4n___type _r_4n_--caption" id="_r_4n___0_type" class="" style="width: 100px; min-width: 100px;">Credit card</td><td data-column="provider" headers="_r_4n___provider _r_4n_--caption" id="_r_4n___0_provider" class=""></td><td data-column="status" headers="_r_4n___status _r_4n_--caption" id="_r_4n___0_status" class="ids-table--divider-v5206">Current</td><td data-column="frequency" headers="_r_4n___frequency _r_4n_--caption" id="_r_4n___0_frequency" class="">Monthly</td><td data-column="outstanding" headers="_r_4n___outstanding _r_4n_--caption" id="_r_4n___0_outstanding" class="ids-table--cell--currency-v5206">5,000.00</td><td data-column="interestRate" headers="_r_4n___interestRate _r_4n_--caption" id="_r_4n___0_interestRate" class="ids-table--cell--right-v5206">0%</td><td data-column="repayment" headers="_r_4n___repayment _r_4n_--caption" id="_r_4n___0_repayment" class="ids-table--cell--currency-v5206">300.00</td></tr><tr id="_r_4n_--children"><td colspan="8"><button class="iress-form-element iress-form-element__inner iress-u-button iress--mode--tertiary" type="button"><span class="iress-u-button__prepend"><span role="img" class="ids-icon-v5206 fa-plus-circle fal" aria-hidden="true"></span></span>Add current liability</button></td></tr></tbody><tbody aria-labelledby="_r_4p_--caption" class=""><tr><th aria-expanded="false" colspan="8" class="ids-table--row-group-header-v5206" id="_r_4p_--caption" scope="rowgroup"><button class="ids-table--activator-v5206" type="button">Long term liabilities</button></th></tr></tbody><tbody aria-labelledby="_r_4q_--caption" class=""><tr><th aria-expanded="false" colspan="8" class="ids-table--row-group-header-v5206" id="_r_4q_--caption" scope="rowgroup"><button class="ids-table--activator-v5206" type="button">Contingent liabilities</button></th></tr></tbody></table>
3322
3322
 
3323
3323
  Hide codedrawOpen in CodeSandbox
3324
3324
 
@@ -3596,9 +3596,9 @@ IressTableFormattedValue
3596
3596
  | --- | --- |
3597
3597
  | string | string |
3598
3598
  | number | 10000 |
3599
- | date | 06/01/2026 |
3600
- | shortDate | 6 Jan 2026 |
3601
- | isoDateTime | 2026-01-06 04:14:30 (UTC) |
3599
+ | date | 07/01/2026 |
3600
+ | shortDate | 7 Jan 2026 |
3601
+ | isoDateTime | 2026-01-07 03:25:08 (UTC) |
3602
3602
  | relativeTime | now |
3603
3603
  | currency | $10,000.00 |
3604
3604
  | percent | 50% |
@@ -1,7 +1,7 @@
1
1
  Iress Design System
2
2
  ===================
3
3
 
4
- 5.20.5
4
+ 5.20.6
5
5
 
6
6
  * * *
7
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iress-oss/ids-mcp-server",
3
- "version": "5.20.4",
3
+ "version": "5.20.5",
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",