@iress-oss/ids-mcp-server 0.0.1-dev.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.
Files changed (107) hide show
  1. package/LICENSE.txt +201 -0
  2. package/README.md +93 -0
  3. package/dist/componentHandlers.js +241 -0
  4. package/dist/componentHandlers.test.js +380 -0
  5. package/dist/config.js +16 -0
  6. package/dist/index.js +53 -0
  7. package/dist/iressHandlers.js +144 -0
  8. package/dist/iressHandlers.test.js +316 -0
  9. package/dist/resourceHandlers.js +67 -0
  10. package/dist/resourceHandlers.test.js +352 -0
  11. package/dist/searchHandlers.js +287 -0
  12. package/dist/searchHandlers.test.js +524 -0
  13. package/dist/toolHandler.js +31 -0
  14. package/dist/toolHandler.test.js +369 -0
  15. package/dist/tools.js +165 -0
  16. package/dist/types.js +4 -0
  17. package/dist/utils.js +59 -0
  18. package/dist/utils.test.js +286 -0
  19. package/generated/docs/components-alert-docs.md +130 -0
  20. package/generated/docs/components-autocomplete-docs.md +754 -0
  21. package/generated/docs/components-autocomplete-recipes-docs.md +104 -0
  22. package/generated/docs/components-badge-docs.md +148 -0
  23. package/generated/docs/components-button-docs.md +362 -0
  24. package/generated/docs/components-button-recipes-docs.md +76 -0
  25. package/generated/docs/components-buttongroup-docs.md +310 -0
  26. package/generated/docs/components-card-docs.md +494 -0
  27. package/generated/docs/components-card-recipes-docs.md +89 -0
  28. package/generated/docs/components-checkbox-docs.md +193 -0
  29. package/generated/docs/components-checkboxgroup-docs.md +692 -0
  30. package/generated/docs/components-checkboxgroup-recipes-docs.md +119 -0
  31. package/generated/docs/components-col-docs.md +466 -0
  32. package/generated/docs/components-combobox-docs.md +1016 -0
  33. package/generated/docs/components-container-docs.md +91 -0
  34. package/generated/docs/components-divider-docs.md +176 -0
  35. package/generated/docs/components-expander-docs.md +215 -0
  36. package/generated/docs/components-field-docs.md +675 -0
  37. package/generated/docs/components-filter-docs.md +1109 -0
  38. package/generated/docs/components-form-docs.md +2442 -0
  39. package/generated/docs/components-form-recipes-docs.md +892 -0
  40. package/generated/docs/components-hide-docs.md +265 -0
  41. package/generated/docs/components-icon-docs.md +553 -0
  42. package/generated/docs/components-inline-docs.md +868 -0
  43. package/generated/docs/components-input-docs.md +335 -0
  44. package/generated/docs/components-input-recipes-docs.md +140 -0
  45. package/generated/docs/components-inputcurrency-docs.md +157 -0
  46. package/generated/docs/components-inputcurrency-recipes-docs.md +116 -0
  47. package/generated/docs/components-label-docs.md +135 -0
  48. package/generated/docs/components-menu-docs.md +704 -0
  49. package/generated/docs/components-menu-menuitem-docs.md +193 -0
  50. package/generated/docs/components-modal-docs.md +587 -0
  51. package/generated/docs/components-navbar-docs.md +291 -0
  52. package/generated/docs/components-navbar-recipes-docs.md +413 -0
  53. package/generated/docs/components-panel-docs.md +380 -0
  54. package/generated/docs/components-placeholder-docs.md +27 -0
  55. package/generated/docs/components-popover-docs.md +464 -0
  56. package/generated/docs/components-popover-recipes-docs.md +245 -0
  57. package/generated/docs/components-progress-docs.md +104 -0
  58. package/generated/docs/components-radio-docs.md +107 -0
  59. package/generated/docs/components-radiogroup-docs.md +683 -0
  60. package/generated/docs/components-readonly-docs.md +89 -0
  61. package/generated/docs/components-richselect-docs.md +2433 -0
  62. package/generated/docs/components-row-docs.md +877 -0
  63. package/generated/docs/components-select-docs.md +456 -0
  64. package/generated/docs/components-skeleton-docs.md +214 -0
  65. package/generated/docs/components-skeleton-recipes-docs.md +76 -0
  66. package/generated/docs/components-skiplink-docs.md +66 -0
  67. package/generated/docs/components-slideout-docs.md +538 -0
  68. package/generated/docs/components-slider-docs.md +346 -0
  69. package/generated/docs/components-spinner-docs.md +59 -0
  70. package/generated/docs/components-stack-docs.md +265 -0
  71. package/generated/docs/components-table-ag-grid-docs.md +2666 -0
  72. package/generated/docs/components-table-docs.md +1305 -0
  73. package/generated/docs/components-tabset-docs.md +341 -0
  74. package/generated/docs/components-tabset-tab-docs.md +86 -0
  75. package/generated/docs/components-tag-docs.md +115 -0
  76. package/generated/docs/components-text-docs.md +394 -0
  77. package/generated/docs/components-toaster-docs.md +294 -0
  78. package/generated/docs/components-toaster-toast-docs.md +157 -0
  79. package/generated/docs/components-toggle-docs.md +158 -0
  80. package/generated/docs/components-tooltip-docs.md +311 -0
  81. package/generated/docs/components-validationmessage-docs.md +241 -0
  82. package/generated/docs/contact-us-docs.md +27 -0
  83. package/generated/docs/extensions-editor-docs.md +288 -0
  84. package/generated/docs/extensions-editor-recipes-docs.md +39 -0
  85. package/generated/docs/foundations-accessibility-docs.md +62 -0
  86. package/generated/docs/foundations-colours-docs.md +257 -0
  87. package/generated/docs/foundations-consistency-docs.md +52 -0
  88. package/generated/docs/foundations-content-docs.md +23 -0
  89. package/generated/docs/foundations-introduction-docs.md +17 -0
  90. package/generated/docs/foundations-principles-docs.md +70 -0
  91. package/generated/docs/foundations-typography-docs.md +191 -0
  92. package/generated/docs/foundations-user-experience-docs.md +63 -0
  93. package/generated/docs/foundations-visual-design-docs.md +46 -0
  94. package/generated/docs/frequently-asked-questions-docs.md +53 -0
  95. package/generated/docs/get-started-develop-docs.md +48 -0
  96. package/generated/docs/get-started-using-storybook-docs.md +68 -0
  97. package/generated/docs/guidelines.md +812 -0
  98. package/generated/docs/introduction-docs.md +43 -0
  99. package/generated/docs/patterns-loading-docs.md +1304 -0
  100. package/generated/docs/resources-changelog-docs.md +6 -0
  101. package/generated/docs/resources-code-katas-docs.md +29 -0
  102. package/generated/docs/resources-migration-guides-from-v4-to-v5-docs.md +437 -0
  103. package/generated/docs/themes-available-themes-docs.md +66 -0
  104. package/generated/docs/themes-introduction-docs.md +121 -0
  105. package/generated/docs/themes-tokens-docs.md +1200 -0
  106. package/generated/docs/versions-docs.md +17 -0
  107. package/package.json +81 -0
@@ -0,0 +1,868 @@
1
+ [](#inline)Inline
2
+ =================
3
+
4
+ Overview
5
+ --------
6
+
7
+ `IressInline` renders a set of components in a row with equal spacing around them, wrapping onto multiple lines when necessary.
8
+
9
+ Hide code
10
+
11
+ \[data-radix-scroll-area-viewport\] { scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; } \[data-radix-scroll-area-viewport\]::-webkit-scrollbar { display: none; } :where(\[data-radix-scroll-area-viewport\]) { display: flex; flex-direction: column; align-items: stretch; } :where(\[data-radix-scroll-area-content\]) { flex-grow: 1; }
12
+
13
+ <IressInline gutter\="md"\>
14
+ <IressPlaceholder
15
+ style\={{
16
+ minHeight: '30px'
17
+ }}
18
+ width\="50"
19
+ />
20
+ <IressPlaceholder
21
+ style\={{
22
+ minHeight: '50px'
23
+ }}
24
+ width\="50"
25
+ />
26
+ <IressPlaceholder
27
+ style\={{
28
+ minHeight: '80px'
29
+ }}
30
+ width\="50"
31
+ />
32
+ <IressPlaceholder
33
+ style\={{
34
+ minHeight: '60px'
35
+ }}
36
+ width\="50"
37
+ />
38
+ <IressPlaceholder
39
+ style\={{
40
+ minHeight: '10px'
41
+ }}
42
+ width\="50"
43
+ />
44
+ </IressInline\>
45
+
46
+ Copy
47
+
48
+ [](#examples)Examples
49
+ ---------------------
50
+
51
+ ### [](#gutter)Gutter
52
+
53
+ Inline spacing is applied to the direct children of the `IressInline` component.
54
+
55
+ The amount of spacing is controlled by the `gutter` prop and can be set to: `none`, `xs`, `sm`, `md`, `lg` or `xl`.
56
+
57
+ none
58
+ ----
59
+
60
+ xs
61
+ --
62
+
63
+ sm
64
+ --
65
+
66
+ md
67
+ --
68
+
69
+ lg
70
+ --
71
+
72
+ xl
73
+ --
74
+
75
+ Hide code
76
+
77
+ \[data-radix-scroll-area-viewport\] { scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; } \[data-radix-scroll-area-viewport\]::-webkit-scrollbar { display: none; } :where(\[data-radix-scroll-area-viewport\]) { display: flex; flex-direction: column; align-items: stretch; } :where(\[data-radix-scroll-area-content\]) { flex-grow: 1; }
78
+
79
+ <IressStack gutter\="xl"\>
80
+ <IressText\>
81
+ <h2\>
82
+ none </h2\>
83
+ <IressInline gutter\="none"\>
84
+ <IressPlaceholder
85
+ style\={{
86
+ minHeight: '50px'
87
+ }}
88
+ width\="50"
89
+ />
90
+ <IressPlaceholder
91
+ style\={{
92
+ minHeight: '50px'
93
+ }}
94
+ width\="50"
95
+ />
96
+ <IressPlaceholder
97
+ style\={{
98
+ minHeight: '50px'
99
+ }}
100
+ width\="50"
101
+ />
102
+ <IressPlaceholder
103
+ style\={{
104
+ minHeight: '50px'
105
+ }}
106
+ width\="50"
107
+ />
108
+ <IressPlaceholder
109
+ style\={{
110
+ minHeight: '50px'
111
+ }}
112
+ width\="50"
113
+ />
114
+ </IressInline\>
115
+ </IressText\>
116
+ <IressText\>
117
+ <h2\>
118
+ xs </h2\>
119
+ <IressInline gutter\="xs"\>
120
+ <IressPlaceholder
121
+ style\={{
122
+ minHeight: '50px'
123
+ }}
124
+ width\="50"
125
+ />
126
+ <IressPlaceholder
127
+ style\={{
128
+ minHeight: '50px'
129
+ }}
130
+ width\="50"
131
+ />
132
+ <IressPlaceholder
133
+ style\={{
134
+ minHeight: '50px'
135
+ }}
136
+ width\="50"
137
+ />
138
+ <IressPlaceholder
139
+ style\={{
140
+ minHeight: '50px'
141
+ }}
142
+ width\="50"
143
+ />
144
+ <IressPlaceholder
145
+ style\={{
146
+ minHeight: '50px'
147
+ }}
148
+ width\="50"
149
+ />
150
+ </IressInline\>
151
+ </IressText\>
152
+ <IressText\>
153
+ <h2\>
154
+ sm </h2\>
155
+ <IressInline gutter\="sm"\>
156
+ <IressPlaceholder
157
+ style\={{
158
+ minHeight: '50px'
159
+ }}
160
+ width\="50"
161
+ />
162
+ <IressPlaceholder
163
+ style\={{
164
+ minHeight: '50px'
165
+ }}
166
+ width\="50"
167
+ />
168
+ <IressPlaceholder
169
+ style\={{
170
+ minHeight: '50px'
171
+ }}
172
+ width\="50"
173
+ />
174
+ <IressPlaceholder
175
+ style\={{
176
+ minHeight: '50px'
177
+ }}
178
+ width\="50"
179
+ />
180
+ <IressPlaceholder
181
+ style\={{
182
+ minHeight: '50px'
183
+ }}
184
+ width\="50"
185
+ />
186
+ </IressInline\>
187
+ </IressText\>
188
+ <IressText\>
189
+ <h2\>
190
+ md </h2\>
191
+ <IressInline gutter\="md"\>
192
+ <IressPlaceholder
193
+ style\={{
194
+ minHeight: '50px'
195
+ }}
196
+ width\="50"
197
+ />
198
+ <IressPlaceholder
199
+ style\={{
200
+ minHeight: '50px'
201
+ }}
202
+ width\="50"
203
+ />
204
+ <IressPlaceholder
205
+ style\={{
206
+ minHeight: '50px'
207
+ }}
208
+ width\="50"
209
+ />
210
+ <IressPlaceholder
211
+ style\={{
212
+ minHeight: '50px'
213
+ }}
214
+ width\="50"
215
+ />
216
+ <IressPlaceholder
217
+ style\={{
218
+ minHeight: '50px'
219
+ }}
220
+ width\="50"
221
+ />
222
+ </IressInline\>
223
+ </IressText\>
224
+ <IressText\>
225
+ <h2\>
226
+ lg </h2\>
227
+ <IressInline gutter\="lg"\>
228
+ <IressPlaceholder
229
+ style\={{
230
+ minHeight: '50px'
231
+ }}
232
+ width\="50"
233
+ />
234
+ <IressPlaceholder
235
+ style\={{
236
+ minHeight: '50px'
237
+ }}
238
+ width\="50"
239
+ />
240
+ <IressPlaceholder
241
+ style\={{
242
+ minHeight: '50px'
243
+ }}
244
+ width\="50"
245
+ />
246
+ <IressPlaceholder
247
+ style\={{
248
+ minHeight: '50px'
249
+ }}
250
+ width\="50"
251
+ />
252
+ <IressPlaceholder
253
+ style\={{
254
+ minHeight: '50px'
255
+ }}
256
+ width\="50"
257
+ />
258
+ </IressInline\>
259
+ </IressText\>
260
+ <IressText\>
261
+ <h2\>
262
+ xl </h2\>
263
+ <IressInline gutter\="xl"\>
264
+ <IressPlaceholder
265
+ style\={{
266
+ minHeight: '50px'
267
+ }}
268
+ width\="50"
269
+ />
270
+ <IressPlaceholder
271
+ style\={{
272
+ minHeight: '50px'
273
+ }}
274
+ width\="50"
275
+ />
276
+ <IressPlaceholder
277
+ style\={{
278
+ minHeight: '50px'
279
+ }}
280
+ width\="50"
281
+ />
282
+ <IressPlaceholder
283
+ style\={{
284
+ minHeight: '50px'
285
+ }}
286
+ width\="50"
287
+ />
288
+ <IressPlaceholder
289
+ style\={{
290
+ minHeight: '50px'
291
+ }}
292
+ width\="50"
293
+ />
294
+ </IressInline\>
295
+ </IressText\>
296
+ </IressStack\>
297
+
298
+ Copy
299
+
300
+ ### [](#responsive-gutter)Responsive gutter
301
+
302
+ The `gutter` prop can take an object that takes five key/value pairs that correlate with the IDS breakpoints.
303
+
304
+ Current breakpoint: **xl** breakpoint (1200px - 1499px).
305
+
306
+ `gutter={{"xs":"xs","sm":"sm","md":"md"}}`
307
+
308
+ Hide code
309
+
310
+ \[data-radix-scroll-area-viewport\] { scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; } \[data-radix-scroll-area-viewport\]::-webkit-scrollbar { display: none; } :where(\[data-radix-scroll-area-viewport\]) { display: flex; flex-direction: column; align-items: stretch; } :where(\[data-radix-scroll-area-content\]) { flex-grow: 1; }
311
+
312
+ <IressStack gutter\="md"\>
313
+ <IressPanel\>
314
+ <p\>
315
+ Current breakpoint:{' '}
316
+ <CurrentBreakpoint />
317
+ . </p\>
318
+ <p\>
319
+ <code\>
320
+ {\`gutter={{"xs":"xs","sm":"sm","md":"md"}}\`}
321
+ </code\>
322
+ </p\>
323
+ </IressPanel\>
324
+ <IressInline
325
+ gutter\={{
326
+ md: 'md',
327
+ sm: 'sm',
328
+ xs: 'xs'
329
+ }}
330
+ \>
331
+ <IressPlaceholder
332
+ style\={{
333
+ minHeight: '50px'
334
+ }}
335
+ width\="50"
336
+ />
337
+ <IressPlaceholder
338
+ style\={{
339
+ minHeight: '50px'
340
+ }}
341
+ width\="50"
342
+ />
343
+ <IressPlaceholder
344
+ style\={{
345
+ minHeight: '50px'
346
+ }}
347
+ width\="50"
348
+ />
349
+ <IressPlaceholder
350
+ style\={{
351
+ minHeight: '50px'
352
+ }}
353
+ width\="50"
354
+ />
355
+ <IressPlaceholder
356
+ style\={{
357
+ minHeight: '50px'
358
+ }}
359
+ width\="50"
360
+ />
361
+ </IressInline\>
362
+ </IressStack\>
363
+
364
+ Copy
365
+
366
+ ### [](#horizontal-align)Horizontal align
367
+
368
+ Horizontal alignment of the children is controlled by the `horizontalAlign` prop. It defaults to left and can be set to the following:
369
+
370
+ * `around` - space is distributed so each direct child has the same space on the left and on the right. This means that the gap between children is twice as large as the gap between the first / last items and the edges of the container, because the gap between children is comprised one child's spacing right plus the next child's spacing left.
371
+ * `between` - space is distributed evenly between direct children, but the first and last children sit tight to the edges of the container.
372
+ * `center` - children are aligned center, similar to `text-align: center`.
373
+ * `evenly` - space is distributed evenly between direct children.
374
+ * `left` - children are aligned left, similar to `text-align: left`.
375
+ * `right` - children are aligned right, similar to `text-align: right`.
376
+
377
+ around
378
+ ------
379
+
380
+ between
381
+ -------
382
+
383
+ center
384
+ ------
385
+
386
+ evenly
387
+ ------
388
+
389
+ left
390
+ ----
391
+
392
+ right
393
+ -----
394
+
395
+ Hide code
396
+
397
+ \[data-radix-scroll-area-viewport\] { scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; } \[data-radix-scroll-area-viewport\]::-webkit-scrollbar { display: none; } :where(\[data-radix-scroll-area-viewport\]) { display: flex; flex-direction: column; align-items: stretch; } :where(\[data-radix-scroll-area-content\]) { flex-grow: 1; }
398
+
399
+ <IressContainer\>
400
+ <IressStack gutter\="xl"\>
401
+ <IressText\>
402
+ <h2\>
403
+ around </h2\>
404
+ <IressInline
405
+ gutter\="sm"
406
+ horizontalAlign\="around"
407
+ \>
408
+ <IressPlaceholder
409
+ style\={{
410
+ minHeight: '50px'
411
+ }}
412
+ width\="50"
413
+ />
414
+ <IressPlaceholder
415
+ style\={{
416
+ minHeight: '50px'
417
+ }}
418
+ width\="50"
419
+ />
420
+ <IressPlaceholder
421
+ style\={{
422
+ minHeight: '50px'
423
+ }}
424
+ width\="50"
425
+ />
426
+ <IressPlaceholder
427
+ style\={{
428
+ minHeight: '50px'
429
+ }}
430
+ width\="50"
431
+ />
432
+ <IressPlaceholder
433
+ style\={{
434
+ minHeight: '50px'
435
+ }}
436
+ width\="50"
437
+ />
438
+ </IressInline\>
439
+ </IressText\>
440
+ <IressText\>
441
+ <h2\>
442
+ between </h2\>
443
+ <IressInline
444
+ gutter\="sm"
445
+ horizontalAlign\="between"
446
+ \>
447
+ <IressPlaceholder
448
+ style\={{
449
+ minHeight: '50px'
450
+ }}
451
+ width\="50"
452
+ />
453
+ <IressPlaceholder
454
+ style\={{
455
+ minHeight: '50px'
456
+ }}
457
+ width\="50"
458
+ />
459
+ <IressPlaceholder
460
+ style\={{
461
+ minHeight: '50px'
462
+ }}
463
+ width\="50"
464
+ />
465
+ <IressPlaceholder
466
+ style\={{
467
+ minHeight: '50px'
468
+ }}
469
+ width\="50"
470
+ />
471
+ <IressPlaceholder
472
+ style\={{
473
+ minHeight: '50px'
474
+ }}
475
+ width\="50"
476
+ />
477
+ </IressInline\>
478
+ </IressText\>
479
+ <IressText\>
480
+ <h2\>
481
+ center </h2\>
482
+ <IressInline
483
+ gutter\="sm"
484
+ horizontalAlign\="center"
485
+ \>
486
+ <IressPlaceholder
487
+ style\={{
488
+ minHeight: '50px'
489
+ }}
490
+ width\="50"
491
+ />
492
+ <IressPlaceholder
493
+ style\={{
494
+ minHeight: '50px'
495
+ }}
496
+ width\="50"
497
+ />
498
+ <IressPlaceholder
499
+ style\={{
500
+ minHeight: '50px'
501
+ }}
502
+ width\="50"
503
+ />
504
+ <IressPlaceholder
505
+ style\={{
506
+ minHeight: '50px'
507
+ }}
508
+ width\="50"
509
+ />
510
+ <IressPlaceholder
511
+ style\={{
512
+ minHeight: '50px'
513
+ }}
514
+ width\="50"
515
+ />
516
+ </IressInline\>
517
+ </IressText\>
518
+ <IressText\>
519
+ <h2\>
520
+ evenly </h2\>
521
+ <IressInline
522
+ gutter\="sm"
523
+ horizontalAlign\="evenly"
524
+ \>
525
+ <IressPlaceholder
526
+ style\={{
527
+ minHeight: '50px'
528
+ }}
529
+ width\="50"
530
+ />
531
+ <IressPlaceholder
532
+ style\={{
533
+ minHeight: '50px'
534
+ }}
535
+ width\="50"
536
+ />
537
+ <IressPlaceholder
538
+ style\={{
539
+ minHeight: '50px'
540
+ }}
541
+ width\="50"
542
+ />
543
+ <IressPlaceholder
544
+ style\={{
545
+ minHeight: '50px'
546
+ }}
547
+ width\="50"
548
+ />
549
+ <IressPlaceholder
550
+ style\={{
551
+ minHeight: '50px'
552
+ }}
553
+ width\="50"
554
+ />
555
+ </IressInline\>
556
+ </IressText\>
557
+ <IressText\>
558
+ <h2\>
559
+ left </h2\>
560
+ <IressInline
561
+ gutter\="sm"
562
+ horizontalAlign\="left"
563
+ \>
564
+ <IressPlaceholder
565
+ style\={{
566
+ minHeight: '50px'
567
+ }}
568
+ width\="50"
569
+ />
570
+ <IressPlaceholder
571
+ style\={{
572
+ minHeight: '50px'
573
+ }}
574
+ width\="50"
575
+ />
576
+ <IressPlaceholder
577
+ style\={{
578
+ minHeight: '50px'
579
+ }}
580
+ width\="50"
581
+ />
582
+ <IressPlaceholder
583
+ style\={{
584
+ minHeight: '50px'
585
+ }}
586
+ width\="50"
587
+ />
588
+ <IressPlaceholder
589
+ style\={{
590
+ minHeight: '50px'
591
+ }}
592
+ width\="50"
593
+ />
594
+ </IressInline\>
595
+ </IressText\>
596
+ <IressText\>
597
+ <h2\>
598
+ right </h2\>
599
+ <IressInline
600
+ gutter\="sm"
601
+ horizontalAlign\="right"
602
+ \>
603
+ <IressPlaceholder
604
+ style\={{
605
+ minHeight: '50px'
606
+ }}
607
+ width\="50"
608
+ />
609
+ <IressPlaceholder
610
+ style\={{
611
+ minHeight: '50px'
612
+ }}
613
+ width\="50"
614
+ />
615
+ <IressPlaceholder
616
+ style\={{
617
+ minHeight: '50px'
618
+ }}
619
+ width\="50"
620
+ />
621
+ <IressPlaceholder
622
+ style\={{
623
+ minHeight: '50px'
624
+ }}
625
+ width\="50"
626
+ />
627
+ <IressPlaceholder
628
+ style\={{
629
+ minHeight: '50px'
630
+ }}
631
+ width\="50"
632
+ />
633
+ </IressInline\>
634
+ </IressText\>
635
+ </IressStack\>
636
+ </IressContainer\>
637
+
638
+ Copy
639
+
640
+ ### [](#vertical-align)Vertical align
641
+
642
+ Vertical alignment of the children is controlled by the `verticalAlign` prop. It defaults to top and can be set to the following:
643
+
644
+ * `bottom` - children are aligned to the bottom of the container.
645
+ * `middle` - children are aligned to the middle of the container.
646
+ * `stretch` - each direct child stretches to the full height of the inline container.
647
+ * `top` - children are aligned to the top of the container.
648
+
649
+ top
650
+ ---
651
+
652
+ middle
653
+ ------
654
+
655
+ bottom
656
+ ------
657
+
658
+ stretch
659
+ -------
660
+
661
+ Hide code
662
+
663
+ \[data-radix-scroll-area-viewport\] { scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; } \[data-radix-scroll-area-viewport\]::-webkit-scrollbar { display: none; } :where(\[data-radix-scroll-area-viewport\]) { display: flex; flex-direction: column; align-items: stretch; } :where(\[data-radix-scroll-area-content\]) { flex-grow: 1; }
664
+
665
+ <IressContainer\>
666
+ <IressStack gutter\="xl"\>
667
+ <IressText align\="center"\>
668
+ <h2\>
669
+ top </h2\>
670
+ <IressInline
671
+ gutter\="sm"
672
+ horizontalAlign\="center"
673
+ verticalAlign\="top"
674
+ \>
675
+ <IressPlaceholder
676
+ style\={{
677
+ minHeight: '30px'
678
+ }}
679
+ width\="50"
680
+ />
681
+ <IressPlaceholder
682
+ style\={{
683
+ minHeight: '50px'
684
+ }}
685
+ width\="50"
686
+ />
687
+ <IressPlaceholder
688
+ style\={{
689
+ minHeight: '80px'
690
+ }}
691
+ width\="50"
692
+ />
693
+ <IressPlaceholder
694
+ style\={{
695
+ minHeight: '60px'
696
+ }}
697
+ width\="50"
698
+ />
699
+ <IressPlaceholder
700
+ style\={{
701
+ minHeight: '10px'
702
+ }}
703
+ width\="50"
704
+ />
705
+ </IressInline\>
706
+ </IressText\>
707
+ <IressText align\="center"\>
708
+ <h2\>
709
+ middle </h2\>
710
+ <IressInline
711
+ gutter\="sm"
712
+ horizontalAlign\="center"
713
+ verticalAlign\="middle"
714
+ \>
715
+ <IressPlaceholder
716
+ style\={{
717
+ minHeight: '30px'
718
+ }}
719
+ width\="50"
720
+ />
721
+ <IressPlaceholder
722
+ style\={{
723
+ minHeight: '50px'
724
+ }}
725
+ width\="50"
726
+ />
727
+ <IressPlaceholder
728
+ style\={{
729
+ minHeight: '80px'
730
+ }}
731
+ width\="50"
732
+ />
733
+ <IressPlaceholder
734
+ style\={{
735
+ minHeight: '60px'
736
+ }}
737
+ width\="50"
738
+ />
739
+ <IressPlaceholder
740
+ style\={{
741
+ minHeight: '10px'
742
+ }}
743
+ width\="50"
744
+ />
745
+ </IressInline\>
746
+ </IressText\>
747
+ <IressText align\="center"\>
748
+ <h2\>
749
+ bottom </h2\>
750
+ <IressInline
751
+ gutter\="sm"
752
+ horizontalAlign\="center"
753
+ verticalAlign\="bottom"
754
+ \>
755
+ <IressPlaceholder
756
+ style\={{
757
+ minHeight: '30px'
758
+ }}
759
+ width\="50"
760
+ />
761
+ <IressPlaceholder
762
+ style\={{
763
+ minHeight: '50px'
764
+ }}
765
+ width\="50"
766
+ />
767
+ <IressPlaceholder
768
+ style\={{
769
+ minHeight: '80px'
770
+ }}
771
+ width\="50"
772
+ />
773
+ <IressPlaceholder
774
+ style\={{
775
+ minHeight: '60px'
776
+ }}
777
+ width\="50"
778
+ />
779
+ <IressPlaceholder
780
+ style\={{
781
+ minHeight: '10px'
782
+ }}
783
+ width\="50"
784
+ />
785
+ </IressInline\>
786
+ </IressText\>
787
+ <IressText align\="center"\>
788
+ <h2\>
789
+ stretch </h2\>
790
+ <IressInline
791
+ gutter\="sm"
792
+ horizontalAlign\="center"
793
+ verticalAlign\="stretch"
794
+ \>
795
+ <IressPlaceholder
796
+ style\={{
797
+ minHeight: '30px'
798
+ }}
799
+ width\="50"
800
+ />
801
+ <IressPlaceholder
802
+ style\={{
803
+ minHeight: '50px'
804
+ }}
805
+ width\="50"
806
+ />
807
+ <IressPlaceholder
808
+ style\={{
809
+ minHeight: '80px'
810
+ }}
811
+ width\="50"
812
+ />
813
+ <IressPlaceholder
814
+ style\={{
815
+ minHeight: '60px'
816
+ }}
817
+ width\="50"
818
+ />
819
+ <IressPlaceholder
820
+ style\={{
821
+ minHeight: '10px'
822
+ }}
823
+ width\="50"
824
+ />
825
+ </IressInline\>
826
+ </IressText\>
827
+ </IressStack\>
828
+ </IressContainer\>
829
+
830
+ Copy
831
+
832
+ ### [](#no-wrap)No wrap
833
+
834
+ The `IressInline` component automatically wraps children. There may be some scenarios where you do not require children to be wrapped. For this you can use the `noWrap` prop.
835
+
836
+ His head is gone, it is like it is been erased... Erased from existence. That was the day I invented time travel. I remember it vividly. I was standing on the edge of my toilet hanging a clock, the porces was wet, I slipped, hit my head on the edge of the sink. And when I came to I had a revelation, a picture, a picture in my head, a picture of this. This is what makes time travel possible. The flux capacitor.
837
+
838
+ Hide code
839
+
840
+ \[data-radix-scroll-area-viewport\] { scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; } \[data-radix-scroll-area-viewport\]::-webkit-scrollbar { display: none; } :where(\[data-radix-scroll-area-viewport\]) { display: flex; flex-direction: column; align-items: stretch; } :where(\[data-radix-scroll-area-content\]) { flex-grow: 1; }
841
+
842
+ <IressInline
843
+ gutter\="lg"
844
+ noWrap
845
+ \>
846
+ <IressPlaceholder
847
+ height\="100px"
848
+ style\={{
849
+ minWidth: '100px'
850
+ }}
851
+ width\="100px"
852
+ />
853
+ <IressText\>
854
+ His head is gone, it is like it is been erased... Erased from existence. That was the day I invented time travel. I remember it vividly. I was standing on the edge of my toilet hanging a clock, the porces was wet, I slipped, hit my head on the edge of the sink. And when I came to I had a revelation, a picture, a picture in my head, a picture of this. This is what makes time travel possible. The flux capacitor. </IressText\>
855
+ </IressInline\>
856
+
857
+ Copy
858
+
859
+ On this page
860
+
861
+ * [Overview](#overview)
862
+ * [Props](#props)
863
+ * [Examples](#examples)
864
+ * [Gutter](#gutter)
865
+ * [Responsive gutter](#responsive-gutter)
866
+ * [Horizontal align](#horizontal-align)
867
+ * [Vertical align](#vertical-align)
868
+ * [No wrap](#no-wrap)