@iress-oss/ids-mcp-server 5.20.1 → 5.20.2

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 (68) hide show
  1. package/generated/docs/components_components-alert-docs.md +51 -47
  2. package/generated/docs/components_components-autocomplete-docs.md +48 -104
  3. package/generated/docs/components_components-autocomplete-recipes-docs.md +9 -2
  4. package/generated/docs/components_components-badge-docs.md +4 -4
  5. package/generated/docs/components_components-button-docs.md +24 -24
  6. package/generated/docs/components_components-buttongroup-docs.md +20 -20
  7. package/generated/docs/components_components-card-docs.md +70 -56
  8. package/generated/docs/components_components-card-recipes-docs.md +4 -4
  9. package/generated/docs/components_components-checkbox-docs.md +7 -21
  10. package/generated/docs/components_components-checkboxgroup-docs.md +32 -32
  11. package/generated/docs/components_components-checkboxgroup-recipes-docs.md +2 -2
  12. package/generated/docs/components_components-col-docs.md +10 -10
  13. package/generated/docs/components_components-combobox-docs.md +58 -90
  14. package/generated/docs/components_components-container-docs.md +4 -4
  15. package/generated/docs/components_components-divider-docs.md +3 -3
  16. package/generated/docs/components_components-expander-docs.md +6 -4
  17. package/generated/docs/components_components-field-docs.md +18 -18
  18. package/generated/docs/components_components-filter-docs.md +54 -54
  19. package/generated/docs/components_components-form-docs.md +94 -60
  20. package/generated/docs/components_components-form-recipes-docs.md +114 -13
  21. package/generated/docs/components_components-hide-docs.md +55 -12
  22. package/generated/docs/components_components-icon-docs.md +13 -13
  23. package/generated/docs/components_components-inline-docs.md +14 -14
  24. package/generated/docs/components_components-input-docs.md +10 -10
  25. package/generated/docs/components_components-input-recipes-docs.md +3 -3
  26. package/generated/docs/components_components-inputcurrency-docs.md +6 -6
  27. package/generated/docs/components_components-inputcurrency-recipes-docs.md +5 -2
  28. package/generated/docs/components_components-label-docs.md +6 -6
  29. package/generated/docs/components_components-menu-docs.md +40 -40
  30. package/generated/docs/components_components-menu-menuitem-docs.md +12 -12
  31. package/generated/docs/components_components-modal-docs.md +29 -13
  32. package/generated/docs/components_components-navbar-docs.md +42 -42
  33. package/generated/docs/components_components-navbar-recipes-docs.md +41 -18
  34. package/generated/docs/components_components-panel-docs.md +19 -19
  35. package/generated/docs/components_components-placeholder-docs.md +1 -1
  36. package/generated/docs/components_components-popover-docs.md +32 -30
  37. package/generated/docs/components_components-popover-recipes-docs.md +47 -131
  38. package/generated/docs/components_components-progress-docs.md +1 -1
  39. package/generated/docs/components_components-provider-docs.md +2 -2
  40. package/generated/docs/components_components-radio-docs.md +5 -5
  41. package/generated/docs/components_components-radiogroup-docs.md +29 -45
  42. package/generated/docs/components_components-readonly-docs.md +5 -5
  43. package/generated/docs/components_components-richselect-docs.md +88 -64
  44. package/generated/docs/components_components-row-docs.md +12 -12
  45. package/generated/docs/components_components-select-docs.md +8 -8
  46. package/generated/docs/components_components-skeleton-docs.md +9 -9
  47. package/generated/docs/components_components-skeleton-recipes-docs.md +2 -2
  48. package/generated/docs/components_components-skiplink-docs.md +3 -3
  49. package/generated/docs/components_components-slideout-docs.md +43 -12
  50. package/generated/docs/components_components-slider-docs.md +12 -12
  51. package/generated/docs/components_components-spinner-docs.md +3 -3
  52. package/generated/docs/components_components-stack-docs.md +14 -14
  53. package/generated/docs/components_components-table-docs.md +51 -44
  54. package/generated/docs/components_components-tabset-docs.md +10 -10
  55. package/generated/docs/components_components-tabset-tab-docs.md +4 -4
  56. package/generated/docs/components_components-tag-docs.md +8 -10
  57. package/generated/docs/components_components-text-docs.md +7 -7
  58. package/generated/docs/components_components-toaster-docs.md +12 -12
  59. package/generated/docs/components_components-toaster-toast-docs.md +30 -30
  60. package/generated/docs/components_components-toggle-docs.md +5 -5
  61. package/generated/docs/components_components-tooltip-docs.md +4 -4
  62. package/generated/docs/components_components-validationmessage-docs.md +6 -6
  63. package/generated/docs/components_foundations-typography-docs.md +7 -7
  64. package/generated/docs/components_introduction-docs.md +1 -1
  65. package/generated/docs/components_patterns-loading-docs.md +101 -24
  66. package/generated/docs/components_sandbox-docs.md +4 -0
  67. package/generated/docs/guidelines.md +7 -7
  68. package/package.json +10 -10
@@ -12,14 +12,14 @@ Toaster provide users with important, time-sensitive information.
12
12
 
13
13
  Show toast using provider
14
14
 
15
- ```
15
+ Hide codedrawOpen in CodeSandbox
16
16
 
17
17
  import {
18
18
  IressButton,
19
19
  IressToasterProvider,
20
20
  type IressToasterProviderProps,
21
21
  useToaster,
22
- } from '@iress-oss/ids-components';
22
+ } from '@/main';
23
23
  const ToastWithTrigger \= () \=> {
24
24
  const toaster \= useToaster();
25
25
  return (
@@ -81,14 +81,14 @@ To use, wrap your `<App/>` or the component that you want to use the `useToaster
81
81
 
82
82
  Show toast using provider
83
83
 
84
- ```
84
+ Hide codedrawOpen in CodeSandbox
85
85
 
86
86
  import {
87
87
  IressButton,
88
88
  IressToasterProvider,
89
89
  type IressToasterProviderProps,
90
90
  useToaster,
91
- } from '@iress-oss/ids-components';
91
+ } from '@/main';
92
92
  const ToastWithTrigger \= () \=> {
93
93
  const toaster \= useToaster();
94
94
  return (
@@ -142,7 +142,7 @@ If you want to dismiss a toast programmatically, you can use the `close` method
142
142
 
143
143
  Show toast using provider
144
144
 
145
- ```
145
+ Hide codedrawOpen in CodeSandbox
146
146
 
147
147
  import {
148
148
  IressButton,
@@ -150,7 +150,7 @@ import {
150
150
  IressToasterProvider,
151
151
  type IressToasterProviderProps,
152
152
  useToaster,
153
- } from '@iress-oss/ids-components';
153
+ } from '@/main';
154
154
  import { useState } from 'react';
155
155
  const ToastWithTrigger \= () \=> {
156
156
  const toaster \= useToaster();
@@ -217,7 +217,7 @@ The toast offers three status that set a distinctive colour and icon. They can b
217
217
 
218
218
  successerrorinfo
219
219
 
220
- ```
220
+ Hide codedrawOpen in CodeSandbox
221
221
 
222
222
  import {
223
223
  IressButton,
@@ -227,7 +227,7 @@ import {
227
227
  IressToasterProvider,
228
228
  TOAST\_STATUS,
229
229
  useToaster,
230
- } from '@iress-oss/ids-components';
230
+ } from '@/main';
231
231
  const ToastWithTrigger \= ({ status }: Pick<IressToastProps, 'status'\>) \=> {
232
232
  const toaster \= useToaster();
233
233
  return (
@@ -284,14 +284,14 @@ Timeouts must be set in milliseconds; as an example, if you want a timeout of fi
284
284
 
285
285
  1000ms timeout
286
286
 
287
- ```
287
+ Hide codedrawOpen in CodeSandbox
288
288
 
289
289
  import {
290
290
  IressButton,
291
291
  IressToasterProvider,
292
292
  type IressToasterProviderProps,
293
293
  useToaster,
294
- } from '@iress-oss/ids-components';
294
+ } from '@/main';
295
295
  const ToastWithTrigger \= () \=> {
296
296
  const toaster \= useToaster();
297
297
  return (
@@ -350,7 +350,7 @@ Toaster positions
350
350
 
351
351
  bottom-startbottom-centerbottom-end
352
352
 
353
- ```
353
+ Hide codedrawOpen in CodeSandbox
354
354
 
355
355
  import {
356
356
  IressButton,
@@ -363,7 +363,7 @@ import {
363
363
  type IressToasterProviderProps,
364
364
  type IressToastProps,
365
365
  useToaster,
366
- } from '@iress-oss/ids-components';
366
+ } from '@/main';
367
367
  import { useState } from 'react';
368
368
  const DEFAULT\_TOAST: IressToastProps \= {
369
369
  children: 'Message sent successfully',
@@ -15,7 +15,7 @@ Error
15
15
 
16
16
  Connection failure. Longer text description should wrap and look like this. Try to limit to 3 lines or less.
17
17
 
18
- ```
18
+ Hide codedrawOpen in CodeSandbox
19
19
 
20
20
  <IressToast
21
21
  heading\="Error"
@@ -38,7 +38,7 @@ ReactReactNode
38
38
 
39
39
 
40
40
 
41
- | \- | Choose option...noneWith Action Button |
41
+ | \- | actionsChoose option...noneWith Action Button |
42
42
  | children |
43
43
 
44
44
  The toast message.
@@ -58,7 +58,7 @@ The content of the toast message.
58
58
 
59
59
  string
60
60
 
61
- <table class="css-3nr4py"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: use children instead.</td></tr></tbody></table>
61
+ <table class="css-ymgjf7"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: use children instead.</td></tr></tbody></table>
62
62
 
63
63
  | \- | Set string |
64
64
  | dismissible |
@@ -78,14 +78,14 @@ ReactReactNode
78
78
 
79
79
 
80
80
 
81
- | \- | Choose option...noneWith h2 tagWith Custom Heading |
81
+ | \- | headingChoose option...noneWith h2 tagWith Custom Heading |
82
82
  | headingLevel |
83
83
 
84
84
  Heading level for the Toast heading. Will be ignored if headingText is not supplied.
85
85
 
86
86
  HeadingLevel
87
87
 
88
- <table class="css-3nr4py"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
88
+ <table class="css-ymgjf7"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
89
89
 
90
90
  | \- | Set object |
91
91
  | headingText |
@@ -94,7 +94,7 @@ Text for Toast heading. If not supplied, heading will not be displayed.
94
94
 
95
95
  string
96
96
 
97
- <table class="css-3nr4py"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
97
+ <table class="css-ymgjf7"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
98
98
 
99
99
  | \- | Set string |
100
100
  | onClose |
@@ -149,7 +149,7 @@ Info
149
149
 
150
150
  Ideal for conveying updates or notifications that do not require immediate action, as well as gently inform users about events or changes within an application or interface.
151
151
 
152
- ```
152
+ Hide codedrawOpen in CodeSandbox
153
153
 
154
154
  <IressStack gutter\="lg"\>
155
155
  <IressToast
@@ -182,7 +182,7 @@ ReactReactNode
182
182
 
183
183
 
184
184
 
185
- | \- | Choose option...noneWith Action Button |
185
+ | \- | actionsChoose option...noneWith Action Button |
186
186
  | children |
187
187
 
188
188
  The toast message.
@@ -202,7 +202,7 @@ The content of the toast message.
202
202
 
203
203
  string
204
204
 
205
- <table class="css-3nr4py"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: use children instead.</td></tr></tbody></table>
205
+ <table class="css-ymgjf7"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: use children instead.</td></tr></tbody></table>
206
206
 
207
207
  | \- | Set string |
208
208
  | dismissible |
@@ -222,14 +222,14 @@ ReactReactNode
222
222
 
223
223
 
224
224
 
225
- | \- | Choose option...noneWith h2 tagWith Custom Heading |
225
+ | \- | headingChoose option...noneWith h2 tagWith Custom Heading |
226
226
  | headingLevel |
227
227
 
228
228
  Heading level for the Toast heading. Will be ignored if headingText is not supplied.
229
229
 
230
230
  HeadingLevel
231
231
 
232
- <table class="css-3nr4py"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
232
+ <table class="css-ymgjf7"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
233
233
 
234
234
  | \- | Set object |
235
235
  | headingText |
@@ -238,7 +238,7 @@ Text for Toast heading. If not supplied, heading will not be displayed.
238
238
 
239
239
  string
240
240
 
241
- <table class="css-3nr4py"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
241
+ <table class="css-ymgjf7"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
242
242
 
243
243
  | \- | Set string |
244
244
  | onClose |
@@ -278,7 +278,7 @@ Toast with a h2 tag
278
278
 
279
279
  Connection failure. Longer text description should wrap and look like this. Try to limit to 3 lines or less.
280
280
 
281
- ```
281
+ Hide codedrawOpen in CodeSandbox
282
282
 
283
283
  <IressToast
284
284
  heading\={<h2\>Toast with a h2 tag</h2\>}
@@ -300,7 +300,7 @@ ReactReactNode
300
300
 
301
301
 
302
302
 
303
- | \- | Choose option...noneWith Action Button |
303
+ | \- | actionsChoose option...noneWith Action Button |
304
304
  | children |
305
305
 
306
306
  The toast message.
@@ -320,7 +320,7 @@ The content of the toast message.
320
320
 
321
321
  string
322
322
 
323
- <table class="css-3nr4py"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: use children instead.</td></tr></tbody></table>
323
+ <table class="css-ymgjf7"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: use children instead.</td></tr></tbody></table>
324
324
 
325
325
  | \- | Set string |
326
326
  | dismissible |
@@ -340,14 +340,14 @@ ReactReactNode
340
340
 
341
341
 
342
342
 
343
- | \- | Choose option...noneWith h2 tagWith Custom Heading |
343
+ | \- | headingChoose option...noneWith h2 tagWith Custom Heading |
344
344
  | headingLevel |
345
345
 
346
346
  Heading level for the Toast heading. Will be ignored if headingText is not supplied.
347
347
 
348
348
  HeadingLevel
349
349
 
350
- <table class="css-3nr4py"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
350
+ <table class="css-ymgjf7"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
351
351
 
352
352
  | \- | Set object |
353
353
  | headingText |
@@ -356,7 +356,7 @@ Text for Toast heading. If not supplied, heading will not be displayed.
356
356
 
357
357
  string
358
358
 
359
- <table class="css-3nr4py"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
359
+ <table class="css-ymgjf7"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
360
360
 
361
361
  | \- | Set string |
362
362
  | onClose |
@@ -400,7 +400,7 @@ Connection failure. Longer text description should wrap and look like this. Try
400
400
 
401
401
  Try Again
402
402
 
403
- ```
403
+ Hide codedrawOpen in CodeSandbox
404
404
 
405
405
  <IressToast
406
406
  actions\={<IressButton key\="test" mode\="danger"\>Try Again</IressButton\>}
@@ -423,7 +423,7 @@ ReactReactNode
423
423
 
424
424
 
425
425
 
426
- | \- | Choose option...noneWith Action Button |
426
+ | \- | actionsChoose option...noneWith Action Button |
427
427
  | children |
428
428
 
429
429
  The toast message.
@@ -443,7 +443,7 @@ The content of the toast message.
443
443
 
444
444
  string
445
445
 
446
- <table class="css-3nr4py"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: use children instead.</td></tr></tbody></table>
446
+ <table class="css-ymgjf7"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: use children instead.</td></tr></tbody></table>
447
447
 
448
448
  | \- | Set string |
449
449
  | dismissible |
@@ -463,14 +463,14 @@ ReactReactNode
463
463
 
464
464
 
465
465
 
466
- | \- | Choose option...noneWith h2 tagWith Custom Heading |
466
+ | \- | headingChoose option...noneWith h2 tagWith Custom Heading |
467
467
  | headingLevel |
468
468
 
469
469
  Heading level for the Toast heading. Will be ignored if headingText is not supplied.
470
470
 
471
471
  HeadingLevel
472
472
 
473
- <table class="css-3nr4py"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
473
+ <table class="css-ymgjf7"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
474
474
 
475
475
  | \- | Set object |
476
476
  | headingText |
@@ -479,7 +479,7 @@ Text for Toast heading. If not supplied, heading will not be displayed.
479
479
 
480
480
  string
481
481
 
482
- <table class="css-3nr4py"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
482
+ <table class="css-ymgjf7"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
483
483
 
484
484
  | \- | Set string |
485
485
  | onClose |
@@ -523,7 +523,7 @@ Information
523
523
 
524
524
  Information toast with dismiss button
525
525
 
526
- ```
526
+ Hide codedrawOpen in CodeSandbox
527
527
 
528
528
  <IressToast
529
529
  dismissible
@@ -546,7 +546,7 @@ ReactReactNode
546
546
 
547
547
 
548
548
 
549
- | \- | Choose option...noneWith Action Button |
549
+ | \- | actionsChoose option...noneWith Action Button |
550
550
  | children |
551
551
 
552
552
  The toast message.
@@ -566,7 +566,7 @@ The content of the toast message.
566
566
 
567
567
  string
568
568
 
569
- <table class="css-3nr4py"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: use children instead.</td></tr></tbody></table>
569
+ <table class="css-ymgjf7"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: use children instead.</td></tr></tbody></table>
570
570
 
571
571
  | \- | Set string |
572
572
  | dismissible |
@@ -586,14 +586,14 @@ ReactReactNode
586
586
 
587
587
 
588
588
 
589
- | \- | Choose option...noneWith h2 tagWith Custom Heading |
589
+ | \- | headingChoose option...noneWith h2 tagWith Custom Heading |
590
590
  | headingLevel |
591
591
 
592
592
  Heading level for the Toast heading. Will be ignored if headingText is not supplied.
593
593
 
594
594
  HeadingLevel
595
595
 
596
- <table class="css-3nr4py"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
596
+ <table class="css-ymgjf7"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
597
597
 
598
598
  | \- | Set object |
599
599
  | headingText |
@@ -602,7 +602,7 @@ Text for Toast heading. If not supplied, heading will not be displayed.
602
602
 
603
603
  string
604
604
 
605
- <table class="css-3nr4py"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
605
+ <table class="css-ymgjf7"><tbody><tr><td colspan="2"><strong>Deprecated</strong>: Use `heading` instead.</td></tr></tbody></table>
606
606
 
607
607
  | \- | Set string |
608
608
  | onClose |
@@ -10,7 +10,7 @@ Toggles allow users to turn things on or off. When toggled, the associated chang
10
10
 
11
11
  Toggle
12
12
 
13
- ```
13
+ Hide codedrawOpen in CodeSandbox
14
14
 
15
15
  <IressToggle
16
16
  layout\="inline"
@@ -104,7 +104,7 @@ Toggles should always have a label, which is set via its `children`.
104
104
 
105
105
  Toggle
106
106
 
107
- ```
107
+ Hide codedrawOpen in CodeSandbox
108
108
 
109
109
  <IressToggle
110
110
  layout\="inline"
@@ -185,7 +185,7 @@ Labels can be hidden via the `hiddenLabel` prop; this will hide the label from v
185
185
 
186
186
  Toggle
187
187
 
188
- ```
188
+ Hide codedrawOpen in CodeSandbox
189
189
 
190
190
  <IressToggle
191
191
  hiddenLabel
@@ -267,7 +267,7 @@ The on / off state of the toggle can be controlled by setting the `checked` prop
267
267
 
268
268
  Toggle
269
269
 
270
- ```
270
+ Hide codedrawOpen in CodeSandbox
271
271
 
272
272
  <IressToggle
273
273
  checked
@@ -359,7 +359,7 @@ Toggle
359
359
 
360
360
  Toggle
361
361
 
362
- ```
362
+ Hide codedrawOpen in CodeSandbox
363
363
 
364
364
  <IressRow gutter\="lg"\>
365
365
  <IressCol span\="12"\>
@@ -10,7 +10,7 @@ A component that shows concise, informative text about an element when focussed
10
10
 
11
11
  Hover me
12
12
 
13
- ```
13
+ Hide codedrawOpen in CodeSandbox
14
14
 
15
15
  <IressTooltip tooltipText\="Hello! This is a really long tooltip to try and see if it goes behind the scrollbar"\>
16
16
  <IressButton\>
@@ -100,7 +100,7 @@ Single line
100
100
 
101
101
  Multi line
102
102
 
103
- ```
103
+ Hide codedrawOpen in CodeSandbox
104
104
 
105
105
  <div
106
106
  style\={{
@@ -248,7 +248,7 @@ Bottom
248
248
 
249
249
  Bottom End
250
250
 
251
- ```
251
+ Hide codedrawOpen in CodeSandbox
252
252
 
253
253
  <div
254
254
  style\={{
@@ -450,7 +450,7 @@ The `delay` prop requires a number that is the number of milliseconds that pass
450
450
 
451
451
  2000ms
452
452
 
453
- ```
453
+ Hide codedrawOpen in CodeSandbox
454
454
 
455
455
  <div
456
456
  style\={{
@@ -12,7 +12,7 @@ Error:
12
12
 
13
13
  Validation message
14
14
 
15
- ```
15
+ Hide codedrawOpen in CodeSandbox
16
16
 
17
17
  <IressValidationMessage\>
18
18
  Validation message
@@ -63,7 +63,7 @@ Warning:
63
63
 
64
64
  Something could go wrong.
65
65
 
66
- ```
66
+ Hide codedrawOpen in CodeSandbox
67
67
 
68
68
  <IressStack\>
69
69
  <IressValidationMessage status\="danger"\>
@@ -121,7 +121,7 @@ Prefix:
121
121
 
122
122
  Something could go wrong.
123
123
 
124
- ```
124
+ Hide codedrawOpen in CodeSandbox
125
125
 
126
126
  <IressStack\>
127
127
  <IressValidationMessage
@@ -220,7 +220,7 @@ Something could go wrong.
220
220
 
221
221
  * * *
222
222
 
223
- ```
223
+ Hide codedrawOpen in CodeSandbox
224
224
 
225
225
  <IressStack gutter\="md"\>
226
226
  <IressStack\>
@@ -303,7 +303,7 @@ Messages can be passed programmatically as a `ValidationMessageObj[]` using the
303
303
  Something went right.
304
304
 
305
305
 
306
- ```
306
+ Hide codedrawOpen in CodeSandbox
307
307
 
308
308
  <IressValidationSummary
309
309
  messages\={\[
@@ -348,7 +348,7 @@ ValidationMessageObj\[\]
348
348
 
349
349
  | \[\] |
350
350
 
351
- RAW
351
+ Edit JSON
352
352
 
353
353
  * messages :
354
354
 
@@ -18,7 +18,7 @@ Nobis odit nesciunt in, harum provident deleniti molestiae dolorum aliquid tempo
18
18
  * Illum et atque alias possimus maiores rem in corrupti consectetur!
19
19
  * Dolorum, repellat expedita!
20
20
 
21
- ```
21
+ Hide codedrawOpen in CodeSandbox
22
22
 
23
23
  <IressText\>
24
24
  <p\>
@@ -57,7 +57,7 @@ union
57
57
 
58
58
  | \- |
59
59
 
60
- RAW
60
+ Edit JSON
61
61
 
62
62
  * children :
63
63
 
@@ -143,7 +143,7 @@ Hello, we are a company that puts clients first.
143
143
  An H2 styled as an H3.
144
144
  ----------------------
145
145
 
146
- ```
146
+ Hide codedrawOpen in CodeSandbox
147
147
 
148
148
  <IressStack gutter\="md"\>
149
149
  <IressText element\="h1"\>
@@ -244,7 +244,7 @@ Hello, we are a company that puts clients first.
244
244
 
245
245
  Hello, we are a company that puts clients first.
246
246
 
247
- ```
247
+ Hide codedrawOpen in CodeSandbox
248
248
 
249
249
  <IressStack gutter\="md"\>
250
250
  <IressText variant\="display1"\>
@@ -332,7 +332,7 @@ Lead text is used to introduce users to a new section, and often gives a brief s
332
332
 
333
333
  Nobis odit nesciunt in, harum provident deleniti molestiae dolorum aliquid tempora optio accusamus dolore porro voluptatibus. Dolorum, repellat expedita.
334
334
 
335
- ```
335
+ Hide codedrawOpen in CodeSandbox
336
336
 
337
337
  <IressText
338
338
  element\="p"
@@ -428,7 +428,7 @@ The caption variant is used for small text that provides additional information
428
428
 
429
429
  Example caption
430
430
 
431
- ```
431
+ Hide codedrawOpen in CodeSandbox
432
432
 
433
433
  <IressText element\="caption"\>
434
434
  Example caption
@@ -528,7 +528,7 @@ Small text
528
528
 
529
529
  Muted text
530
530
 
531
- ```
531
+ Hide codedrawOpen in CodeSandbox
532
532
 
533
533
  <IressStack gutter\="md"\>
534
534
  <IressText variant\="bold"\>
@@ -1,7 +1,7 @@
1
1
  Iress Design System
2
2
  ===================
3
3
 
4
- 5.20.2
4
+ 5.20.3
5
5
 
6
6
  * * *
7
7