@riverty/web-components 5.8.0 → 6.1.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 (281) hide show
  1. package/CHANGELOG.md +107 -0
  2. package/custom-elements.json +215 -362
  3. package/dist/cjs/index-DJ4H_bFj.js +6 -10
  4. package/dist/cjs/loader.cjs.js +1 -1
  5. package/dist/cjs/r-accordion-panel.cjs.entry.js +1 -1
  6. package/dist/cjs/r-accordion-section.cjs.entry.js +1 -1
  7. package/dist/cjs/r-accordion-trigger.cjs.entry.js +5 -35
  8. package/dist/cjs/r-accordion.cjs.entry.js +3 -7
  9. package/dist/cjs/r-alert.cjs.entry.js +26 -11
  10. package/dist/cjs/r-badge.cjs.entry.js +1 -1
  11. package/dist/cjs/r-button.cjs.entry.js +1 -1
  12. package/dist/cjs/r-checkbox-group.cjs.entry.js +1 -11
  13. package/dist/cjs/r-checkbox.cjs.entry.js +76 -75
  14. package/dist/cjs/r-dialog.cjs.entry.js +3 -11
  15. package/dist/cjs/r-hint_2.cjs.entry.js +50 -0
  16. package/dist/cjs/{r-hint_3.cjs.entry.js → r-icon-button_2.cjs.entry.js} +64 -51
  17. package/dist/cjs/r-icon.cjs.entry.js +1 -1
  18. package/dist/cjs/r-input-code.cjs.entry.js +112 -17
  19. package/dist/cjs/r-input-date.cjs.entry.js +8 -14
  20. package/dist/cjs/r-input-password.cjs.entry.js +16 -8
  21. package/dist/cjs/r-input-phone-number.cjs.entry.js +7 -12
  22. package/dist/cjs/r-input.cjs.entry.js +90 -42
  23. package/dist/cjs/r-list-item.cjs.entry.js +20 -19
  24. package/dist/cjs/r-panel.cjs.entry.js +5 -5
  25. package/dist/cjs/r-popover-action.cjs.entry.js +1 -1
  26. package/dist/cjs/r-popover-content.cjs.entry.js +1 -1
  27. package/dist/cjs/r-popover-headline.cjs.entry.js +1 -1
  28. package/dist/cjs/r-popover-trigger.cjs.entry.js +1 -1
  29. package/dist/cjs/r-popover.cjs.entry.js +3 -3
  30. package/dist/cjs/r-progress-bar.cjs.entry.js +1 -1
  31. package/dist/cjs/r-radio-button-description.cjs.entry.js +1 -1
  32. package/dist/cjs/r-radio-button-leading.cjs.entry.js +1 -1
  33. package/dist/cjs/r-radio-button-title.cjs.entry.js +1 -1
  34. package/dist/cjs/r-radio-button-trailing.cjs.entry.js +1 -1
  35. package/dist/cjs/r-radio-button.cjs.entry.js +29 -12
  36. package/dist/cjs/r-radio-group.cjs.entry.js +18 -22
  37. package/dist/cjs/r-select-option.cjs.entry.js +1 -1
  38. package/dist/cjs/r-select.cjs.entry.js +6 -24
  39. package/dist/cjs/r-skip-link.cjs.entry.js +1 -1
  40. package/dist/cjs/r-stepper-item.cjs.entry.js +3 -3
  41. package/dist/cjs/r-stepper.cjs.entry.js +2 -2
  42. package/dist/cjs/r-tab-panel.cjs.entry.js +1 -1
  43. package/dist/cjs/r-tab.cjs.entry.js +6 -2
  44. package/dist/cjs/r-tabs-list.cjs.entry.js +160 -2
  45. package/dist/cjs/r-tabs.cjs.entry.js +34 -6
  46. package/dist/cjs/r-textarea.cjs.entry.js +7 -19
  47. package/dist/cjs/r-toast-group.cjs.entry.js +2 -2
  48. package/dist/cjs/r-toast.cjs.entry.js +31 -11
  49. package/dist/cjs/web-components.cjs.js +1 -1
  50. package/dist/collection/collection-manifest.json +0 -1
  51. package/dist/collection/components/accordion/accordion.css +0 -2
  52. package/dist/collection/components/accordion/accordion.js +4 -8
  53. package/dist/collection/components/accordion/exports.js +1 -1
  54. package/dist/collection/components/accordion-panel/accordion-panel.js +1 -1
  55. package/dist/collection/components/accordion-section/accordion-section.js +1 -1
  56. package/dist/collection/components/accordion-trigger/accordion-trigger.css +0 -4
  57. package/dist/collection/components/accordion-trigger/accordion-trigger.js +4 -215
  58. package/dist/collection/components/alert/alert.css +8 -3
  59. package/dist/collection/components/alert/alert.js +48 -10
  60. package/dist/collection/components/badge/badge.js +1 -1
  61. package/dist/collection/components/button/button.js +1 -1
  62. package/dist/collection/components/checkbox/checkbox.js +80 -98
  63. package/dist/collection/components/checkbox-group/checkbox-group.js +1 -50
  64. package/dist/collection/components/dialog/dialog.css +1 -3
  65. package/dist/collection/components/dialog/dialog.js +2 -10
  66. package/dist/collection/components/hint/hint.js +2 -2
  67. package/dist/collection/components/icon/bundled-icons/riverty-kit.json +1 -1
  68. package/dist/collection/components/icon/riverty-kit.js +1 -1
  69. package/dist/collection/components/icon-button/icon-button.js +22 -3
  70. package/dist/collection/components/input/exports.js +2 -0
  71. package/dist/collection/components/input/input.css +3 -0
  72. package/dist/collection/components/input/input.js +233 -371
  73. package/dist/collection/components/input-code/exports.js +2 -0
  74. package/dist/collection/components/input-code/input-code.js +294 -26
  75. package/dist/collection/components/input-date/input-date.js +8 -77
  76. package/dist/collection/components/input-password/exports.js +1 -0
  77. package/dist/collection/components/input-password/input-password.css +1 -0
  78. package/dist/collection/components/input-password/input-password.js +195 -70
  79. package/dist/collection/components/input-phone-number/input-phone-number.js +7 -75
  80. package/dist/collection/components/label/label.js +3 -113
  81. package/dist/collection/components/list-item/list-item/list-item.css +53 -19
  82. package/dist/collection/components/list-item/list-item/list-item.js +38 -40
  83. package/dist/collection/components/panel/panel.css +40 -17
  84. package/dist/collection/components/panel/panel.js +6 -6
  85. package/dist/collection/components/popover/exports.js +0 -1
  86. package/dist/collection/components/popover/popover.css +2 -10
  87. package/dist/collection/components/popover/popover.js +2 -55
  88. package/dist/collection/components/popover-action/popover-action.js +1 -1
  89. package/dist/collection/components/popover-content/popover-content.js +1 -1
  90. package/dist/collection/components/popover-headline/popover-headline.js +1 -1
  91. package/dist/collection/components/popover-trigger/popover-trigger.js +1 -1
  92. package/dist/collection/components/progress-bar/progress-bar.js +1 -1
  93. package/dist/collection/components/radio-button/radio-button.js +49 -12
  94. package/dist/collection/components/radio-button-description/radio-button-description.js +1 -1
  95. package/dist/collection/components/radio-button-leading/radio-button-leading.js +1 -1
  96. package/dist/collection/components/radio-button-title/radio-button-title.js +1 -1
  97. package/dist/collection/components/radio-button-trailing/radio-button-trailing.js +1 -1
  98. package/dist/collection/components/radio-group/radio-group.js +38 -124
  99. package/dist/collection/components/select/select.js +6 -330
  100. package/dist/collection/components/select-option/select-option.js +1 -1
  101. package/dist/collection/components/skip-link/skip-link.js +1 -1
  102. package/dist/collection/components/stepper/stepper.css +1 -1
  103. package/dist/collection/components/stepper/stepper.js +1 -1
  104. package/dist/collection/components/stepper-item/stepper-item.css +3 -3
  105. package/dist/collection/components/stepper-item/stepper-item.js +2 -2
  106. package/dist/collection/components/tab/tab.css +29 -29
  107. package/dist/collection/components/tab/tab.js +5 -1
  108. package/dist/collection/components/tab-panel/tab-panel.js +1 -1
  109. package/dist/collection/components/tabs/tabs.js +34 -6
  110. package/dist/collection/components/tabs-list/exports.js +2 -0
  111. package/dist/collection/components/tabs-list/tabs-list.css +43 -2
  112. package/dist/collection/components/tabs-list/tabs-list.js +277 -1
  113. package/dist/collection/components/textarea/textarea.css +1 -1
  114. package/dist/collection/components/textarea/textarea.js +6 -158
  115. package/dist/collection/components/toast/toast.css +35 -9
  116. package/dist/collection/components/toast/toast.js +44 -32
  117. package/dist/collection/components/toast-group/toast-group.css +1 -1
  118. package/dist/collection/components/toast-group/toast-group.js +1 -1
  119. package/dist/collection/components/tooltip/tooltip.js +2 -2
  120. package/dist/esm/index-Da7qOBFr.js +6 -10
  121. package/dist/esm/loader.js +1 -1
  122. package/dist/esm/r-accordion-panel.entry.js +1 -1
  123. package/dist/esm/r-accordion-section.entry.js +1 -1
  124. package/dist/esm/r-accordion-trigger.entry.js +5 -35
  125. package/dist/esm/r-accordion.entry.js +3 -7
  126. package/dist/esm/r-alert.entry.js +26 -11
  127. package/dist/esm/r-badge.entry.js +1 -1
  128. package/dist/esm/r-button.entry.js +1 -1
  129. package/dist/esm/r-checkbox-group.entry.js +1 -11
  130. package/dist/esm/r-checkbox.entry.js +76 -75
  131. package/dist/esm/r-dialog.entry.js +3 -11
  132. package/dist/esm/r-hint_2.entry.js +47 -0
  133. package/dist/esm/{r-hint_3.entry.js → r-icon-button_2.entry.js} +65 -51
  134. package/dist/esm/r-icon.entry.js +1 -1
  135. package/dist/esm/r-input-code.entry.js +112 -17
  136. package/dist/esm/r-input-date.entry.js +8 -14
  137. package/dist/esm/r-input-password.entry.js +16 -8
  138. package/dist/esm/r-input-phone-number.entry.js +7 -12
  139. package/dist/esm/r-input.entry.js +90 -42
  140. package/dist/esm/r-list-item.entry.js +20 -19
  141. package/dist/esm/r-panel.entry.js +5 -5
  142. package/dist/esm/r-popover-action.entry.js +1 -1
  143. package/dist/esm/r-popover-content.entry.js +1 -1
  144. package/dist/esm/r-popover-headline.entry.js +1 -1
  145. package/dist/esm/r-popover-trigger.entry.js +1 -1
  146. package/dist/esm/r-popover.entry.js +3 -3
  147. package/dist/esm/r-progress-bar.entry.js +1 -1
  148. package/dist/esm/r-radio-button-description.entry.js +1 -1
  149. package/dist/esm/r-radio-button-leading.entry.js +1 -1
  150. package/dist/esm/r-radio-button-title.entry.js +1 -1
  151. package/dist/esm/r-radio-button-trailing.entry.js +1 -1
  152. package/dist/esm/r-radio-button.entry.js +29 -12
  153. package/dist/esm/r-radio-group.entry.js +18 -22
  154. package/dist/esm/r-select-option.entry.js +1 -1
  155. package/dist/esm/r-select.entry.js +6 -24
  156. package/dist/esm/r-skip-link.entry.js +1 -1
  157. package/dist/esm/r-stepper-item.entry.js +3 -3
  158. package/dist/esm/r-stepper.entry.js +2 -2
  159. package/dist/esm/r-tab-panel.entry.js +1 -1
  160. package/dist/esm/r-tab.entry.js +6 -2
  161. package/dist/esm/r-tabs-list.entry.js +161 -3
  162. package/dist/esm/r-tabs.entry.js +34 -6
  163. package/dist/esm/r-textarea.entry.js +7 -19
  164. package/dist/esm/r-toast-group.entry.js +2 -2
  165. package/dist/esm/r-toast.entry.js +31 -11
  166. package/dist/esm/web-components.js +1 -1
  167. package/dist/types/components/accordion/accordion.d.ts +1 -5
  168. package/dist/types/components/accordion/exports.d.ts +1 -1
  169. package/dist/types/components/accordion-trigger/accordion-trigger.d.ts +0 -36
  170. package/dist/types/components/alert/alert.d.ts +6 -1
  171. package/dist/types/components/checkbox/checkbox.d.ts +24 -34
  172. package/dist/types/components/checkbox-group/checkbox-group.d.ts +0 -11
  173. package/dist/types/components/dialog/dialog.d.ts +0 -2
  174. package/dist/types/components/icon/exports.d.ts +1 -0
  175. package/dist/types/components/icon/icon-data.d.ts +1 -0
  176. package/dist/types/components/icon/riverty-kit.d.ts +1 -0
  177. package/dist/types/components/icon-button/icon-button.d.ts +4 -0
  178. package/dist/types/components/input/exports.d.ts +4 -0
  179. package/dist/types/components/input/input.d.ts +47 -73
  180. package/dist/types/components/input-code/exports.d.ts +4 -0
  181. package/dist/types/components/input-code/input-code.d.ts +49 -7
  182. package/dist/types/components/input-date/input-date.d.ts +0 -16
  183. package/dist/types/components/input-password/exports.d.ts +1 -0
  184. package/dist/types/components/input-password/input-password.d.ts +48 -16
  185. package/dist/types/components/input-phone-number/input-phone-number.d.ts +0 -16
  186. package/dist/types/components/label/label.d.ts +0 -18
  187. package/dist/types/components/list-item/list-item/list-item.d.ts +5 -9
  188. package/dist/types/components/popover/exports.d.ts +0 -2
  189. package/dist/types/components/popover/popover.d.ts +1 -14
  190. package/dist/types/components/radio-button/radio-button.d.ts +5 -0
  191. package/dist/types/components/radio-group/radio-group.d.ts +5 -26
  192. package/dist/types/components/select/select.d.ts +0 -50
  193. package/dist/types/components/tabs/tabs.d.ts +1 -0
  194. package/dist/types/components/tabs-list/exports.d.ts +4 -0
  195. package/dist/types/components/tabs-list/tabs-list.d.ts +38 -0
  196. package/dist/types/components/textarea/textarea.d.ts +0 -32
  197. package/dist/types/components/toast/toast.d.ts +11 -5
  198. package/dist/types/components.d.ts +280 -638
  199. package/dist/web-components/bundled-icons/riverty-kit.json +1 -1
  200. package/dist/web-components/p-0347feff.entry.js +1 -0
  201. package/dist/web-components/p-159822fe.entry.js +1 -0
  202. package/dist/web-components/p-19407a14.entry.js +1 -0
  203. package/dist/web-components/{p-5744d75c.entry.js → p-1da75540.entry.js} +1 -1
  204. package/dist/web-components/p-26ef77d6.entry.js +1 -0
  205. package/dist/web-components/p-3884c6e7.entry.js +1 -0
  206. package/dist/web-components/p-3f60c6c0.entry.js +1 -0
  207. package/dist/web-components/{p-87f39749.entry.js → p-4595fa8e.entry.js} +1 -1
  208. package/dist/web-components/{p-4e3df002.entry.js → p-4cc58c6a.entry.js} +1 -1
  209. package/dist/web-components/p-4f261b63.entry.js +1 -0
  210. package/dist/web-components/{p-e0e2f2b2.entry.js → p-50893211.entry.js} +1 -1
  211. package/dist/web-components/{p-72fa1fd1.entry.js → p-550e2237.entry.js} +1 -1
  212. package/dist/web-components/p-589baaf9.entry.js +1 -0
  213. package/dist/web-components/{p-3b4e3faf.entry.js → p-5eeb7002.entry.js} +1 -1
  214. package/dist/web-components/p-60341de2.entry.js +1 -0
  215. package/dist/web-components/{p-44ae9f33.entry.js → p-62b788bf.entry.js} +1 -1
  216. package/dist/web-components/p-63fd817d.entry.js +1 -0
  217. package/dist/web-components/p-67fa3f84.entry.js +1 -0
  218. package/dist/web-components/p-6bb44ec6.entry.js +1 -0
  219. package/dist/web-components/p-6cc2ea2c.entry.js +1 -0
  220. package/dist/web-components/p-70784685.entry.js +1 -0
  221. package/dist/web-components/p-7ce57332.entry.js +1 -0
  222. package/dist/web-components/{p-429213ea.entry.js → p-7fed6f4d.entry.js} +1 -1
  223. package/dist/web-components/p-8a66d20c.entry.js +1 -0
  224. package/dist/web-components/{p-c7f8e59b.entry.js → p-8c31cbd5.entry.js} +1 -1
  225. package/dist/web-components/p-8dac326b.entry.js +1 -0
  226. package/dist/web-components/p-92c7cf33.entry.js +1 -0
  227. package/dist/web-components/{p-1c2497de.entry.js → p-9ef1bbee.entry.js} +1 -1
  228. package/dist/web-components/p-a7d22c76.entry.js +1 -0
  229. package/dist/web-components/p-b96d59ca.entry.js +1 -0
  230. package/dist/web-components/p-ba801820.entry.js +1 -0
  231. package/dist/web-components/{p-a022f356.entry.js → p-bfc8c077.entry.js} +1 -1
  232. package/dist/web-components/p-c05b05da.entry.js +1 -0
  233. package/dist/web-components/p-c1e748f2.entry.js +1 -0
  234. package/dist/web-components/{p-5bbd6e3c.entry.js → p-c478712b.entry.js} +1 -1
  235. package/dist/web-components/p-c95b6470.entry.js +1 -0
  236. package/dist/web-components/p-cd5daad2.entry.js +1 -0
  237. package/dist/web-components/p-cdd88c5a.entry.js +1 -0
  238. package/dist/web-components/{p-3078b2b8.entry.js → p-d054eb4d.entry.js} +1 -1
  239. package/dist/web-components/{p-8563a1ab.entry.js → p-d433a828.entry.js} +1 -1
  240. package/dist/web-components/p-d7726e46.entry.js +1 -0
  241. package/dist/web-components/p-d819c8e5.entry.js +1 -0
  242. package/dist/web-components/{p-755cc697.entry.js → p-e4dc60f0.entry.js} +1 -1
  243. package/dist/web-components/{p-d1379ac6.entry.js → p-f9d5004c.entry.js} +1 -1
  244. package/dist/web-components/web-components.esm.js +1 -1
  245. package/package.json +1 -1
  246. package/dist/cjs/r-accordion-item.cjs.entry.js +0 -78
  247. package/dist/cjs/r-icon-button.cjs.entry.js +0 -81
  248. package/dist/collection/components/accordion-item/accordion-item.css +0 -121
  249. package/dist/collection/components/accordion-item/accordion-item.js +0 -138
  250. package/dist/esm/r-accordion-item.entry.js +0 -76
  251. package/dist/esm/r-icon-button.entry.js +0 -79
  252. package/dist/types/components/accordion-item/accordion-item.d.ts +0 -26
  253. package/dist/web-components/p-00ca474f.entry.js +0 -1
  254. package/dist/web-components/p-0bb04d79.entry.js +0 -1
  255. package/dist/web-components/p-15ac0fdd.entry.js +0 -1
  256. package/dist/web-components/p-1c956370.entry.js +0 -1
  257. package/dist/web-components/p-2a512983.entry.js +0 -1
  258. package/dist/web-components/p-2b2f581a.entry.js +0 -1
  259. package/dist/web-components/p-2e18e762.entry.js +0 -1
  260. package/dist/web-components/p-3bc93d65.entry.js +0 -1
  261. package/dist/web-components/p-4bd3e077.entry.js +0 -1
  262. package/dist/web-components/p-51a5804b.entry.js +0 -1
  263. package/dist/web-components/p-56da04d8.entry.js +0 -1
  264. package/dist/web-components/p-5e6aabd8.entry.js +0 -1
  265. package/dist/web-components/p-656229de.entry.js +0 -1
  266. package/dist/web-components/p-6a4f3836.entry.js +0 -1
  267. package/dist/web-components/p-7775228c.entry.js +0 -1
  268. package/dist/web-components/p-7ad8e78b.entry.js +0 -1
  269. package/dist/web-components/p-85a9af42.entry.js +0 -1
  270. package/dist/web-components/p-9e50120b.entry.js +0 -1
  271. package/dist/web-components/p-a7e7f8fa.entry.js +0 -1
  272. package/dist/web-components/p-ad9b2a48.entry.js +0 -1
  273. package/dist/web-components/p-b2f03016.entry.js +0 -1
  274. package/dist/web-components/p-b87ad83b.entry.js +0 -1
  275. package/dist/web-components/p-c937bd92.entry.js +0 -1
  276. package/dist/web-components/p-cbcd7699.entry.js +0 -1
  277. package/dist/web-components/p-dbe579e8.entry.js +0 -1
  278. package/dist/web-components/p-e4b66277.entry.js +0 -1
  279. package/dist/web-components/p-e6a31881.entry.js +0 -1
  280. package/dist/web-components/p-f2577a3c.entry.js +0 -1
  281. package/dist/web-components/p-f6a92287.entry.js +0 -1
@@ -6,43 +6,49 @@
6
6
  */
7
7
  import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
8
8
  import { AccordionSize } from "./components/accordion/exports";
9
- import { IconKit, IconName, IconPosition, IconSize, IconVariant } from "./components/icon/exports";
10
9
  import { AlertStatus, AlertTarget } from "./components/alert/exports";
10
+ import { IconKit, IconName, IconPosition, IconSize, IconVariant } from "./components/icon/exports";
11
11
  import { BadgeVariant } from "./components/badge/exports";
12
12
  import { ButtonSize, ButtonTarget, ButtonType, ButtonVariant } from "./components/button/exports";
13
13
  import { DialogSize } from "./components/dialog/exports";
14
14
  import { HintVariant } from "./components/hint/exports";
15
15
  import { TooltipPosition } from "./components/tooltip/exports";
16
- import { InputAutocomplete, InputType } from "./components/input/exports";
16
+ import { EnterKeyHint, InputAutocomplete, InputMode, InputType } from "./components/input/exports";
17
+ import { InputCodeEnterKeyHint, InputCodeInputMode } from "./components/input-code/exports";
18
+ import { PasswordAutocomplete } from "./components/input-password/exports";
17
19
  import { ListItemVariant, TrailingTextAlignment } from "./components/list-item/list-item/exports";
18
20
  import { PaginationItemsPerPageOptions, PaginationListBoxPosition, PaginationVariant } from "./components/pagination/exports";
19
21
  import { PanelVariant } from "./components/panel/exports";
20
- import { PopoverDismissMode, PopoverHorizontal, PopoverSize, PopoverVertical } from "./components/popover/exports";
22
+ import { PopoverDismissMode, PopoverHorizontal, PopoverVertical } from "./components/popover/exports";
21
23
  import { PopoverTriggerAction } from "./components/popover-trigger/exports";
22
24
  import { Event } from "./stencil-public-runtime";
23
25
  import { RadioGroupVariant } from "./components/radio-group/exports";
24
26
  import { ListboxPosition } from "./components/select/exports";
25
27
  import { SkipLinkPosition } from "./components/skip-link/exports";
28
+ import { ActiveTabBorder, TabListVariant } from "./components/tabs-list/exports";
26
29
  import { TextareaResize } from "./components/textarea/exports";
27
30
  import { ToastActionTarget, ToastDismissMode, ToastStatus } from "./components/toast/exports";
28
31
  export { AccordionSize } from "./components/accordion/exports";
29
- export { IconKit, IconName, IconPosition, IconSize, IconVariant } from "./components/icon/exports";
30
32
  export { AlertStatus, AlertTarget } from "./components/alert/exports";
33
+ export { IconKit, IconName, IconPosition, IconSize, IconVariant } from "./components/icon/exports";
31
34
  export { BadgeVariant } from "./components/badge/exports";
32
35
  export { ButtonSize, ButtonTarget, ButtonType, ButtonVariant } from "./components/button/exports";
33
36
  export { DialogSize } from "./components/dialog/exports";
34
37
  export { HintVariant } from "./components/hint/exports";
35
38
  export { TooltipPosition } from "./components/tooltip/exports";
36
- export { InputAutocomplete, InputType } from "./components/input/exports";
39
+ export { EnterKeyHint, InputAutocomplete, InputMode, InputType } from "./components/input/exports";
40
+ export { InputCodeEnterKeyHint, InputCodeInputMode } from "./components/input-code/exports";
41
+ export { PasswordAutocomplete } from "./components/input-password/exports";
37
42
  export { ListItemVariant, TrailingTextAlignment } from "./components/list-item/list-item/exports";
38
43
  export { PaginationItemsPerPageOptions, PaginationListBoxPosition, PaginationVariant } from "./components/pagination/exports";
39
44
  export { PanelVariant } from "./components/panel/exports";
40
- export { PopoverDismissMode, PopoverHorizontal, PopoverSize, PopoverVertical } from "./components/popover/exports";
45
+ export { PopoverDismissMode, PopoverHorizontal, PopoverVertical } from "./components/popover/exports";
41
46
  export { PopoverTriggerAction } from "./components/popover-trigger/exports";
42
47
  export { Event } from "./stencil-public-runtime";
43
48
  export { RadioGroupVariant } from "./components/radio-group/exports";
44
49
  export { ListboxPosition } from "./components/select/exports";
45
50
  export { SkipLinkPosition } from "./components/skip-link/exports";
51
+ export { ActiveTabBorder, TabListVariant } from "./components/tabs-list/exports";
46
52
  export { TextareaResize } from "./components/textarea/exports";
47
53
  export { ToastActionTarget, ToastDismissMode, ToastStatus } from "./components/toast/exports";
48
54
  export namespace Components {
@@ -65,26 +71,11 @@ export namespace Components {
65
71
  */
66
72
  "multiple"?: boolean;
67
73
  /**
68
- * Defines the size of an accordion UI. DEPRECATED: 'small | large', use 's | l' instead
74
+ * Defines the size of an accordion UI.
69
75
  * @default 'l'
70
76
  */
71
77
  "size": AccordionSize;
72
78
  }
73
- /**
74
- * An accordion item represents a section within an accordion.
75
- * Always use `<r-accordion-item>` inside a `<r-accordion>`.
76
- */
77
- interface RAccordionItem {
78
- /**
79
- * When true, the accordion item is expanded
80
- * @default false
81
- */
82
- "expanded": boolean;
83
- /**
84
- * Header text to be displayed before the content of this accordion item.
85
- */
86
- "header": string;
87
- }
88
79
  interface RAccordionPanel {
89
80
  /**
90
81
  * Indication of the panel disabled state.
@@ -123,40 +114,6 @@ export namespace Components {
123
114
  * Indication of the controlled panel revelation.
124
115
  */
125
116
  "expanded"?: boolean;
126
- /**
127
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Icon to be used as status indication
128
- * @default 'angle-down'
129
- */
130
- "icon": IconName;
131
- /**
132
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Icon for collapsed state
133
- * @default 'angle-down'
134
- */
135
- "iconCollapsed"?: IconName;
136
- /**
137
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Icon for expanded state
138
- * @default 'angle-up'
139
- */
140
- "iconExpanded"?: IconName;
141
- /**
142
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Icon might be placed before or after content
143
- * @default 'end'
144
- */
145
- "iconPosition": IconPosition;
146
- /**
147
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Defines the size of an icon used as status indication. Default: `m`.
148
- * @default 'm'
149
- */
150
- "iconSize": IconSize;
151
- /**
152
- * _DEPRECATED_ (This property will be removed in November 2025 release. Use leading icon slot instead) Name of an icon rendered within leading slot (before content).
153
- */
154
- "leadingIcon"?: IconName;
155
- /**
156
- * _DEPRECATED_ (This property will be removed in November 2025 release. Use leading icon slot instead) Defines the size of an icon in leading slot. Default: `m`.
157
- * @default 'm'
158
- */
159
- "leadingIconSize": IconSize;
160
117
  /**
161
118
  * Id of the panel this trigger controls.
162
119
  */
@@ -206,6 +163,11 @@ export namespace Components {
206
163
  * Defines an icon source to be presented in leading slot
207
164
  */
208
165
  "leadingIconSrc"?: string;
166
+ /**
167
+ * Defines whether the leading icon is visible.
168
+ * @default true
169
+ */
170
+ "leadingIconVisible": boolean;
209
171
  /**
210
172
  * Defines link label text of the alert
211
173
  */
@@ -325,6 +287,11 @@ export namespace Components {
325
287
  * Overall behavior is based on native `<input type="checkbox">`
326
288
  */
327
289
  interface RCheckbox {
290
+ /**
291
+ * Automatically focus the checkbox when the component is mounted. Note: Only one element per page should have autofocus set to true, following browser standard behavior.
292
+ * @default false
293
+ */
294
+ "autofocus"?: boolean;
328
295
  /**
329
296
  * Checks the checkbox element.
330
297
  */
@@ -395,11 +362,6 @@ export namespace Components {
395
362
  * Sets the indeterminate state of the checkbox element.
396
363
  */
397
364
  "setIndeterminate": () => Promise<void>;
398
- /**
399
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Controls the visibility of validation indicators for the field.
400
- * @default false
401
- */
402
- "showValid": boolean;
403
365
  /**
404
366
  * Toggles the checked state of the checkbox element.
405
367
  */
@@ -412,10 +374,6 @@ export namespace Components {
412
374
  * Indicate that validation is successful
413
375
  */
414
376
  "valid"?: boolean;
415
- /**
416
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Set custom message if the element meets all its validation constraints.
417
- */
418
- "validMessage"?: string;
419
377
  /**
420
378
  * Value of element data within a form
421
379
  */
@@ -504,11 +462,6 @@ export namespace Components {
504
462
  * Whether to show a "Select All" checkbox.
505
463
  */
506
464
  "showSelectAll"?: boolean;
507
- /**
508
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Indicates whether to show the validation state. When set to `true`, the component will display validation feedback. Defaults to `false`.
509
- * @default false
510
- */
511
- "showValid": boolean;
512
465
  /**
513
466
  * Unchecks all checkboxes in the slot.
514
467
  */
@@ -517,10 +470,6 @@ export namespace Components {
517
470
  * Apply validation success visual style
518
471
  */
519
472
  "valid"?: boolean;
520
- /**
521
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Set custom message if the element meets all its validation constraints.
522
- */
523
- "validMessage"?: string;
524
473
  /**
525
474
  * Specifies `value` property of the 'select-all', representing the group as a whole.
526
475
  * @default ''
@@ -662,6 +611,10 @@ export namespace Components {
662
611
  * Name of the icon to display within the button.
663
612
  */
664
613
  "name": IconName;
614
+ /**
615
+ * Defines the tabindex of the button for keyboard navigation.
616
+ */
617
+ "rTabindex"?: number;
665
618
  /**
666
619
  * Remove focus from the button
667
620
  */
@@ -720,6 +673,10 @@ export namespace Components {
720
673
  * Disables the field (non-interactive, excluded from form submission).
721
674
  */
722
675
  "disabled"?: boolean;
676
+ /**
677
+ * Hint for the action label/icon on the virtual keyboard's enter key. Use cases: - `enter`: Default, generic newline/submit action - `done`: Finishes current input session (e.g., last field in a form) - `go`: Navigates to URL input target (e.g., URL bar) - `next`: Advances to next input field in a sequence - `previous`: Goes back to previous input field - `search`: Submits a search query - `send`: Sends a message (e.g., chat, email)
678
+ */
679
+ "enterkeyhint"?: EnterKeyHint;
723
680
  /**
724
681
  * Manual error message independent of native validation messages. When set, native validation messages are suppressed.
725
682
  */
@@ -753,22 +710,9 @@ export namespace Components {
753
710
  */
754
711
  "hint"?: string;
755
712
  /**
756
- * @deprecated Will be removed November 2025. Legacy single icon (prefer `leading` / `trailing` slots).
713
+ * Hint to the browser about which keyboard to display on mobile devices.
757
714
  */
758
- "icon"?: IconName;
759
- /**
760
- * @deprecated Will be removed November 2025. Color for legacy icon.
761
- */
762
- "iconColor"?: string;
763
- /**
764
- * @deprecated Will be removed November 2025. Position of legacy icon: `start` | `end`.
765
- * @default 'start'
766
- */
767
- "iconPosition": IconPosition;
768
- /**
769
- * @deprecated Will be removed November 2025. Treat legacy icon as submit trigger.
770
- */
771
- "iconSubmit"?: boolean;
715
+ "inputmode"?: InputMode;
772
716
  /**
773
717
  * When true, hides visual label & messages (for internal layout use; accessibility still preserved).
774
718
  */
@@ -777,10 +721,22 @@ export namespace Components {
777
721
  * Explicit invalid state override (when set manually).
778
722
  */
779
723
  "invalid"?: boolean;
724
+ /**
725
+ * Gets the dirty state (whether value has been changed by user)
726
+ */
727
+ "isDirty": () => Promise<boolean>;
728
+ /**
729
+ * Gets the touched state (whether user has interacted with the input)
730
+ */
731
+ "isTouched": () => Promise<boolean>;
780
732
  /**
781
733
  * Label text describing the field. Provide for accessibility (or use the `label` slot).
782
734
  */
783
735
  "label": string;
736
+ /**
737
+ * Resets touched and dirty states to pristine (untouched/clean)
738
+ */
739
+ "markAsPristine": () => Promise<void>;
784
740
  /**
785
741
  * Maximum numeric/date value (for supported types).
786
742
  */
@@ -806,13 +762,9 @@ export namespace Components {
806
762
  */
807
763
  "novalidate"?: boolean;
808
764
  /**
809
- * @deprecated Use `fieldIndicator` instead. Will be removed November 2025. Boolean flag to render an “optional” marker.
810
- */
811
- "optional"?: boolean;
812
- /**
813
- * @deprecated Use `fieldIndicator` instead. Will be removed November 2025. Custom text for optional marker.
765
+ * Safari-specific password rules for strong password generation (password inputs only). Format: "minlength: X; required: lower; required: upper; required: digit; required: special;" This attribute is Safari-specific and will be ignored by other browsers. See: https://developer.apple.com/documentation/security/password_autofill/customizing_password_autofill_rules
814
766
  */
815
- "optionalText"?: string;
767
+ "passwordrules"?: string;
816
768
  /**
817
769
  * Regex pattern the value must match (string form).
818
770
  */
@@ -864,10 +816,6 @@ export namespace Components {
864
816
  * Set the current value programmatically (does not fire native input/change automatically).
865
817
  */
866
818
  "setValue": (value: string) => Promise<void>;
867
- /**
868
- * @deprecated Will be removed November 2025. Controls visibility of success validation marker.
869
- */
870
- "showValid"?: boolean;
871
819
  /**
872
820
  * Step interval for numeric/date input types.
873
821
  */
@@ -884,18 +832,6 @@ export namespace Components {
884
832
  * Custom message for `tooShort`.
885
833
  */
886
834
  "tooShortMessage"?: string;
887
- /**
888
- * @deprecated Use the `popover` slot instead. Will be removed November 2025. Label tooltip text content.
889
- */
890
- "tooltip"?: string;
891
- /**
892
- * @deprecated Use the `popover` slot instead. Will be removed November 2025. Icon name used as tooltip trigger.
893
- */
894
- "tooltipIcon"?: IconName;
895
- /**
896
- * @deprecated Use the `popover` slot instead. Will be removed November 2025. Color token for tooltip trigger icon.
897
- */
898
- "tooltipIconColor"?: string;
899
835
  /**
900
836
  * Input type (e.g. `text`, `email`, `number`, `password`). See HTMLInputElement `type` for supported values.
901
837
  * @default 'text'
@@ -910,19 +846,10 @@ export namespace Components {
910
846
  */
911
847
  "valid"?: boolean;
912
848
  /**
913
- * @deprecated Will be removed November 2025. Legacy boolean to show a validation marker icon.
914
- * @default false
915
- */
916
- "validMarker": boolean;
917
- /**
918
- * @deprecated Will be removed November 2025. Icon name used when `validMarker` is active and state is valid.
919
- * @default 'circled-check'
920
- */
921
- "validMarkerIcon": IconName;
922
- /**
923
- * @deprecated Will be removed November 2025. Custom success message when field is valid.
849
+ * When `true` field renders valid/invalid marker within.
850
+ * @default true
924
851
  */
925
- "validMessage"?: string;
852
+ "validityMarker": boolean;
926
853
  /**
927
854
  * Current value. Mutable: can be changed programmatically or through user input.
928
855
  * @default ''
@@ -938,6 +865,11 @@ export namespace Components {
938
865
  * Defines label for each character's input. Default "Character: ${character number}"
939
866
  */
940
867
  "ariaCharacterLabel"?: string;
868
+ /**
869
+ * Specifies the autocomplete behavior. Default is 'one-time-code' for SMS OTP autofill.
870
+ * @default : 'one-time-code'
871
+ */
872
+ "autocomplete"?: string;
941
873
  /**
942
874
  * Validates the input code without triggering UI and returns a boolean indicating its validity.
943
875
  * @returns A boolean indicating whether the input code is valid.
@@ -951,6 +883,11 @@ export namespace Components {
951
883
  * Whether the input is disabled
952
884
  */
953
885
  "disabled"?: boolean;
886
+ /**
887
+ * Specifies the enter key hint for the virtual keyboard. Default is 'done' for OTP completion.
888
+ * @default : 'done'
889
+ */
890
+ "enterkeyhint"?: InputCodeEnterKeyHint;
954
891
  /**
955
892
  * The way to provide error message separately from Constraint Validation API.
956
893
  */
@@ -959,6 +896,12 @@ export namespace Components {
959
896
  * Text of an additional marker in the label
960
897
  */
961
898
  "fieldIndicator"?: string;
899
+ /**
900
+ * Focuses a specific segment (input) by index.
901
+ * @param index - The zero-based index of the segment to focus (0 to length-1)
902
+ * @returns Promise that resolves when focus is set, or rejects if index is invalid
903
+ */
904
+ "focusSegment": (index: number) => Promise<void>;
962
905
  /**
963
906
  * Specifies the `id` of the `<form>` to which the element belongs.
964
907
  */
@@ -967,6 +910,12 @@ export namespace Components {
967
910
  * Defines if the component suppose to occupy 100% width
968
911
  */
969
912
  "fullWidth"?: boolean;
913
+ /**
914
+ * Gets the value of a specific segment by index.
915
+ * @param index - The zero-based index of the segment (0 to length-1)
916
+ * @returns Promise that resolves to the segment value (single character string or empty string)
917
+ */
918
+ "getSegmentValue": (index: number) => Promise<string>;
970
919
  /**
971
920
  * Gets the current complete code value by joining all individual digit values.
972
921
  * @returns Promise that resolves to the complete code string
@@ -976,22 +925,27 @@ export namespace Components {
976
925
  * Description for accessibility
977
926
  */
978
927
  "hint"?: string;
928
+ /**
929
+ * Specifies the input mode for the virtual keyboard on mobile devices. Default is 'numeric' for OTP codes.
930
+ * @default : 'numeric'
931
+ */
932
+ "inputmode"?: InputCodeInputMode;
979
933
  /**
980
934
  * Validity indicator, serving to change UI of the component
981
935
  */
982
936
  "invalid"?: boolean;
983
937
  /**
984
- * Label for accessibility
985
- * @default 'Verification code'
938
+ * Label for accessibility.
939
+ * @default : 'Verification code'
986
940
  */
987
941
  "label": string;
988
942
  /**
989
- * Number of digits (typically 4–6)
990
- * @default 4
943
+ * Number of digits (typically 4–6).
944
+ * @default : 4
991
945
  */
992
946
  "length": number;
993
947
  /**
994
- * Specifies a name for an input for submittion within formData object.
948
+ * Specifies a name for an input for submission within formData object.
995
949
  * @default 'input-code'
996
950
  */
997
951
  "name": string;
@@ -1012,15 +966,20 @@ export namespace Components {
1012
966
  * @returns Promise that resolves when reset is complete
1013
967
  */
1014
968
  "reset": () => Promise<void>;
969
+ /**
970
+ * Sets the value of a specific segment by index.
971
+ * @param index - The zero-based index of the segment (0 to length-1)
972
+ * @param value - The value to set (will be truncated to first character if longer)
973
+ */
974
+ "setSegmentValue": (index: number, value: string) => Promise<void>;
1015
975
  /**
1016
976
  * Sets provided value.
1017
977
  */
1018
- "setValue": (value: any) => Promise<void>;
978
+ "setValue": (value: string | null) => Promise<void>;
1019
979
  /**
1020
980
  * Set custom message for `tooShort` property of a ValidityState object (set by `minlength`) within Constrain Validation API
1021
- * @default `All ${this.length} characters must be filled.`
1022
981
  */
1023
- "tooShortMessage": string;
982
+ "tooShortMessage"?: string;
1024
983
  /**
1025
984
  * Visual indication of valid state
1026
985
  */
@@ -1161,18 +1120,6 @@ export namespace Components {
1161
1120
  * Sets the date value
1162
1121
  */
1163
1122
  "setValue": (value: string) => Promise<void>;
1164
- /**
1165
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Label tooltip text
1166
- */
1167
- "tooltip"?: string;
1168
- /**
1169
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Tooltip trigger icon by name from [Riverty icons set](https://storybook.riverty.design/?path=/story/components-icon--riverty-kit)
1170
- */
1171
- "tooltipIcon"?: IconName;
1172
- /**
1173
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Change color of an icon that triggers tooltip to one of the Riverty color tokens
1174
- */
1175
- "tooltipIconColor"?: string;
1176
1123
  /**
1177
1124
  * Visual indication of valid state
1178
1125
  */
@@ -1193,6 +1140,11 @@ export namespace Components {
1193
1140
  "yearAriaLabel": string;
1194
1141
  }
1195
1142
  interface RInputPassword {
1143
+ /**
1144
+ * Password-specific autocomplete behavior for browser password managers.
1145
+ * @example **Usage Guidelines:** - `'current-password'`: Use in login forms where users enter their existing password - `'new-password'`: Use in registration forms or password change forms for the new password field - `'off'`: Disable autofill in sensitive contexts where password managers should not suggest values **Common Patterns:** ```tsx // Login form <r-input-password autocomplete="current-password" /> // Registration form <r-input-password autocomplete="new-password" /> // Sensitive form (e.g., admin panel) <r-input-password autocomplete="off" /> ```
1146
+ */
1147
+ "autocomplete"?: PasswordAutocomplete;
1196
1148
  /**
1197
1149
  * Validates the input password without triggering UI and returns a boolean indicating its validity.
1198
1150
  * @returns A boolean indicating whether the input password is valid.
@@ -1252,6 +1204,14 @@ export namespace Components {
1252
1204
  * The text on the label
1253
1205
  */
1254
1206
  "label": string;
1207
+ /**
1208
+ * Maximum character length (enforced by native input).
1209
+ */
1210
+ "maxlength"?: number;
1211
+ /**
1212
+ * Minimum character length (validation only).
1213
+ */
1214
+ "minlength"?: number;
1255
1215
  /**
1256
1216
  * Specifies a name for a input
1257
1217
  */
@@ -1260,6 +1220,18 @@ export namespace Components {
1260
1220
  * Specifies if element must be ignored during validation of the form elements
1261
1221
  */
1262
1222
  "novalidate"?: boolean;
1223
+ /**
1224
+ * Safari-specific password rules for strong password generation. Format: "minlength: X; required: lower; required: upper; required: digit; required: special;" Example: "minlength: 8; required: lower; required: upper; required: digit; required: special;" Note: This attribute is Safari-specific and will be ignored by other browsers. See: https://developer.apple.com/documentation/security/password_autofill/customizing_password_autofill_rules
1225
+ */
1226
+ "passwordrules"?: string;
1227
+ /**
1228
+ * Regex pattern the value must match (string form).
1229
+ */
1230
+ "pattern"?: string;
1231
+ /**
1232
+ * Custom message for `patternMismatch`.
1233
+ */
1234
+ "patternMismatchMessage"?: string;
1263
1235
  /**
1264
1236
  * Specifies a short hint that describes the expected value of a input
1265
1237
  */
@@ -1295,17 +1267,13 @@ export namespace Components {
1295
1267
  */
1296
1268
  "toggleShow": () => Promise<void>;
1297
1269
  /**
1298
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Label tooltip text
1299
- */
1300
- "tooltip"?: string;
1301
- /**
1302
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Tooltip trigger icon by name from [Riverty icons set](https://storybook.riverty.design/?path=/story/components-icon--riverty-kit)
1270
+ * Custom message for `tooLong`.
1303
1271
  */
1304
- "tooltipIcon"?: IconName;
1272
+ "tooLongMessage"?: string;
1305
1273
  /**
1306
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Change color of an icon that triggers tooltip to one of the Riverty color tokens
1274
+ * Custom message for `tooShort`.
1307
1275
  */
1308
- "tooltipIconColor"?: string;
1276
+ "tooShortMessage"?: string;
1309
1277
  /**
1310
1278
  * Visual indication of valid state
1311
1279
  */
@@ -1409,18 +1377,6 @@ export namespace Components {
1409
1377
  * Set the element value.
1410
1378
  */
1411
1379
  "setValue": (value: string) => Promise<void>;
1412
- /**
1413
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Label tooltip text
1414
- */
1415
- "tooltip"?: string;
1416
- /**
1417
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Label tooltip trigger icon
1418
- */
1419
- "tooltipIcon"?: IconName;
1420
- /**
1421
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Change color of an icon that triggers tooltip to one of the Riverty color tokens
1422
- */
1423
- "tooltipIconColor"?: string;
1424
1380
  /**
1425
1381
  * Visual indication of valid state
1426
1382
  */
@@ -1443,26 +1399,12 @@ export namespace Components {
1443
1399
  * Text of an additional marker
1444
1400
  */
1445
1401
  "fieldIndicator"?: string;
1446
- /**
1447
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Tooltip represents additional description
1448
- */
1449
- "tooltip"?: string;
1450
- /**
1451
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Icon tooltip trigger by name from the set
1452
- * @default 'circled-question-mark'
1453
- */
1454
- "tooltipIcon"?: IconName;
1455
- /**
1456
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Change color of an icon that triggers tooltip to one of the Riverty color tokens
1457
- */
1458
- "tooltipIconColor"?: string;
1459
- /**
1460
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Defines preferable position of the tooltip
1461
- * @default 'right'
1462
- */
1463
- "tooltipPosition"?: TooltipPosition;
1464
1402
  }
1465
1403
  interface RListItem {
1404
+ /**
1405
+ * Indicates whether the list item is currently active (e.g., represents the current page).
1406
+ */
1407
+ "active"?: boolean;
1466
1408
  /**
1467
1409
  * Defines the alignment style for the trailing text.
1468
1410
  */
@@ -1504,10 +1446,6 @@ export namespace Components {
1504
1446
  * Defines an icon source to be presented in leading slot
1505
1447
  */
1506
1448
  "leadingIconSrc"?: string;
1507
- /**
1508
- * @deprecated Use `description` instead. Will be removed November 2025. Secondary text displayed below the headline (2nd slot), used for additional details or context.
1509
- */
1510
- "subtext"?: string;
1511
1449
  /**
1512
1450
  * Method to toggle sub-items of the list-item
1513
1451
  */
@@ -1631,12 +1569,12 @@ export namespace Components {
1631
1569
  "header"?: string;
1632
1570
  /**
1633
1571
  * Aria-label text for collapse
1634
- * @default 'collapse-panel'
1572
+ * @default 'Collapse panel'
1635
1573
  */
1636
1574
  "labelCollapse": string;
1637
1575
  /**
1638
1576
  * Aria-label text for expand
1639
- * @default 'expand-panel'
1577
+ * @default 'Expand panel'
1640
1578
  */
1641
1579
  "labelExpand": string;
1642
1580
  /**
@@ -1654,11 +1592,6 @@ export namespace Components {
1654
1592
  "variant": PanelVariant;
1655
1593
  }
1656
1594
  interface RPopover {
1657
- /**
1658
- * Defines `aria-label` content for the popover container. Used for accessibility to describe the popover content area.
1659
- * @deprecated This property will be removed in December 2025 release.
1660
- */
1661
- "containerAriaLabel"?: string;
1662
1595
  /**
1663
1596
  * Defines `aria-label` content for the dismiss button. Used for accessibility when dismiss button is present.
1664
1597
  */
@@ -1698,12 +1631,6 @@ export namespace Components {
1698
1631
  * @returns Promise that resolves when the popover is shown
1699
1632
  */
1700
1633
  "show": () => Promise<void>;
1701
- /**
1702
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Size of the Popover: `s` | `l`.
1703
- * @default "s"
1704
- * @deprecated This property will be removed in November 2025 release.
1705
- */
1706
- "size": PopoverSize;
1707
1634
  /**
1708
1635
  * Toggle popover visibility. Shows the popover if hidden, hides it if shown.
1709
1636
  * @returns Promise that resolves when the toggle action is complete
@@ -1786,6 +1713,11 @@ export namespace Components {
1786
1713
  * A radio button is used to select a single option in a list.
1787
1714
  */
1788
1715
  interface RRadioButton {
1716
+ /**
1717
+ * Automatically focus the radio button when the component is mounted. Note: Only one element per page should have autofocus set to true, following browser standard behavior.
1718
+ * @default false
1719
+ */
1720
+ "autofocus"?: boolean;
1789
1721
  /**
1790
1722
  * When true the radio is selected
1791
1723
  */
@@ -1869,6 +1801,11 @@ export namespace Components {
1869
1801
  interface RRadioButtonTrailing {
1870
1802
  }
1871
1803
  interface RRadioGroup {
1804
+ /**
1805
+ * When set to `true`, automatically focuses the first enabled radio button in the group on mount. This will focus the selected radio button if one exists, or the first enabled radio button otherwise.
1806
+ * @default false
1807
+ */
1808
+ "autofocus": boolean;
1872
1809
  /**
1873
1810
  * Validates the radio group without triggering UI and returns a boolean indicating its validity.
1874
1811
  * @returns A boolean indicating whether the radio group is valid.
@@ -1953,31 +1890,10 @@ export namespace Components {
1953
1890
  * @param value - The value to set for the radio group.
1954
1891
  */
1955
1892
  "setValue": (value: string | null) => Promise<void>;
1956
- /**
1957
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Indicates whether to show the validation state. When set to `true`, the component will display validation feedback. Defaults to `false`.
1958
- * @default false
1959
- */
1960
- "showValid": boolean;
1961
- /**
1962
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Label based text revealed within tooltip
1963
- */
1964
- "tooltip"?: string;
1965
- /**
1966
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Label tooltip trigger icon
1967
- */
1968
- "tooltipIcon"?: IconName;
1969
- /**
1970
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Change color of an icon that triggers tooltip to one of the Riverty color tokens
1971
- */
1972
- "tooltipIconColor"?: string;
1973
1893
  /**
1974
1894
  * Apply validation success visual style
1975
1895
  */
1976
1896
  "valid"?: boolean;
1977
- /**
1978
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Set custom message if the element meets all its validation constraints.
1979
- */
1980
- "validMessage"?: string;
1981
1897
  /**
1982
1898
  * Displays currently selected value
1983
1899
  */
@@ -2022,10 +1938,6 @@ export namespace Components {
2022
1938
  * Prevent user interaction and apply disabled style
2023
1939
  */
2024
1940
  "disabled"?: boolean;
2025
- /**
2026
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Defines the trailing icon for select in disabled state
2027
- */
2028
- "disabledIcon"?: IconName;
2029
1941
  /**
2030
1942
  * Custom validation error message
2031
1943
  */
@@ -2086,19 +1998,6 @@ export namespace Components {
2086
1998
  * The text on the label
2087
1999
  */
2088
2000
  "label": string;
2089
- /**
2090
- * _DEPRECATED_ (This property will be removed in November 2025 release. Use `leading slot` instead) Adds an icon defined by name that serves as leading icon in select
2091
- */
2092
- "leadingIcon"?: IconName;
2093
- /**
2094
- * _DEPRECATED_ (This property will be removed in November 2025 release. Use `leading slot` instead) Define size of an icon that serves as leading icon in select
2095
- * @default 's'
2096
- */
2097
- "leadingIconSize"?: IconSize;
2098
- /**
2099
- * _DEPRECATED_ (This property will be removed in November 2025 release. Use `leading slot` instead) Adds an icon defined by file source that serves as leading icon in select
2100
- */
2101
- "leadingIconSrc"?: string;
2102
2001
  /**
2103
2002
  * Define wether listbox appears on top or at the bottom of the select
2104
2003
  * @default 'bottom'
@@ -2121,14 +2020,6 @@ export namespace Components {
2121
2020
  * Specifies if element must be ignored during validation of the form elements
2122
2021
  */
2123
2022
  "novalidate"?: boolean;
2124
- /**
2125
- * _DEPRECATED_ (This property will be removed in November 2025 release. Use `fieldIndicator` instead) Marks the field as optional
2126
- */
2127
- "optional"?: boolean;
2128
- /**
2129
- * _DEPRECATED_ (This property will be removed in November 2025 release. Use `fieldIndicator` instead) Define the optional marker text if the field is marked as optional
2130
- */
2131
- "optionalText"?: string;
2132
2023
  /**
2133
2024
  * Text that is presented until an option has been selected
2134
2025
  */
@@ -2175,50 +2066,15 @@ export namespace Components {
2175
2066
  * Set value of the select programmatically. Does NOT mark as dirty or emit change events. Use this for programmatic value updates.
2176
2067
  */
2177
2068
  "setValue": (value?: string) => Promise<void>;
2178
- /**
2179
- * Controls the visibility of validation indicators for the field.
2180
- * @default false
2181
- */
2182
- "showValid": boolean;
2183
2069
  /**
2184
2070
  * Defines aria label for combobox toggle button
2185
2071
  * @default "Toggle combobox"
2186
2072
  */
2187
2073
  "toggleButtonAriaLabel"?: string;
2188
- /**
2189
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Label tooltip text
2190
- */
2191
- "tooltip"?: string;
2192
- /**
2193
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Label tooltip trigger icon
2194
- */
2195
- "tooltipIcon"?: IconName;
2196
- /**
2197
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Change color of an icon that triggers tooltip to one of the Riverty color tokens.
2198
- */
2199
- "tooltipIconColor"?: string;
2200
- /**
2201
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Defines the trailing icon defined by name for select, Default: 'andle-down'
2202
- * @default 'angle-down'
2203
- */
2204
- "trailingIcon": IconName;
2205
- /**
2206
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Defines the trailing icon defined by source for select
2207
- */
2208
- "trailingIconSrc"?: string;
2209
- /**
2210
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Define size of an icon that serves as trailing icon in select
2211
- * @default 's'
2212
- */
2213
- "tralingIconSize": IconSize;
2214
2074
  /**
2215
2075
  * Visual indication of valid state
2216
2076
  */
2217
2077
  "valid"?: boolean;
2218
- /**
2219
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Set custom message if the element meets all its validation constraints.
2220
- */
2221
- "validMessage"?: string;
2222
2078
  /**
2223
2079
  * Selected value
2224
2080
  */
@@ -2381,6 +2237,25 @@ export namespace Components {
2381
2237
  "navigation"?: boolean;
2382
2238
  }
2383
2239
  interface RTabsList {
2240
+ /**
2241
+ * Border style of the active tab
2242
+ * @default 'standard'
2243
+ */
2244
+ "border": ActiveTabBorder;
2245
+ /**
2246
+ * Tooltip visibility for left scroll button
2247
+ */
2248
+ "scrollLeftTooltip": string;
2249
+ /**
2250
+ * Tooltip visibility for left right button
2251
+ */
2252
+ "scrollRightTooltip": string;
2253
+ /**
2254
+ * Visual variant of the tab list
2255
+ * @defaulr 'expanded'
2256
+ * @default 'expanded'
2257
+ */
2258
+ "variant": TabListVariant;
2384
2259
  }
2385
2260
  interface RTextarea {
2386
2261
  /**
@@ -2449,14 +2324,6 @@ export namespace Components {
2449
2324
  * Specifies if element must be ignored during validation of the form elements
2450
2325
  */
2451
2326
  "novalidate"?: boolean;
2452
- /**
2453
- * _DEPRECATED_ This property will be removed
2454
- */
2455
- "optional"?: boolean;
2456
- /**
2457
- * _DEPRECATED_ (use `fieldIndicator` instead) Text of an additional marker in the label
2458
- */
2459
- "optionalText"?: string;
2460
2327
  /**
2461
2328
  * Specifies a short hint that describes the expected value of the `<textarea>`, displayed when it is empty.
2462
2329
  * @default 'Provide an input'
@@ -2515,11 +2382,6 @@ export namespace Components {
2515
2382
  * Specifies if the character counter should be visible. Note: The counter will only be rendered when a `maxlength` value is provided.
2516
2383
  */
2517
2384
  "showCounter"?: boolean;
2518
- /**
2519
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Controls the visibility of validation indicators for the field.
2520
- * @default false
2521
- */
2522
- "showValid": boolean;
2523
2385
  /**
2524
2386
  * Custom message for `tooLong` property of a ValidityState object (set by `maxlength`) within Constrain Validation API.
2525
2387
  */
@@ -2528,26 +2390,10 @@ export namespace Components {
2528
2390
  * Set custom message for `tooShort` property of a ValidityState object (set by `minlength`) within Constrain Validation API
2529
2391
  */
2530
2392
  "tooShortMessage"?: string;
2531
- /**
2532
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Tooltip text displayed when the user hovers over the icon, providing additional information.
2533
- */
2534
- "tooltip"?: string;
2535
- /**
2536
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Icon used to trigger the tooltip for the label, providing a visual cue for additional information.
2537
- */
2538
- "tooltipIcon"?: IconName;
2539
- /**
2540
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Specifies the color of the tooltip icon from Riverty color tokens. Displayed alongside the label.
2541
- */
2542
- "tooltipIconColor"?: string;
2543
2393
  /**
2544
2394
  * Indicates whether the value of the `<textarea>` is valid based on validation rules.
2545
2395
  */
2546
2396
  "valid"?: boolean;
2547
- /**
2548
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Custom message displayed when the `<textarea>` value is valid, providing positive feedback to the user.
2549
- */
2550
- "validMessage"?: string;
2551
2397
  /**
2552
2398
  * Represents the current value of the `<textarea>`, reflecting the content entered by the user or provided programmatically.
2553
2399
  * @default this.textareaSlotValue
@@ -2592,10 +2438,6 @@ export namespace Components {
2592
2438
  * @default "manual"
2593
2439
  */
2594
2440
  "dismissMode": ToastDismissMode;
2595
- /**
2596
- * @deprecated Use `dismissMode="manual"` instead. Will be removed November 2025. Shows button, that dismisses the toast.
2597
- */
2598
- "dismissable"?: boolean;
2599
2441
  /**
2600
2442
  * Specifies the headline text for the alert, summarizing its message or purpose.
2601
2443
  */
@@ -2785,16 +2627,6 @@ declare global {
2785
2627
  prototype: HTMLRAccordionElement;
2786
2628
  new (): HTMLRAccordionElement;
2787
2629
  };
2788
- /**
2789
- * An accordion item represents a section within an accordion.
2790
- * Always use `<r-accordion-item>` inside a `<r-accordion>`.
2791
- */
2792
- interface HTMLRAccordionItemElement extends Components.RAccordionItem, HTMLStencilElement {
2793
- }
2794
- var HTMLRAccordionItemElement: {
2795
- prototype: HTMLRAccordionItemElement;
2796
- new (): HTMLRAccordionItemElement;
2797
- };
2798
2630
  interface HTMLRAccordionPanelElement extends Components.RAccordionPanel, HTMLStencilElement {
2799
2631
  }
2800
2632
  var HTMLRAccordionPanelElement: {
@@ -3015,7 +2847,6 @@ declare global {
3015
2847
  new (): HTMLRIconButtonElement;
3016
2848
  };
3017
2849
  interface HTMLRInputElementEventMap {
3018
- "rClickIcon": any;
3019
2850
  "rValidate": {
3020
2851
  state: string,
3021
2852
  message: string
@@ -3122,6 +2953,10 @@ declare global {
3122
2953
  "rReset": {
3123
2954
  element: HTMLRInputPasswordElement,
3124
2955
  value: any
2956
+ };
2957
+ "rVisibilityChange": {
2958
+ element: HTMLRInputPasswordElement,
2959
+ visible: boolean
3125
2960
  };
3126
2961
  }
3127
2962
  interface HTMLRInputPasswordElement extends Components.RInputPassword, HTMLStencilElement {
@@ -3577,6 +3412,7 @@ declare global {
3577
3412
  "dismiss": any;
3578
3413
  "reveal": any;
3579
3414
  "hide": any;
3415
+ "dismissed": any;
3580
3416
  }
3581
3417
  interface HTMLRToastElement extends Components.RToast, HTMLStencilElement {
3582
3418
  addEventListener<K extends keyof HTMLRToastElementEventMap>(type: K, listener: (this: HTMLRToastElement, ev: RToastCustomEvent<HTMLRToastElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
@@ -3619,7 +3455,6 @@ declare global {
3619
3455
  };
3620
3456
  interface HTMLElementTagNameMap {
3621
3457
  "r-accordion": HTMLRAccordionElement;
3622
- "r-accordion-item": HTMLRAccordionItemElement;
3623
3458
  "r-accordion-panel": HTMLRAccordionPanelElement;
3624
3459
  "r-accordion-section": HTMLRAccordionSectionElement;
3625
3460
  "r-accordion-trigger": HTMLRAccordionTriggerElement;
@@ -3689,26 +3524,11 @@ declare namespace LocalJSX {
3689
3524
  */
3690
3525
  "multiple"?: boolean;
3691
3526
  /**
3692
- * Defines the size of an accordion UI. DEPRECATED: 'small | large', use 's | l' instead
3527
+ * Defines the size of an accordion UI.
3693
3528
  * @default 'l'
3694
3529
  */
3695
3530
  "size"?: AccordionSize;
3696
3531
  }
3697
- /**
3698
- * An accordion item represents a section within an accordion.
3699
- * Always use `<r-accordion-item>` inside a `<r-accordion>`.
3700
- */
3701
- interface RAccordionItem {
3702
- /**
3703
- * When true, the accordion item is expanded
3704
- * @default false
3705
- */
3706
- "expanded"?: boolean;
3707
- /**
3708
- * Header text to be displayed before the content of this accordion item.
3709
- */
3710
- "header"?: string;
3711
- }
3712
3532
  interface RAccordionPanel {
3713
3533
  /**
3714
3534
  * Indication of the panel disabled state.
@@ -3754,40 +3574,6 @@ declare namespace LocalJSX {
3754
3574
  * Indication of the controlled panel revelation.
3755
3575
  */
3756
3576
  "expanded"?: boolean;
3757
- /**
3758
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Icon to be used as status indication
3759
- * @default 'angle-down'
3760
- */
3761
- "icon"?: IconName;
3762
- /**
3763
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Icon for collapsed state
3764
- * @default 'angle-down'
3765
- */
3766
- "iconCollapsed"?: IconName;
3767
- /**
3768
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Icon for expanded state
3769
- * @default 'angle-up'
3770
- */
3771
- "iconExpanded"?: IconName;
3772
- /**
3773
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Icon might be placed before or after content
3774
- * @default 'end'
3775
- */
3776
- "iconPosition"?: IconPosition;
3777
- /**
3778
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Defines the size of an icon used as status indication. Default: `m`.
3779
- * @default 'm'
3780
- */
3781
- "iconSize"?: IconSize;
3782
- /**
3783
- * _DEPRECATED_ (This property will be removed in November 2025 release. Use leading icon slot instead) Name of an icon rendered within leading slot (before content).
3784
- */
3785
- "leadingIcon"?: IconName;
3786
- /**
3787
- * _DEPRECATED_ (This property will be removed in November 2025 release. Use leading icon slot instead) Defines the size of an icon in leading slot. Default: `m`.
3788
- * @default 'm'
3789
- */
3790
- "leadingIconSize"?: IconSize;
3791
3577
  /**
3792
3578
  * Emit click on trigger
3793
3579
  */
@@ -3853,6 +3639,11 @@ declare namespace LocalJSX {
3853
3639
  * Defines an icon source to be presented in leading slot
3854
3640
  */
3855
3641
  "leadingIconSrc"?: string;
3642
+ /**
3643
+ * Defines whether the leading icon is visible.
3644
+ * @default true
3645
+ */
3646
+ "leadingIconVisible"?: boolean;
3856
3647
  /**
3857
3648
  * Defines link label text of the alert
3858
3649
  */
@@ -3968,6 +3759,11 @@ declare namespace LocalJSX {
3968
3759
  * Overall behavior is based on native `<input type="checkbox">`
3969
3760
  */
3970
3761
  interface RCheckbox {
3762
+ /**
3763
+ * Automatically focus the checkbox when the component is mounted. Note: Only one element per page should have autofocus set to true, following browser standard behavior.
3764
+ * @default false
3765
+ */
3766
+ "autofocus"?: boolean;
3971
3767
  /**
3972
3768
  * Pass initial checked state
3973
3769
  */
@@ -4031,19 +3827,10 @@ declare namespace LocalJSX {
4031
3827
  * Specifies if checkbox must be checked
4032
3828
  */
4033
3829
  "required"?: boolean;
4034
- /**
4035
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Controls the visibility of validation indicators for the field.
4036
- * @default false
4037
- */
4038
- "showValid"?: boolean;
4039
3830
  /**
4040
3831
  * Indicate that validation is successful
4041
3832
  */
4042
3833
  "valid"?: boolean;
4043
- /**
4044
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Set custom message if the element meets all its validation constraints.
4045
- */
4046
- "validMessage"?: string;
4047
3834
  /**
4048
3835
  * Value of element data within a form
4049
3836
  */
@@ -4126,19 +3913,10 @@ declare namespace LocalJSX {
4126
3913
  * Whether to show a "Select All" checkbox.
4127
3914
  */
4128
3915
  "showSelectAll"?: boolean;
4129
- /**
4130
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Indicates whether to show the validation state. When set to `true`, the component will display validation feedback. Defaults to `false`.
4131
- * @default false
4132
- */
4133
- "showValid"?: boolean;
4134
3916
  /**
4135
3917
  * Apply validation success visual style
4136
3918
  */
4137
3919
  "valid"?: boolean;
4138
- /**
4139
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Set custom message if the element meets all its validation constraints.
4140
- */
4141
- "validMessage"?: string;
4142
3920
  /**
4143
3921
  * Specifies `value` property of the 'select-all', representing the group as a whole.
4144
3922
  * @default ''
@@ -4276,6 +4054,10 @@ declare namespace LocalJSX {
4276
4054
  * Emits `rClick` event on click.
4277
4055
  */
4278
4056
  "onRClick"?: (event: RIconButtonCustomEvent<any>) => void;
4057
+ /**
4058
+ * Defines the tabindex of the button for keyboard navigation.
4059
+ */
4060
+ "rTabindex"?: number;
4279
4061
  /**
4280
4062
  * Defines the size of the icon used within the button.
4281
4063
  * @default 'm'
@@ -4317,6 +4099,10 @@ declare namespace LocalJSX {
4317
4099
  * Disables the field (non-interactive, excluded from form submission).
4318
4100
  */
4319
4101
  "disabled"?: boolean;
4102
+ /**
4103
+ * Hint for the action label/icon on the virtual keyboard's enter key. Use cases: - `enter`: Default, generic newline/submit action - `done`: Finishes current input session (e.g., last field in a form) - `go`: Navigates to URL input target (e.g., URL bar) - `next`: Advances to next input field in a sequence - `previous`: Goes back to previous input field - `search`: Submits a search query - `send`: Sends a message (e.g., chat, email)
4104
+ */
4105
+ "enterkeyhint"?: EnterKeyHint;
4320
4106
  /**
4321
4107
  * Manual error message independent of native validation messages. When set, native validation messages are suppressed.
4322
4108
  */
@@ -4338,22 +4124,9 @@ declare namespace LocalJSX {
4338
4124
  */
4339
4125
  "hint"?: string;
4340
4126
  /**
4341
- * @deprecated Will be removed November 2025. Legacy single icon (prefer `leading` / `trailing` slots).
4342
- */
4343
- "icon"?: IconName;
4344
- /**
4345
- * @deprecated Will be removed November 2025. Color for legacy icon.
4127
+ * Hint to the browser about which keyboard to display on mobile devices.
4346
4128
  */
4347
- "iconColor"?: string;
4348
- /**
4349
- * @deprecated Will be removed November 2025. Position of legacy icon: `start` | `end`.
4350
- * @default 'start'
4351
- */
4352
- "iconPosition"?: IconPosition;
4353
- /**
4354
- * @deprecated Will be removed November 2025. Treat legacy icon as submit trigger.
4355
- */
4356
- "iconSubmit"?: boolean;
4129
+ "inputmode"?: InputMode;
4357
4130
  /**
4358
4131
  * When true, hides visual label & messages (for internal layout use; accessibility still preserved).
4359
4132
  */
@@ -4401,10 +4174,6 @@ declare namespace LocalJSX {
4401
4174
  element: HTMLRInputElement,
4402
4175
  value: any
4403
4176
  }>) => void;
4404
- /**
4405
- * @deprecated Will be removed November 2025. Emitted when legacy icon is clicked.
4406
- */
4407
- "onRClickIcon"?: (event: RInputCustomEvent<any>) => void;
4408
4177
  /**
4409
4178
  * Emitted when the input receives focus.
4410
4179
  */
@@ -4431,13 +4200,9 @@ declare namespace LocalJSX {
4431
4200
  message: string
4432
4201
  }>) => void;
4433
4202
  /**
4434
- * @deprecated Use `fieldIndicator` instead. Will be removed November 2025. Boolean flag to render an “optional” marker.
4435
- */
4436
- "optional"?: boolean;
4437
- /**
4438
- * @deprecated Use `fieldIndicator` instead. Will be removed November 2025. Custom text for optional marker.
4203
+ * Safari-specific password rules for strong password generation (password inputs only). Format: "minlength: X; required: lower; required: upper; required: digit; required: special;" This attribute is Safari-specific and will be ignored by other browsers. See: https://developer.apple.com/documentation/security/password_autofill/customizing_password_autofill_rules
4439
4204
  */
4440
- "optionalText"?: string;
4205
+ "passwordrules"?: string;
4441
4206
  /**
4442
4207
  * Regex pattern the value must match (string form).
4443
4208
  */
@@ -4466,10 +4231,6 @@ declare namespace LocalJSX {
4466
4231
  * Marks the field as required; failing to provide a value triggers `valueMissing`.
4467
4232
  */
4468
4233
  "required"?: boolean;
4469
- /**
4470
- * @deprecated Will be removed November 2025. Controls visibility of success validation marker.
4471
- */
4472
- "showValid"?: boolean;
4473
4234
  /**
4474
4235
  * Step interval for numeric/date input types.
4475
4236
  */
@@ -4486,18 +4247,6 @@ declare namespace LocalJSX {
4486
4247
  * Custom message for `tooShort`.
4487
4248
  */
4488
4249
  "tooShortMessage"?: string;
4489
- /**
4490
- * @deprecated Use the `popover` slot instead. Will be removed November 2025. Label tooltip text content.
4491
- */
4492
- "tooltip"?: string;
4493
- /**
4494
- * @deprecated Use the `popover` slot instead. Will be removed November 2025. Icon name used as tooltip trigger.
4495
- */
4496
- "tooltipIcon"?: IconName;
4497
- /**
4498
- * @deprecated Use the `popover` slot instead. Will be removed November 2025. Color token for tooltip trigger icon.
4499
- */
4500
- "tooltipIconColor"?: string;
4501
4250
  /**
4502
4251
  * Input type (e.g. `text`, `email`, `number`, `password`). See HTMLInputElement `type` for supported values.
4503
4252
  * @default 'text'
@@ -4512,19 +4261,10 @@ declare namespace LocalJSX {
4512
4261
  */
4513
4262
  "valid"?: boolean;
4514
4263
  /**
4515
- * @deprecated Will be removed November 2025. Legacy boolean to show a validation marker icon.
4516
- * @default false
4517
- */
4518
- "validMarker"?: boolean;
4519
- /**
4520
- * @deprecated Will be removed November 2025. Icon name used when `validMarker` is active and state is valid.
4521
- * @default 'circled-check'
4522
- */
4523
- "validMarkerIcon"?: IconName;
4524
- /**
4525
- * @deprecated Will be removed November 2025. Custom success message when field is valid.
4264
+ * When `true` field renders valid/invalid marker within.
4265
+ * @default true
4526
4266
  */
4527
- "validMessage"?: string;
4267
+ "validityMarker"?: boolean;
4528
4268
  /**
4529
4269
  * Current value. Mutable: can be changed programmatically or through user input.
4530
4270
  * @default ''
@@ -4540,6 +4280,11 @@ declare namespace LocalJSX {
4540
4280
  * Defines label for each character's input. Default "Character: ${character number}"
4541
4281
  */
4542
4282
  "ariaCharacterLabel"?: string;
4283
+ /**
4284
+ * Specifies the autocomplete behavior. Default is 'one-time-code' for SMS OTP autofill.
4285
+ * @default : 'one-time-code'
4286
+ */
4287
+ "autocomplete"?: string;
4543
4288
  /**
4544
4289
  * Set custom message for `customError` property of a ValidityState object indicating whether the element's custom validity message has been set to a non-empty string by calling the element's setCustomValidity() method.
4545
4290
  */
@@ -4548,6 +4293,11 @@ declare namespace LocalJSX {
4548
4293
  * Whether the input is disabled
4549
4294
  */
4550
4295
  "disabled"?: boolean;
4296
+ /**
4297
+ * Specifies the enter key hint for the virtual keyboard. Default is 'done' for OTP completion.
4298
+ * @default : 'done'
4299
+ */
4300
+ "enterkeyhint"?: InputCodeEnterKeyHint;
4551
4301
  /**
4552
4302
  * The way to provide error message separately from Constraint Validation API.
4553
4303
  */
@@ -4568,22 +4318,27 @@ declare namespace LocalJSX {
4568
4318
  * Description for accessibility
4569
4319
  */
4570
4320
  "hint"?: string;
4321
+ /**
4322
+ * Specifies the input mode for the virtual keyboard on mobile devices. Default is 'numeric' for OTP codes.
4323
+ * @default : 'numeric'
4324
+ */
4325
+ "inputmode"?: InputCodeInputMode;
4571
4326
  /**
4572
4327
  * Validity indicator, serving to change UI of the component
4573
4328
  */
4574
4329
  "invalid"?: boolean;
4575
4330
  /**
4576
- * Label for accessibility
4577
- * @default 'Verification code'
4331
+ * Label for accessibility.
4332
+ * @default : 'Verification code'
4578
4333
  */
4579
4334
  "label"?: string;
4580
4335
  /**
4581
- * Number of digits (typically 4–6)
4582
- * @default 4
4336
+ * Number of digits (typically 4–6).
4337
+ * @default : 4
4583
4338
  */
4584
4339
  "length"?: number;
4585
4340
  /**
4586
- * Specifies a name for an input for submittion within formData object.
4341
+ * Specifies a name for an input for submission within formData object.
4587
4342
  * @default 'input-code'
4588
4343
  */
4589
4344
  "name"?: string;
@@ -4619,7 +4374,6 @@ declare namespace LocalJSX {
4619
4374
  "required"?: boolean;
4620
4375
  /**
4621
4376
  * Set custom message for `tooShort` property of a ValidityState object (set by `minlength`) within Constrain Validation API
4622
- * @default `All ${this.length} characters must be filled.`
4623
4377
  */
4624
4378
  "tooShortMessage"?: string;
4625
4379
  /**
@@ -4752,18 +4506,6 @@ declare namespace LocalJSX {
4752
4506
  * Specifies that an input is required/must be filled out
4753
4507
  */
4754
4508
  "required"?: boolean;
4755
- /**
4756
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Label tooltip text
4757
- */
4758
- "tooltip"?: string;
4759
- /**
4760
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Tooltip trigger icon by name from [Riverty icons set](https://storybook.riverty.design/?path=/story/components-icon--riverty-kit)
4761
- */
4762
- "tooltipIcon"?: IconName;
4763
- /**
4764
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Change color of an icon that triggers tooltip to one of the Riverty color tokens
4765
- */
4766
- "tooltipIconColor"?: string;
4767
4509
  /**
4768
4510
  * Visual indication of valid state
4769
4511
  */
@@ -4784,6 +4526,11 @@ declare namespace LocalJSX {
4784
4526
  "yearAriaLabel"?: string;
4785
4527
  }
4786
4528
  interface RInputPassword {
4529
+ /**
4530
+ * Password-specific autocomplete behavior for browser password managers.
4531
+ * @example **Usage Guidelines:** - `'current-password'`: Use in login forms where users enter their existing password - `'new-password'`: Use in registration forms or password change forms for the new password field - `'off'`: Disable autofill in sensitive contexts where password managers should not suggest values **Common Patterns:** ```tsx // Login form <r-input-password autocomplete="current-password" /> // Registration form <r-input-password autocomplete="new-password" /> // Sensitive form (e.g., admin panel) <r-input-password autocomplete="off" /> ```
4532
+ */
4533
+ "autocomplete"?: PasswordAutocomplete;
4787
4534
  /**
4788
4535
  * Custom error message displayed for any validation failures in the input.
4789
4536
  */
@@ -4830,6 +4577,14 @@ declare namespace LocalJSX {
4830
4577
  * The text on the label
4831
4578
  */
4832
4579
  "label": string;
4580
+ /**
4581
+ * Maximum character length (enforced by native input).
4582
+ */
4583
+ "maxlength"?: number;
4584
+ /**
4585
+ * Minimum character length (validation only).
4586
+ */
4587
+ "minlength"?: number;
4833
4588
  /**
4834
4589
  * Specifies a name for a input
4835
4590
  */
@@ -4866,6 +4621,25 @@ declare namespace LocalJSX {
4866
4621
  state: string,
4867
4622
  message: string
4868
4623
  }>) => void;
4624
+ /**
4625
+ * Emits 'rVisibilityChange' event when password visibility is toggled
4626
+ */
4627
+ "onRVisibilityChange"?: (event: RInputPasswordCustomEvent<{
4628
+ element: HTMLRInputPasswordElement,
4629
+ visible: boolean
4630
+ }>) => void;
4631
+ /**
4632
+ * Safari-specific password rules for strong password generation. Format: "minlength: X; required: lower; required: upper; required: digit; required: special;" Example: "minlength: 8; required: lower; required: upper; required: digit; required: special;" Note: This attribute is Safari-specific and will be ignored by other browsers. See: https://developer.apple.com/documentation/security/password_autofill/customizing_password_autofill_rules
4633
+ */
4634
+ "passwordrules"?: string;
4635
+ /**
4636
+ * Regex pattern the value must match (string form).
4637
+ */
4638
+ "pattern"?: string;
4639
+ /**
4640
+ * Custom message for `patternMismatch`.
4641
+ */
4642
+ "patternMismatchMessage"?: string;
4869
4643
  /**
4870
4644
  * Specifies a short hint that describes the expected value of a input
4871
4645
  */
@@ -4889,17 +4663,13 @@ declare namespace LocalJSX {
4889
4663
  */
4890
4664
  "shownPasswordMessage"?: string;
4891
4665
  /**
4892
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Label tooltip text
4893
- */
4894
- "tooltip"?: string;
4895
- /**
4896
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Tooltip trigger icon by name from [Riverty icons set](https://storybook.riverty.design/?path=/story/components-icon--riverty-kit)
4666
+ * Custom message for `tooLong`.
4897
4667
  */
4898
- "tooltipIcon"?: IconName;
4668
+ "tooLongMessage"?: string;
4899
4669
  /**
4900
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Change color of an icon that triggers tooltip to one of the Riverty color tokens
4670
+ * Custom message for `tooShort`.
4901
4671
  */
4902
- "tooltipIconColor"?: string;
4672
+ "tooShortMessage"?: string;
4903
4673
  /**
4904
4674
  * Visual indication of valid state
4905
4675
  */
@@ -5010,18 +4780,6 @@ declare namespace LocalJSX {
5010
4780
  * Specifies that phone number value is required
5011
4781
  */
5012
4782
  "required"?: boolean;
5013
- /**
5014
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Label tooltip text
5015
- */
5016
- "tooltip"?: string;
5017
- /**
5018
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Label tooltip trigger icon
5019
- */
5020
- "tooltipIcon"?: IconName;
5021
- /**
5022
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Change color of an icon that triggers tooltip to one of the Riverty color tokens
5023
- */
5024
- "tooltipIconColor"?: string;
5025
4783
  /**
5026
4784
  * Visual indication of valid state
5027
4785
  */
@@ -5044,26 +4802,12 @@ declare namespace LocalJSX {
5044
4802
  * Text of an additional marker
5045
4803
  */
5046
4804
  "fieldIndicator"?: string;
5047
- /**
5048
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Tooltip represents additional description
5049
- */
5050
- "tooltip"?: string;
5051
- /**
5052
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Icon tooltip trigger by name from the set
5053
- * @default 'circled-question-mark'
5054
- */
5055
- "tooltipIcon"?: IconName;
5056
- /**
5057
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Change color of an icon that triggers tooltip to one of the Riverty color tokens
5058
- */
5059
- "tooltipIconColor"?: string;
5060
- /**
5061
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Defines preferable position of the tooltip
5062
- * @default 'right'
5063
- */
5064
- "tooltipPosition"?: TooltipPosition;
5065
4805
  }
5066
4806
  interface RListItem {
4807
+ /**
4808
+ * Indicates whether the list item is currently active (e.g., represents the current page).
4809
+ */
4810
+ "active"?: boolean;
5067
4811
  /**
5068
4812
  * Defines the alignment style for the trailing text.
5069
4813
  */
@@ -5105,10 +4849,6 @@ declare namespace LocalJSX {
5105
4849
  * Defines an icon source to be presented in leading slot
5106
4850
  */
5107
4851
  "leadingIconSrc"?: string;
5108
- /**
5109
- * @deprecated Use `description` instead. Will be removed November 2025. Secondary text displayed below the headline (2nd slot), used for additional details or context.
5110
- */
5111
- "subtext"?: string;
5112
4852
  /**
5113
4853
  * Specifies the name of the icon to display in the trailing slot (3rd slot) of the list item.
5114
4854
  */
@@ -5256,12 +4996,12 @@ declare namespace LocalJSX {
5256
4996
  "header"?: string;
5257
4997
  /**
5258
4998
  * Aria-label text for collapse
5259
- * @default 'collapse-panel'
4999
+ * @default 'Collapse panel'
5260
5000
  */
5261
5001
  "labelCollapse"?: string;
5262
5002
  /**
5263
5003
  * Aria-label text for expand
5264
- * @default 'expand-panel'
5004
+ * @default 'Expand panel'
5265
5005
  */
5266
5006
  "labelExpand"?: string;
5267
5007
  /**
@@ -5279,11 +5019,6 @@ declare namespace LocalJSX {
5279
5019
  "variant"?: PanelVariant;
5280
5020
  }
5281
5021
  interface RPopover {
5282
- /**
5283
- * Defines `aria-label` content for the popover container. Used for accessibility to describe the popover content area.
5284
- * @deprecated This property will be removed in December 2025 release.
5285
- */
5286
- "containerAriaLabel"?: string;
5287
5022
  /**
5288
5023
  * Defines `aria-label` content for the dismiss button. Used for accessibility when dismiss button is present.
5289
5024
  */
@@ -5319,12 +5054,6 @@ declare namespace LocalJSX {
5319
5054
  * @default false
5320
5055
  */
5321
5056
  "open"?: boolean;
5322
- /**
5323
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Size of the Popover: `s` | `l`.
5324
- * @default "s"
5325
- * @deprecated This property will be removed in November 2025 release.
5326
- */
5327
- "size"?: PopoverSize;
5328
5057
  /**
5329
5058
  * Defines the action that will be triggered when the trigger is clicked. - `toggle`: Toggle the popover open/closed state - `show`: Only show the popover - `hide`: Only hide the popover
5330
5059
  * @default "toggle"
@@ -5377,6 +5106,11 @@ declare namespace LocalJSX {
5377
5106
  * A radio button is used to select a single option in a list.
5378
5107
  */
5379
5108
  interface RRadioButton {
5109
+ /**
5110
+ * Automatically focus the radio button when the component is mounted. Note: Only one element per page should have autofocus set to true, following browser standard behavior.
5111
+ * @default false
5112
+ */
5113
+ "autofocus"?: boolean;
5380
5114
  /**
5381
5115
  * When true the radio is selected
5382
5116
  */
@@ -5480,6 +5214,11 @@ declare namespace LocalJSX {
5480
5214
  interface RRadioButtonTrailing {
5481
5215
  }
5482
5216
  interface RRadioGroup {
5217
+ /**
5218
+ * When set to `true`, automatically focuses the first enabled radio button in the group on mount. This will focus the selected radio button if one exists, or the first enabled radio button otherwise.
5219
+ * @default false
5220
+ */
5221
+ "autofocus"?: boolean;
5483
5222
  /**
5484
5223
  * Set custom message for `customError` property of a ValidityState object indicating whether the element's custom validity message has been set to a non-empty string by calling the element's setCustomValidity() method.
5485
5224
  */
@@ -5541,31 +5280,10 @@ declare namespace LocalJSX {
5541
5280
  * Specifies if radio-button within group must be checked
5542
5281
  */
5543
5282
  "required"?: boolean;
5544
- /**
5545
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Indicates whether to show the validation state. When set to `true`, the component will display validation feedback. Defaults to `false`.
5546
- * @default false
5547
- */
5548
- "showValid"?: boolean;
5549
- /**
5550
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Label based text revealed within tooltip
5551
- */
5552
- "tooltip"?: string;
5553
- /**
5554
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Label tooltip trigger icon
5555
- */
5556
- "tooltipIcon"?: IconName;
5557
- /**
5558
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Change color of an icon that triggers tooltip to one of the Riverty color tokens
5559
- */
5560
- "tooltipIconColor"?: string;
5561
5283
  /**
5562
5284
  * Apply validation success visual style
5563
5285
  */
5564
5286
  "valid"?: boolean;
5565
- /**
5566
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Set custom message if the element meets all its validation constraints.
5567
- */
5568
- "validMessage"?: string;
5569
5287
  /**
5570
5288
  * Displays currently selected value
5571
5289
  */
@@ -5597,10 +5315,6 @@ declare namespace LocalJSX {
5597
5315
  * Prevent user interaction and apply disabled style
5598
5316
  */
5599
5317
  "disabled"?: boolean;
5600
- /**
5601
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Defines the trailing icon for select in disabled state
5602
- */
5603
- "disabledIcon"?: IconName;
5604
5318
  /**
5605
5319
  * Custom validation error message
5606
5320
  */
@@ -5638,19 +5352,6 @@ declare namespace LocalJSX {
5638
5352
  * The text on the label
5639
5353
  */
5640
5354
  "label": string;
5641
- /**
5642
- * _DEPRECATED_ (This property will be removed in November 2025 release. Use `leading slot` instead) Adds an icon defined by name that serves as leading icon in select
5643
- */
5644
- "leadingIcon"?: IconName;
5645
- /**
5646
- * _DEPRECATED_ (This property will be removed in November 2025 release. Use `leading slot` instead) Define size of an icon that serves as leading icon in select
5647
- * @default 's'
5648
- */
5649
- "leadingIconSize"?: IconSize;
5650
- /**
5651
- * _DEPRECATED_ (This property will be removed in November 2025 release. Use `leading slot` instead) Adds an icon defined by file source that serves as leading icon in select
5652
- */
5653
- "leadingIconSrc"?: string;
5654
5355
  /**
5655
5356
  * Define wether listbox appears on top or at the bottom of the select
5656
5357
  * @default 'bottom'
@@ -5690,14 +5391,6 @@ declare namespace LocalJSX {
5690
5391
  state: string,
5691
5392
  message: string
5692
5393
  }>) => void;
5693
- /**
5694
- * _DEPRECATED_ (This property will be removed in November 2025 release. Use `fieldIndicator` instead) Marks the field as optional
5695
- */
5696
- "optional"?: boolean;
5697
- /**
5698
- * _DEPRECATED_ (This property will be removed in November 2025 release. Use `fieldIndicator` instead) Define the optional marker text if the field is marked as optional
5699
- */
5700
- "optionalText"?: string;
5701
5394
  /**
5702
5395
  * Text that is presented until an option has been selected
5703
5396
  */
@@ -5710,50 +5403,15 @@ declare namespace LocalJSX {
5710
5403
  * Specifies that select value is required
5711
5404
  */
5712
5405
  "required"?: boolean;
5713
- /**
5714
- * Controls the visibility of validation indicators for the field.
5715
- * @default false
5716
- */
5717
- "showValid"?: boolean;
5718
5406
  /**
5719
5407
  * Defines aria label for combobox toggle button
5720
5408
  * @default "Toggle combobox"
5721
5409
  */
5722
5410
  "toggleButtonAriaLabel"?: string;
5723
- /**
5724
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Label tooltip text
5725
- */
5726
- "tooltip"?: string;
5727
- /**
5728
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Label tooltip trigger icon
5729
- */
5730
- "tooltipIcon"?: IconName;
5731
- /**
5732
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Change color of an icon that triggers tooltip to one of the Riverty color tokens.
5733
- */
5734
- "tooltipIconColor"?: string;
5735
- /**
5736
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Defines the trailing icon defined by name for select, Default: 'andle-down'
5737
- * @default 'angle-down'
5738
- */
5739
- "trailingIcon"?: IconName;
5740
- /**
5741
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Defines the trailing icon defined by source for select
5742
- */
5743
- "trailingIconSrc"?: string;
5744
- /**
5745
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Define size of an icon that serves as trailing icon in select
5746
- * @default 's'
5747
- */
5748
- "tralingIconSize"?: IconSize;
5749
5411
  /**
5750
5412
  * Visual indication of valid state
5751
5413
  */
5752
5414
  "valid"?: boolean;
5753
- /**
5754
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Set custom message if the element meets all its validation constraints.
5755
- */
5756
- "validMessage"?: string;
5757
5415
  /**
5758
5416
  * Selected value
5759
5417
  */
@@ -5920,6 +5578,25 @@ declare namespace LocalJSX {
5920
5578
  }>) => void;
5921
5579
  }
5922
5580
  interface RTabsList {
5581
+ /**
5582
+ * Border style of the active tab
5583
+ * @default 'standard'
5584
+ */
5585
+ "border"?: ActiveTabBorder;
5586
+ /**
5587
+ * Tooltip visibility for left scroll button
5588
+ */
5589
+ "scrollLeftTooltip"?: string;
5590
+ /**
5591
+ * Tooltip visibility for left right button
5592
+ */
5593
+ "scrollRightTooltip"?: string;
5594
+ /**
5595
+ * Visual variant of the tab list
5596
+ * @defaulr 'expanded'
5597
+ * @default 'expanded'
5598
+ */
5599
+ "variant"?: TabListVariant;
5923
5600
  }
5924
5601
  interface RTextarea {
5925
5602
  /**
@@ -6007,14 +5684,6 @@ declare namespace LocalJSX {
6007
5684
  state: string,
6008
5685
  message: string
6009
5686
  }>) => void;
6010
- /**
6011
- * _DEPRECATED_ This property will be removed
6012
- */
6013
- "optional"?: boolean;
6014
- /**
6015
- * _DEPRECATED_ (use `fieldIndicator` instead) Text of an additional marker in the label
6016
- */
6017
- "optionalText"?: string;
6018
5687
  /**
6019
5688
  * Specifies a short hint that describes the expected value of the `<textarea>`, displayed when it is empty.
6020
5689
  * @default 'Provide an input'
@@ -6041,11 +5710,6 @@ declare namespace LocalJSX {
6041
5710
  * Specifies if the character counter should be visible. Note: The counter will only be rendered when a `maxlength` value is provided.
6042
5711
  */
6043
5712
  "showCounter"?: boolean;
6044
- /**
6045
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Controls the visibility of validation indicators for the field.
6046
- * @default false
6047
- */
6048
- "showValid"?: boolean;
6049
5713
  /**
6050
5714
  * Custom message for `tooLong` property of a ValidityState object (set by `maxlength`) within Constrain Validation API.
6051
5715
  */
@@ -6054,26 +5718,10 @@ declare namespace LocalJSX {
6054
5718
  * Set custom message for `tooShort` property of a ValidityState object (set by `minlength`) within Constrain Validation API
6055
5719
  */
6056
5720
  "tooShortMessage"?: string;
6057
- /**
6058
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Tooltip text displayed when the user hovers over the icon, providing additional information.
6059
- */
6060
- "tooltip"?: string;
6061
- /**
6062
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Icon used to trigger the tooltip for the label, providing a visual cue for additional information.
6063
- */
6064
- "tooltipIcon"?: IconName;
6065
- /**
6066
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.) Specifies the color of the tooltip icon from Riverty color tokens. Displayed alongside the label.
6067
- */
6068
- "tooltipIconColor"?: string;
6069
5721
  /**
6070
5722
  * Indicates whether the value of the `<textarea>` is valid based on validation rules.
6071
5723
  */
6072
5724
  "valid"?: boolean;
6073
- /**
6074
- * _DEPRECATED_ (This property will be removed in November 2025 release.) Custom message displayed when the `<textarea>` value is valid, providing positive feedback to the user.
6075
- */
6076
- "validMessage"?: string;
6077
5725
  /**
6078
5726
  * Represents the current value of the `<textarea>`, reflecting the content entered by the user or provided programmatically.
6079
5727
  * @default this.textareaSlotValue
@@ -6114,10 +5762,6 @@ declare namespace LocalJSX {
6114
5762
  * @default "manual"
6115
5763
  */
6116
5764
  "dismissMode"?: ToastDismissMode;
6117
- /**
6118
- * @deprecated Use `dismissMode="manual"` instead. Will be removed November 2025. Shows button, that dismisses the toast.
6119
- */
6120
- "dismissable"?: boolean;
6121
5765
  /**
6122
5766
  * Specifies the headline text for the alert, summarizing its message or purpose.
6123
5767
  */
@@ -6139,6 +5783,10 @@ declare namespace LocalJSX {
6139
5783
  * Emitted when the toast is dismissed and scheduled for removal from the DOM. Fired by dismiss(), by the auto-dismiss timer (delay), and by the trailing dismiss button. Use this to react to permanent removal (contrast with toastHide which only hides without removal).
6140
5784
  */
6141
5785
  "onDismiss"?: (event: RToastCustomEvent<any>) => void;
5786
+ /**
5787
+ * Emitted when the dismiss toast animation is complete and the element has fully disappeared from the view. Fired by dismiss(), by the auto-dismiss timer (delay), by changing open property, and by the trailing dismiss button.
5788
+ */
5789
+ "onDismissed"?: (event: RToastCustomEvent<any>) => void;
6142
5790
  /**
6143
5791
  * Emitted when the toast transitions to a hidden state but remains in the DOM. Fired by hide(), by toggle() when resulting state is hidden, and when the 'open' prop changes causing the toast to hide. Not emitted on dismiss() (which removes the element) — use 'toastDismiss' for that case.
6144
5792
  */
@@ -6194,7 +5842,6 @@ declare namespace LocalJSX {
6194
5842
  }
6195
5843
  interface IntrinsicElements {
6196
5844
  "r-accordion": RAccordion;
6197
- "r-accordion-item": RAccordionItem;
6198
5845
  "r-accordion-panel": RAccordionPanel;
6199
5846
  "r-accordion-section": RAccordionSection;
6200
5847
  "r-accordion-trigger": RAccordionTrigger;
@@ -6262,11 +5909,6 @@ declare module "@stencil/core" {
6262
5909
  * ```
6263
5910
  */
6264
5911
  "r-accordion": LocalJSX.RAccordion & JSXBase.HTMLAttributes<HTMLRAccordionElement>;
6265
- /**
6266
- * An accordion item represents a section within an accordion.
6267
- * Always use `<r-accordion-item>` inside a `<r-accordion>`.
6268
- */
6269
- "r-accordion-item": LocalJSX.RAccordionItem & JSXBase.HTMLAttributes<HTMLRAccordionItemElement>;
6270
5912
  "r-accordion-panel": LocalJSX.RAccordionPanel & JSXBase.HTMLAttributes<HTMLRAccordionPanelElement>;
6271
5913
  "r-accordion-section": LocalJSX.RAccordionSection & JSXBase.HTMLAttributes<HTMLRAccordionSectionElement>;
6272
5914
  "r-accordion-trigger": LocalJSX.RAccordionTrigger & JSXBase.HTMLAttributes<HTMLRAccordionTriggerElement>;