@riverty/web-components 5.4.0 → 5.6.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 (214) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/README.md +3 -3
  3. package/custom-elements.json +27 -15
  4. package/dist/cjs/{index-BnETQtSf.js → index-DJ4H_bFj.js} +382 -5
  5. package/dist/cjs/loader.cjs.js +2 -2
  6. package/dist/cjs/r-accordion-item.cjs.entry.js +1 -1
  7. package/dist/cjs/r-accordion-panel.cjs.entry.js +1 -1
  8. package/dist/cjs/r-accordion-section.cjs.entry.js +1 -1
  9. package/dist/cjs/r-accordion-trigger.cjs.entry.js +1 -1
  10. package/dist/cjs/r-accordion.cjs.entry.js +2 -2
  11. package/dist/cjs/r-alert.cjs.entry.js +1 -1
  12. package/dist/cjs/r-badge.cjs.entry.js +1 -1
  13. package/dist/cjs/r-button.cjs.entry.js +2 -2
  14. package/dist/cjs/r-checkbox-group.cjs.entry.js +1 -1
  15. package/dist/cjs/r-checkbox.cjs.entry.js +5 -5
  16. package/dist/cjs/r-design-system-devtools.cjs.entry.js +1 -1
  17. package/dist/cjs/r-dialog.cjs.entry.js +8 -10
  18. package/dist/cjs/r-hint_3.cjs.entry.js +136 -38
  19. package/dist/cjs/r-icon-button.cjs.entry.js +4 -4
  20. package/dist/cjs/r-icon.cjs.entry.js +3 -3
  21. package/dist/cjs/r-input-code.cjs.entry.js +1 -1
  22. package/dist/cjs/r-input-date.cjs.entry.js +7 -7
  23. package/dist/cjs/r-input-password.cjs.entry.js +3 -3
  24. package/dist/cjs/r-input-phone-number.cjs.entry.js +5 -5
  25. package/dist/cjs/r-input.cjs.entry.js +19 -6
  26. package/dist/cjs/r-list-item.cjs.entry.js +5 -6
  27. package/dist/cjs/r-pagination.cjs.entry.js +1 -1
  28. package/dist/cjs/r-panel.cjs.entry.js +1 -1
  29. package/dist/cjs/r-popover-action.cjs.entry.js +1 -1
  30. package/dist/cjs/r-popover-content.cjs.entry.js +1 -1
  31. package/dist/cjs/r-popover-headline.cjs.entry.js +1 -1
  32. package/dist/cjs/r-popover-trigger.cjs.entry.js +1 -1
  33. package/dist/cjs/r-popover.cjs.entry.js +1 -1
  34. package/dist/cjs/r-progress-bar.cjs.entry.js +1 -1
  35. package/dist/cjs/r-radio-button-description.cjs.entry.js +1 -1
  36. package/dist/cjs/r-radio-button-leading.cjs.entry.js +1 -1
  37. package/dist/cjs/r-radio-button-title.cjs.entry.js +1 -1
  38. package/dist/cjs/r-radio-button-trailing.cjs.entry.js +1 -1
  39. package/dist/cjs/r-radio-button.cjs.entry.js +1 -1
  40. package/dist/cjs/r-radio-group.cjs.entry.js +7 -7
  41. package/dist/cjs/r-select-option.cjs.entry.js +1 -1
  42. package/dist/cjs/r-select.cjs.entry.js +3 -3
  43. package/dist/cjs/r-skip-link.cjs.entry.js +1 -1
  44. package/dist/cjs/r-stepper-item.cjs.entry.js +1 -1
  45. package/dist/cjs/r-stepper.cjs.entry.js +1 -1
  46. package/dist/cjs/r-tab-panel.cjs.entry.js +1 -1
  47. package/dist/cjs/r-tab.cjs.entry.js +1 -1
  48. package/dist/cjs/r-tabs-list.cjs.entry.js +1 -1
  49. package/dist/cjs/r-tabs.cjs.entry.js +1 -1
  50. package/dist/cjs/r-textarea.cjs.entry.js +1 -1
  51. package/dist/cjs/r-toast-group.cjs.entry.js +15 -5
  52. package/dist/cjs/r-toast.cjs.entry.js +10 -11
  53. package/dist/cjs/web-components.cjs.js +2 -2
  54. package/dist/collection/components/accordion/accordion.js +1 -2
  55. package/dist/collection/components/button/button.js +1 -2
  56. package/dist/collection/components/checkbox/checkbox.js +4 -5
  57. package/dist/collection/components/dialog/dialog.css +1 -1
  58. package/dist/collection/components/dialog/dialog.js +23 -8
  59. package/dist/collection/components/icon/bundled-icons/riverty-kit.json +1 -1
  60. package/dist/collection/components/icon/icon.js +2 -2
  61. package/dist/collection/components/icon/riverty-kit.js +1 -1
  62. package/dist/collection/components/icon-button/icon-button.js +3 -4
  63. package/dist/collection/components/input/input.js +37 -5
  64. package/dist/collection/components/input-date/input-date.js +7 -7
  65. package/dist/collection/components/input-password/input-password.js +3 -3
  66. package/dist/collection/components/input-phone-number/input-phone-number.js +5 -5
  67. package/dist/collection/components/label/label.js +4 -4
  68. package/dist/collection/components/list-item/list-item/list-item.css +19 -11
  69. package/dist/collection/components/list-item/list-item/list-item.js +41 -4
  70. package/dist/collection/components/radio-group/radio-group.js +7 -7
  71. package/dist/collection/components/select/select.js +3 -4
  72. package/dist/collection/components/textarea/textarea.js +1 -1
  73. package/dist/collection/components/toast/toast.css +8 -2
  74. package/dist/collection/components/toast/toast.js +10 -11
  75. package/dist/collection/components/toast-group/toast-group.css +14 -13
  76. package/dist/collection/components/toast-group/toast-group.js +14 -4
  77. package/dist/collection/components/tooltip/tooltip.css +6 -71
  78. package/dist/collection/components/tooltip/tooltip.js +135 -33
  79. package/dist/esm/{index-CTxpqopm.js → index-Da7qOBFr.js} +382 -5
  80. package/dist/esm/loader.js +3 -3
  81. package/dist/esm/r-accordion-item.entry.js +1 -1
  82. package/dist/esm/r-accordion-panel.entry.js +1 -1
  83. package/dist/esm/r-accordion-section.entry.js +1 -1
  84. package/dist/esm/r-accordion-trigger.entry.js +1 -1
  85. package/dist/esm/r-accordion.entry.js +2 -2
  86. package/dist/esm/r-alert.entry.js +1 -1
  87. package/dist/esm/r-badge.entry.js +1 -1
  88. package/dist/esm/r-button.entry.js +2 -2
  89. package/dist/esm/r-checkbox-group.entry.js +1 -1
  90. package/dist/esm/r-checkbox.entry.js +5 -5
  91. package/dist/esm/r-design-system-devtools.entry.js +1 -1
  92. package/dist/esm/r-dialog.entry.js +8 -10
  93. package/dist/esm/r-hint_3.entry.js +136 -38
  94. package/dist/esm/r-icon-button.entry.js +4 -4
  95. package/dist/esm/r-icon.entry.js +3 -3
  96. package/dist/esm/r-input-code.entry.js +1 -1
  97. package/dist/esm/r-input-date.entry.js +7 -7
  98. package/dist/esm/r-input-password.entry.js +3 -3
  99. package/dist/esm/r-input-phone-number.entry.js +5 -5
  100. package/dist/esm/r-input.entry.js +19 -6
  101. package/dist/esm/r-list-item.entry.js +5 -6
  102. package/dist/esm/r-pagination.entry.js +1 -1
  103. package/dist/esm/r-panel.entry.js +1 -1
  104. package/dist/esm/r-popover-action.entry.js +1 -1
  105. package/dist/esm/r-popover-content.entry.js +1 -1
  106. package/dist/esm/r-popover-headline.entry.js +1 -1
  107. package/dist/esm/r-popover-trigger.entry.js +1 -1
  108. package/dist/esm/r-popover.entry.js +1 -1
  109. package/dist/esm/r-progress-bar.entry.js +1 -1
  110. package/dist/esm/r-radio-button-description.entry.js +1 -1
  111. package/dist/esm/r-radio-button-leading.entry.js +1 -1
  112. package/dist/esm/r-radio-button-title.entry.js +1 -1
  113. package/dist/esm/r-radio-button-trailing.entry.js +1 -1
  114. package/dist/esm/r-radio-button.entry.js +1 -1
  115. package/dist/esm/r-radio-group.entry.js +7 -7
  116. package/dist/esm/r-select-option.entry.js +1 -1
  117. package/dist/esm/r-select.entry.js +3 -3
  118. package/dist/esm/r-skip-link.entry.js +1 -1
  119. package/dist/esm/r-stepper-item.entry.js +1 -1
  120. package/dist/esm/r-stepper.entry.js +1 -1
  121. package/dist/esm/r-tab-panel.entry.js +1 -1
  122. package/dist/esm/r-tab.entry.js +1 -1
  123. package/dist/esm/r-tabs-list.entry.js +1 -1
  124. package/dist/esm/r-tabs.entry.js +1 -1
  125. package/dist/esm/r-textarea.entry.js +1 -1
  126. package/dist/esm/r-toast-group.entry.js +15 -5
  127. package/dist/esm/r-toast.entry.js +10 -11
  128. package/dist/esm/web-components.js +3 -3
  129. package/dist/types/components/accordion/accordion.d.ts +0 -1
  130. package/dist/types/components/button/button.d.ts +0 -1
  131. package/dist/types/components/checkbox/checkbox.d.ts +0 -1
  132. package/dist/types/components/dialog/dialog.d.ts +6 -1
  133. package/dist/types/components/icon/exports.d.ts +1 -0
  134. package/dist/types/components/icon/icon-data.d.ts +1 -0
  135. package/dist/types/components/icon/icon.d.ts +1 -1
  136. package/dist/types/components/icon/riverty-kit.d.ts +1 -0
  137. package/dist/types/components/icon-button/icon-button.d.ts +0 -1
  138. package/dist/types/components/input/input.d.ts +6 -0
  139. package/dist/types/components/input-date/input-date.d.ts +1 -1
  140. package/dist/types/components/input-password/input-password.d.ts +1 -1
  141. package/dist/types/components/input-phone-number/input-phone-number.d.ts +1 -1
  142. package/dist/types/components/label/label.d.ts +1 -1
  143. package/dist/types/components/list-item/list-item/list-item.d.ts +6 -1
  144. package/dist/types/components/radio-group/radio-group.d.ts +1 -1
  145. package/dist/types/components/select/select.d.ts +1 -2
  146. package/dist/types/components/textarea/textarea.d.ts +3 -3
  147. package/dist/types/components/toast/toast.d.ts +1 -3
  148. package/dist/types/components/toast-group/toast-group.d.ts +2 -0
  149. package/dist/types/components/tooltip/tooltip.d.ts +12 -4
  150. package/dist/types/components.d.ts +63 -40
  151. package/dist/web-components/bundled-icons/riverty-kit.json +1 -1
  152. package/dist/web-components/{p-aecd025b.entry.js → p-00ca474f.entry.js} +1 -1
  153. package/dist/web-components/{p-9c40f9cd.entry.js → p-0bb04d79.entry.js} +1 -1
  154. package/dist/web-components/{p-48dfb286.entry.js → p-1ae69897.entry.js} +1 -1
  155. package/dist/web-components/{p-4cf01f30.entry.js → p-1c2497de.entry.js} +1 -1
  156. package/dist/web-components/{p-03ff9abf.entry.js → p-230e44ae.entry.js} +1 -1
  157. package/dist/web-components/p-29a1e75f.entry.js +1 -0
  158. package/dist/web-components/{p-1157b7f4.entry.js → p-2b2f581a.entry.js} +1 -1
  159. package/dist/web-components/{p-0a424361.entry.js → p-3b4e3faf.entry.js} +1 -1
  160. package/dist/web-components/p-3bc93d65.entry.js +1 -0
  161. package/dist/web-components/{p-dc93ed55.entry.js → p-429213ea.entry.js} +1 -1
  162. package/dist/web-components/{p-c7a9da98.entry.js → p-44ae9f33.entry.js} +1 -1
  163. package/dist/web-components/{p-c60294d4.entry.js → p-44be9992.entry.js} +1 -1
  164. package/dist/web-components/{p-66c454ce.entry.js → p-4652635a.entry.js} +1 -1
  165. package/dist/web-components/{p-e50503d0.entry.js → p-4bd3e077.entry.js} +1 -1
  166. package/dist/web-components/{p-89ff32dc.entry.js → p-4e3df002.entry.js} +1 -1
  167. package/dist/web-components/p-51a5804b.entry.js +1 -0
  168. package/dist/web-components/{p-2d85c0f3.entry.js → p-72c0c0d8.entry.js} +1 -1
  169. package/dist/web-components/{p-e273950c.entry.js → p-72fa1fd1.entry.js} +1 -1
  170. package/dist/web-components/{p-135be1d5.entry.js → p-755cc697.entry.js} +1 -1
  171. package/dist/web-components/{p-e74c363a.entry.js → p-77155630.entry.js} +1 -1
  172. package/dist/web-components/{p-3ea6a1be.entry.js → p-8028c2a9.entry.js} +1 -1
  173. package/dist/web-components/{p-3fc2b23b.entry.js → p-828cb164.entry.js} +1 -1
  174. package/dist/web-components/{p-988a7731.entry.js → p-85a9af42.entry.js} +1 -1
  175. package/dist/web-components/{p-24130cdb.entry.js → p-87f39749.entry.js} +1 -1
  176. package/dist/web-components/{p-c9b2389b.entry.js → p-89136369.entry.js} +1 -1
  177. package/dist/web-components/{p-77dc268e.entry.js → p-8c577cda.entry.js} +1 -1
  178. package/dist/web-components/{p-8d2f4097.entry.js → p-96ddeb7f.entry.js} +1 -1
  179. package/dist/web-components/{p-735da2bb.entry.js → p-9b08e9ee.entry.js} +1 -1
  180. package/dist/web-components/{p-6b7d5236.entry.js → p-9e50120b.entry.js} +1 -1
  181. package/dist/web-components/{p-900923ab.entry.js → p-9eb1f262.entry.js} +1 -1
  182. package/dist/web-components/p-Da7qOBFr.js +2 -0
  183. package/dist/web-components/{p-2394508f.entry.js → p-a022f356.entry.js} +1 -1
  184. package/dist/web-components/{p-df81177e.entry.js → p-a58124c4.entry.js} +1 -1
  185. package/dist/web-components/p-a5be3395.entry.js +1 -0
  186. package/dist/web-components/{p-9891afb8.entry.js → p-a7e7f8fa.entry.js} +1 -1
  187. package/dist/web-components/p-b2cec978.entry.js +1 -0
  188. package/dist/web-components/{p-71d6c4d7.entry.js → p-c7f8e59b.entry.js} +1 -1
  189. package/dist/web-components/{p-f625b739.entry.js → p-c937bd92.entry.js} +1 -1
  190. package/dist/web-components/p-cbcd7699.entry.js +1 -0
  191. package/dist/web-components/{p-fdf70aed.entry.js → p-d3ff65b0.entry.js} +1 -1
  192. package/dist/web-components/p-e0e2f2b2.entry.js +1 -0
  193. package/dist/web-components/{p-8d6a35e3.entry.js → p-e49b1ec3.entry.js} +1 -1
  194. package/dist/web-components/p-e4b66277.entry.js +1 -0
  195. package/dist/web-components/p-e6a31881.entry.js +1 -0
  196. package/dist/web-components/{p-05ba30ba.entry.js → p-f1e22caa.entry.js} +1 -1
  197. package/dist/web-components/p-f6a92287.entry.js +1 -0
  198. package/dist/web-components/p-f770e22b.entry.js +1 -0
  199. package/dist/web-components/p-f7adb875.entry.js +1 -0
  200. package/dist/web-components/web-components.esm.js +1 -1
  201. package/package.json +2 -1
  202. package/dist/web-components/p-0ac858b8.entry.js +0 -1
  203. package/dist/web-components/p-0bb0de18.entry.js +0 -1
  204. package/dist/web-components/p-10724c18.entry.js +0 -1
  205. package/dist/web-components/p-1ed3efd7.entry.js +0 -1
  206. package/dist/web-components/p-20f979ff.entry.js +0 -1
  207. package/dist/web-components/p-31c8388d.entry.js +0 -1
  208. package/dist/web-components/p-333707b2.entry.js +0 -1
  209. package/dist/web-components/p-61f78bf6.entry.js +0 -1
  210. package/dist/web-components/p-8f719321.entry.js +0 -1
  211. package/dist/web-components/p-9f583ed1.entry.js +0 -1
  212. package/dist/web-components/p-CTxpqopm.js +0 -2
  213. package/dist/web-components/p-caca2855.entry.js +0 -1
  214. package/dist/web-components/p-ef0f43e0.entry.js +0 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,38 @@
1
+ ## 5.6.0 (2025-10-23)
2
+
3
+ ### 🚀 Features
4
+
5
+ - **input:** add autofocus property to input component
6
+ - **icon:** ai icon added to Riverty icon set
7
+
8
+ ### 🩹 Fixes
9
+
10
+ - **tooltip:** improve position recalculation for smaller windows
11
+ - **tooltip:** change tooltip width to display cropped content
12
+ - **tooltip:** improve positioning when placed in overflow containers
13
+ - **input:** ensure autofocus behavior is applied on component connection
14
+
15
+
16
+ ## 5.5.0 (2025-10-13)
17
+
18
+ ### 🚀 Features
19
+
20
+ - **input:** enhance setValue method to trigger validation and update reset logic
21
+ - **input:** `type=email` + `pattern` for email with umlauts
22
+ - **toast-group:** change it to scoped, change way of handling slot content change due to it being in a Light DOM
23
+ - **list-item:** bold trailing text if alignment is top
24
+ - **list-item:** `truncateDescription` property added
25
+ - **list-item:** rendering condition for leading slot updated with inclusion of `hideLeadingIcon` property
26
+ - **list-item:** add `hideLeadingIcon` prop to control visibility of leading icon
27
+
28
+ ### 🩹 Fixes
29
+
30
+ - **toast, toast-group:** improve accessibility (adjusted `role`, `aria-hidden`, `aria-live`)
31
+ - **list-item:** remove `text-decoration:none` from slotted anchor styles to avoid accessibility violation
32
+ - **list-item:** `hideLeadingIcon` in render condition, not in css class
33
+ - **dialog:** render header slot with initial empty header content
34
+
35
+
1
36
  ## 5.4.0 (2025-10-06)
2
37
 
3
38
  ### 🚀 Features
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Riverty Design System: Web Components
2
2
 
3
- > Riverty Design System enables teams to efficiently deliver consistent user interfaces through a Riverty-aligned design and development toolkit that promotes reusability.
3
+ > [Riverty](https://riverty.com/), your flexible Payment Companion. 25+ million users, 1+ billion secure transactions.
4
4
 
5
- [riverty.design](https://riverty.design/)
5
+ Riverty Design System: a design and development toolkit tailor-made for Riverty teams and collaborators.
6
6
 
7
- [Component documentation](https://riverty.design/develop/components/) is continually updated on riverty.design.
7
+ [designsystem.riverty.com](https://designsystem.riverty.com/)
@@ -5,7 +5,7 @@
5
5
  "name": "r-accordion",
6
6
  "description": {
7
7
  "kind": "markdown",
8
- "value": "An accordion represents a list of expandable/collapsable content sections with corresponding headers.\n\nBy default, only one section can be expanded, which can be changed by setting the `multiple` attribute. Use accordions when a limited, additional amount of information needs to be shown within a page, or if there is a small space to show content.\n\nEach content section must be wrapped in a `<r-accordion-item>` elements.\n\n[Docs](https://riverty.design/components/accordion)\n\nExample:\n\n```\n<r-accordion>\n <r-accordion-item header=\"Economic health\">\n <p>Economic health is a concept that …</p>\n </r-accordion-item>\n</r-accordion>\n```"
8
+ "value": "An accordion represents a list of expandable/collapsable content sections with corresponding headers.\n\nBy default, only one section can be expanded, which can be changed by setting the `multiple` attribute. Use accordions when a limited, additional amount of information needs to be shown within a page, or if there is a small space to show content.\n\nEach content section must be wrapped in a `<r-accordion-item>` elements.\n\n\nExample:\n\n```\n<r-accordion>\n <r-accordion-item header=\"Economic health\">\n <p>Economic health is a concept that …</p>\n </r-accordion-item>\n</r-accordion>\n```"
9
9
  },
10
10
  "attributes": [
11
11
  {
@@ -328,7 +328,7 @@
328
328
  "name": "r-button",
329
329
  "description": {
330
330
  "kind": "markdown",
331
- "value": "A button can be used by a user to trigger an action. Corresponds to, and is rendered as a,\n[native button](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button).\n\n[Docs](https://riverty.design/components/button)"
331
+ "value": "A button can be used by a user to trigger an action. Corresponds to, and is rendered as a,\n[native button](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button)."
332
332
  },
333
333
  "attributes": [
334
334
  {
@@ -439,7 +439,7 @@
439
439
  "name": "r-checkbox",
440
440
  "description": {
441
441
  "kind": "markdown",
442
- "value": "Checkboxes allow users to select none, one, or multiple items from a list.\n\nOverall behavior is based on native `<input type=\"checkbox\">`\n\n[Docs](https://riverty.design/components/checkbox)"
442
+ "value": "Checkboxes allow users to select none, one, or multiple items from a list.\n\nOverall behavior is based on native `<input type=\"checkbox\">`"
443
443
  },
444
444
  "attributes": [
445
445
  {
@@ -702,7 +702,7 @@
702
702
  "attributes": [
703
703
  {
704
704
  "name": "color",
705
- "description": "Quick way to set display color to one of the\n[Riverty color tokens](https://riverty.design/tokens/#colors)"
705
+ "description": "Quick way to set display color to one of the\nRiverty color tokens"
706
706
  },
707
707
  {
708
708
  "name": "icon-aria-label",
@@ -762,7 +762,7 @@
762
762
  "name": "r-icon-button",
763
763
  "description": {
764
764
  "kind": "markdown",
765
- "value": "An icon button is a button that contains only an icon and is used to trigger an action.\n\n[Docs](https://riverty.design/components/icon-button)"
765
+ "value": "An icon button is a button that contains only an icon and is used to trigger an action."
766
766
  },
767
767
  "attributes": [
768
768
  {
@@ -856,6 +856,10 @@
856
856
  }
857
857
  ]
858
858
  },
859
+ {
860
+ "name": "autofocus",
861
+ "description": "Automatically focus the input when it is first rendered.\nMirrors native `autofocus` attribute behavior. Avoid using multiple times per page."
862
+ },
859
863
  {
860
864
  "name": "bad-input-message",
861
865
  "description": "Custom message for `badInput` (conversion / parsing failure)."
@@ -1243,7 +1247,7 @@
1243
1247
  },
1244
1248
  {
1245
1249
  "name": "tooltip-icon-color",
1246
- "description": "_DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)\nChange color of an icon that triggers tooltip to one of the [Riverty color tokens](https://riverty.design/tokens/#colors)"
1250
+ "description": "_DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)\nChange color of an icon that triggers tooltip to one of the Riverty color tokens"
1247
1251
  },
1248
1252
  {
1249
1253
  "name": "valid",
@@ -1352,7 +1356,7 @@
1352
1356
  },
1353
1357
  {
1354
1358
  "name": "tooltip-icon-color",
1355
- "description": "_DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)\nChange color of an icon that triggers tooltip to one of the [Riverty color tokens](https://riverty.design/tokens/#colors)"
1359
+ "description": "_DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)\nChange color of an icon that triggers tooltip to one of the Riverty color tokens"
1356
1360
  },
1357
1361
  {
1358
1362
  "name": "valid",
@@ -1445,7 +1449,7 @@
1445
1449
  },
1446
1450
  {
1447
1451
  "name": "tooltip-icon-color",
1448
- "description": "_DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)\nChange color of an icon that triggers tooltip to one of the [Riverty color tokens](https://riverty.design/tokens/#colors)"
1452
+ "description": "_DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)\nChange color of an icon that triggers tooltip to one of the Riverty color tokens"
1449
1453
  },
1450
1454
  {
1451
1455
  "name": "valid",
@@ -1482,7 +1486,7 @@
1482
1486
  },
1483
1487
  {
1484
1488
  "name": "tooltip-icon-color",
1485
- "description": "_DEPRECATED_ (This property will be removed in November 2025 release.)\nChange color of an icon that triggers tooltip to one of the [Riverty color tokens](https://riverty.design/tokens/#colors)"
1489
+ "description": "_DEPRECATED_ (This property will be removed in November 2025 release.)\nChange color of an icon that triggers tooltip to one of the Riverty color tokens"
1486
1490
  },
1487
1491
  {
1488
1492
  "name": "tooltip-position",
@@ -1546,6 +1550,10 @@
1546
1550
  "name": "headline",
1547
1551
  "description": "The main text or headline displayed in the text slot (2nd slot) of the list item."
1548
1552
  },
1553
+ {
1554
+ "name": "hide-leading-icon",
1555
+ "description": "Defines if the leading icon shall become hidden."
1556
+ },
1549
1557
  {
1550
1558
  "name": "href",
1551
1559
  "description": "If provided, renders the list item as a link using the <a> tag with the given href attribute."
@@ -1574,6 +1582,10 @@
1574
1582
  "name": "trailing-text",
1575
1583
  "description": "Text displayed in the trailing slot (3rd slot), as an alternative to an icon."
1576
1584
  },
1585
+ {
1586
+ "name": "truncate-description",
1587
+ "description": "When enabled, the description is limited to a single line and truncated with an ellipsis if it overflows."
1588
+ },
1577
1589
  {
1578
1590
  "name": "variant",
1579
1591
  "description": "Controls the style variation of the list item, such as regular or subitem.",
@@ -2022,7 +2034,7 @@
2022
2034
  },
2023
2035
  {
2024
2036
  "name": "tooltip-icon-color",
2025
- "description": "_DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)\nChange color of an icon that triggers tooltip to one of the [Riverty color tokens](https://riverty.design/tokens/#colors)"
2037
+ "description": "_DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)\nChange color of an icon that triggers tooltip to one of the Riverty color tokens"
2026
2038
  },
2027
2039
  {
2028
2040
  "name": "valid",
@@ -2058,7 +2070,7 @@
2058
2070
  "name": "r-select",
2059
2071
  "description": {
2060
2072
  "kind": "markdown",
2061
- "value": "A select allows the user to choose between a set of options.\n\nOverall behavior is based on native `<select>`\n\n[Docs](https://riverty.design/components/select)"
2073
+ "value": "A select allows the user to choose between a set of options.\n\nOverall behavior is based on native `<select>`"
2062
2074
  },
2063
2075
  "attributes": [
2064
2076
  {
@@ -2198,7 +2210,7 @@
2198
2210
  },
2199
2211
  {
2200
2212
  "name": "tooltip-icon-color",
2201
- "description": "_DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)\nChange color of an icon that triggers tooltip to one of the [Riverty color tokens](https://riverty.design/tokens/#colors)"
2213
+ "description": "_DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)\nChange color of an icon that triggers tooltip to one of the Riverty color tokens."
2202
2214
  },
2203
2215
  {
2204
2216
  "name": "trailing-icon",
@@ -2568,7 +2580,7 @@
2568
2580
  },
2569
2581
  {
2570
2582
  "name": "tooltip-icon-color",
2571
- "description": "_DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) * Specifies the color of the tooltip icon\nfrom [Riverty color tokens](https://riverty.design/tokens/#colors) \ndisplayed alongside the label."
2583
+ "description": "_DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)\nSpecifies the color of the tooltip icon from Riverty color tokens.\nDisplayed alongside the label."
2572
2584
  },
2573
2585
  {
2574
2586
  "name": "valid",
@@ -2637,7 +2649,7 @@
2637
2649
  },
2638
2650
  {
2639
2651
  "name": "leading-icon",
2640
- "description": "Specifies an optional icon for the leading slot of the dialog.\nFor options check [Riverty Icons](https://riverty.design/components/icon)"
2652
+ "description": "Specifies an optional icon for the leading slot of the dialog."
2641
2653
  },
2642
2654
  {
2643
2655
  "name": "open",
@@ -2681,7 +2693,7 @@
2681
2693
  },
2682
2694
  {
2683
2695
  "name": "trailing-icon",
2684
- "description": "Specifies an optional icon for the trailing slot of the dialog.\nFor options check [Riverty Icons](https://riverty.design/components/icon)"
2696
+ "description": "Specifies an optional icon for the trailing slot of the dialog."
2685
2697
  }
2686
2698
  ]
2687
2699
  },