@riverty/web-components 6.0.0 → 6.2.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 (274) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/custom-elements.json +259 -2
  3. package/dist/cjs/{index-DJ4H_bFj.js → index-BnETQtSf.js} +9 -382
  4. package/dist/cjs/loader.cjs.js +2 -2
  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 +1 -1
  8. package/dist/cjs/r-accordion.cjs.entry.js +1 -1
  9. package/dist/cjs/r-alert.cjs.entry.js +9 -6
  10. package/dist/cjs/r-badge.cjs.entry.js +1 -1
  11. package/dist/cjs/r-button.cjs.entry.js +6 -2
  12. package/dist/cjs/r-checkbox-group.cjs.entry.js +1 -1
  13. package/dist/cjs/r-checkbox.cjs.entry.js +4 -4
  14. package/dist/cjs/r-design-system-devtools.cjs.entry.js +1 -1
  15. package/dist/cjs/r-dialog.cjs.entry.js +1 -1
  16. package/dist/cjs/r-hint_2.cjs.entry.js +3 -3
  17. package/dist/cjs/r-icon-button_2.cjs.entry.js +27 -7
  18. package/dist/cjs/r-icon.cjs.entry.js +2 -2
  19. package/dist/cjs/r-illustration.cjs.entry.js +396 -0
  20. package/dist/cjs/r-input-code.cjs.entry.js +34 -12
  21. package/dist/cjs/r-input-date.cjs.entry.js +7 -7
  22. package/dist/cjs/r-input-password.cjs.entry.js +3 -3
  23. package/dist/cjs/r-input-phone-number.cjs.entry.js +4 -4
  24. package/dist/cjs/r-input.cjs.entry.js +8 -5
  25. package/dist/cjs/r-list-item.cjs.entry.js +17 -16
  26. package/dist/cjs/r-pagination.cjs.entry.js +56 -50
  27. package/dist/cjs/r-panel.cjs.entry.js +6 -6
  28. package/dist/cjs/r-popover-action.cjs.entry.js +2 -2
  29. package/dist/cjs/r-popover-content.cjs.entry.js +2 -2
  30. package/dist/cjs/r-popover-headline.cjs.entry.js +2 -2
  31. package/dist/cjs/r-popover-trigger.cjs.entry.js +2 -2
  32. package/dist/cjs/r-popover.cjs.entry.js +46 -5
  33. package/dist/cjs/r-progress-bar.cjs.entry.js +2 -2
  34. package/dist/cjs/r-radio-button-description.cjs.entry.js +2 -2
  35. package/dist/cjs/r-radio-button-leading.cjs.entry.js +2 -2
  36. package/dist/cjs/r-radio-button-title.cjs.entry.js +2 -2
  37. package/dist/cjs/r-radio-button-trailing.cjs.entry.js +2 -2
  38. package/dist/cjs/r-radio-button.cjs.entry.js +8 -7
  39. package/dist/cjs/r-radio-group.cjs.entry.js +83 -10
  40. package/dist/cjs/r-select-option.cjs.entry.js +2 -2
  41. package/dist/cjs/r-select.cjs.entry.js +6 -4
  42. package/dist/cjs/r-skip-link.cjs.entry.js +2 -2
  43. package/dist/cjs/r-stepper-item.cjs.entry.js +19 -4
  44. package/dist/cjs/r-stepper.cjs.entry.js +76 -3
  45. package/dist/cjs/r-tab-panel.cjs.entry.js +2 -2
  46. package/dist/cjs/r-tab.cjs.entry.js +7 -3
  47. package/dist/cjs/r-tabs-list.cjs.entry.js +161 -3
  48. package/dist/cjs/r-tabs.cjs.entry.js +35 -7
  49. package/dist/cjs/r-textarea.cjs.entry.js +2 -2
  50. package/dist/cjs/r-toast-group.cjs.entry.js +13 -4
  51. package/dist/cjs/r-toast.cjs.entry.js +104 -15
  52. package/dist/cjs/web-components.cjs.js +2 -2
  53. package/dist/collection/collection-manifest.json +1 -0
  54. package/dist/collection/components/alert/alert.css +6 -6
  55. package/dist/collection/components/alert/alert.js +7 -4
  56. package/dist/collection/components/button/button.js +30 -1
  57. package/dist/collection/components/button/exports.js +1 -0
  58. package/dist/collection/components/checkbox/checkbox.js +3 -3
  59. package/dist/collection/components/icon/exports.js +1 -1
  60. package/dist/collection/components/icon/icon.js +1 -1
  61. package/dist/collection/components/icon/riverty-kit.js +1 -1
  62. package/dist/collection/components/icon-button/icon-button.js +22 -3
  63. package/dist/collection/components/illustration/data.js +112 -0
  64. package/dist/collection/components/illustration/exports.js +3 -0
  65. package/dist/collection/components/illustration/illustration.js +540 -0
  66. package/dist/collection/components/illustration/illustration.scss +56 -0
  67. package/dist/collection/components/illustration/illustrations-ui-kit.js +2 -0
  68. package/dist/collection/components/input/exports.js +3 -0
  69. package/dist/collection/components/input/input.css +3 -0
  70. package/dist/collection/components/input/input.js +100 -3
  71. package/dist/collection/components/input-code/exports.js +2 -2
  72. package/dist/collection/components/input-code/input-code.css +6 -0
  73. package/dist/collection/components/input-code/input-code.js +54 -16
  74. package/dist/collection/components/input-date/input-date.js +6 -6
  75. package/dist/collection/components/input-password/input-password.js +2 -2
  76. package/dist/collection/components/input-phone-number/input-phone-number.js +3 -3
  77. package/dist/collection/components/label/label.js +2 -2
  78. package/dist/collection/components/list-item/list-item/list-item.css +46 -12
  79. package/dist/collection/components/list-item/list-item/list-item.js +34 -14
  80. package/dist/collection/components/pagination/pagination.css +33 -72
  81. package/dist/collection/components/pagination/pagination.js +194 -48
  82. package/dist/collection/components/panel/panel.css +40 -17
  83. package/dist/collection/components/panel/panel.js +6 -6
  84. package/dist/collection/components/popover/popover.css +0 -1
  85. package/dist/collection/components/popover/popover.js +44 -3
  86. package/dist/collection/components/popover-action/popover-action.js +1 -1
  87. package/dist/collection/components/popover-content/popover-content.js +1 -1
  88. package/dist/collection/components/popover-headline/popover-headline.js +1 -1
  89. package/dist/collection/components/popover-trigger/popover-trigger.js +1 -1
  90. package/dist/collection/components/progress-bar/progress-bar.js +1 -1
  91. package/dist/collection/components/radio-button/radio-button.js +7 -6
  92. package/dist/collection/components/radio-button-description/radio-button-description.js +1 -1
  93. package/dist/collection/components/radio-button-leading/radio-button-leading.js +1 -1
  94. package/dist/collection/components/radio-button-title/radio-button-title.js +1 -1
  95. package/dist/collection/components/radio-button-trailing/radio-button-trailing.js +1 -1
  96. package/dist/collection/components/radio-group/radio-group.css +4 -1
  97. package/dist/collection/components/radio-group/radio-group.js +100 -8
  98. package/dist/collection/components/select/select.js +5 -3
  99. package/dist/collection/components/select-option/select-option.js +1 -1
  100. package/dist/collection/components/skip-link/skip-link.js +1 -1
  101. package/dist/collection/components/stepper/stepper.css +5 -2
  102. package/dist/collection/components/stepper/stepper.js +125 -1
  103. package/dist/collection/components/stepper-item/stepper-item.css +25 -12
  104. package/dist/collection/components/stepper-item/stepper-item.js +36 -2
  105. package/dist/collection/components/tab/tab.css +29 -29
  106. package/dist/collection/components/tab/tab.js +5 -1
  107. package/dist/collection/components/tab-panel/tab-panel.js +1 -1
  108. package/dist/collection/components/tabs/tabs.js +34 -6
  109. package/dist/collection/components/tabs-list/exports.js +2 -0
  110. package/dist/collection/components/tabs-list/tabs-list.css +43 -2
  111. package/dist/collection/components/tabs-list/tabs-list.js +277 -1
  112. package/dist/collection/components/textarea/textarea.css +1 -1
  113. package/dist/collection/components/toast/toast.css +37 -11
  114. package/dist/collection/components/toast/toast.js +140 -18
  115. package/dist/collection/components/toast-group/toast-group.css +5 -11
  116. package/dist/collection/components/toast-group/toast-group.js +12 -3
  117. package/dist/collection/components/tooltip/tooltip.js +24 -4
  118. package/dist/esm/{index-Da7qOBFr.js → index-CTxpqopm.js} +9 -382
  119. package/dist/esm/loader.js +3 -3
  120. package/dist/esm/r-accordion-panel.entry.js +1 -1
  121. package/dist/esm/r-accordion-section.entry.js +1 -1
  122. package/dist/esm/r-accordion-trigger.entry.js +1 -1
  123. package/dist/esm/r-accordion.entry.js +1 -1
  124. package/dist/esm/r-alert.entry.js +9 -6
  125. package/dist/esm/r-badge.entry.js +1 -1
  126. package/dist/esm/r-button.entry.js +6 -2
  127. package/dist/esm/r-checkbox-group.entry.js +1 -1
  128. package/dist/esm/r-checkbox.entry.js +4 -4
  129. package/dist/esm/r-design-system-devtools.entry.js +1 -1
  130. package/dist/esm/r-dialog.entry.js +1 -1
  131. package/dist/esm/r-hint_2.entry.js +3 -3
  132. package/dist/esm/r-icon-button_2.entry.js +27 -7
  133. package/dist/esm/r-icon.entry.js +2 -2
  134. package/dist/esm/r-illustration.entry.js +394 -0
  135. package/dist/esm/r-input-code.entry.js +34 -12
  136. package/dist/esm/r-input-date.entry.js +7 -7
  137. package/dist/esm/r-input-password.entry.js +3 -3
  138. package/dist/esm/r-input-phone-number.entry.js +4 -4
  139. package/dist/esm/r-input.entry.js +8 -5
  140. package/dist/esm/r-list-item.entry.js +17 -16
  141. package/dist/esm/r-pagination.entry.js +56 -50
  142. package/dist/esm/r-panel.entry.js +6 -6
  143. package/dist/esm/r-popover-action.entry.js +2 -2
  144. package/dist/esm/r-popover-content.entry.js +2 -2
  145. package/dist/esm/r-popover-headline.entry.js +2 -2
  146. package/dist/esm/r-popover-trigger.entry.js +2 -2
  147. package/dist/esm/r-popover.entry.js +46 -5
  148. package/dist/esm/r-progress-bar.entry.js +2 -2
  149. package/dist/esm/r-radio-button-description.entry.js +2 -2
  150. package/dist/esm/r-radio-button-leading.entry.js +2 -2
  151. package/dist/esm/r-radio-button-title.entry.js +2 -2
  152. package/dist/esm/r-radio-button-trailing.entry.js +2 -2
  153. package/dist/esm/r-radio-button.entry.js +8 -7
  154. package/dist/esm/r-radio-group.entry.js +83 -10
  155. package/dist/esm/r-select-option.entry.js +2 -2
  156. package/dist/esm/r-select.entry.js +6 -4
  157. package/dist/esm/r-skip-link.entry.js +2 -2
  158. package/dist/esm/r-stepper-item.entry.js +19 -4
  159. package/dist/esm/r-stepper.entry.js +76 -3
  160. package/dist/esm/r-tab-panel.entry.js +2 -2
  161. package/dist/esm/r-tab.entry.js +7 -3
  162. package/dist/esm/r-tabs-list.entry.js +161 -3
  163. package/dist/esm/r-tabs.entry.js +35 -7
  164. package/dist/esm/r-textarea.entry.js +2 -2
  165. package/dist/esm/r-toast-group.entry.js +13 -4
  166. package/dist/esm/r-toast.entry.js +104 -15
  167. package/dist/esm/web-components.js +3 -3
  168. package/dist/types/components/alert/alert.d.ts +1 -0
  169. package/dist/types/components/button/button.d.ts +8 -1
  170. package/dist/types/components/button/exports.d.ts +2 -0
  171. package/dist/types/components/icon/{icon-data.d.ts → data.d.ts} +2 -1
  172. package/dist/types/components/icon/exports.d.ts +2 -1
  173. package/dist/types/components/icon/riverty-kit.d.ts +2 -1
  174. package/dist/types/components/icon-button/icon-button.d.ts +4 -0
  175. package/dist/types/components/illustration/data.d.ts +52 -0
  176. package/dist/types/components/illustration/exports.d.ts +23 -0
  177. package/dist/types/components/illustration/illustration.d.ts +51 -0
  178. package/dist/types/components/illustration/illustrations-ui-kit.d.ts +21 -0
  179. package/dist/types/components/input/exports.d.ts +6 -0
  180. package/dist/types/components/input/input.d.ts +31 -1
  181. package/dist/types/components/input-code/exports.d.ts +4 -4
  182. package/dist/types/components/input-code/input-code.d.ts +18 -4
  183. package/dist/types/components/list-item/list-item/list-item.d.ts +5 -3
  184. package/dist/types/components/pagination/pagination.d.ts +19 -0
  185. package/dist/types/components/popover/popover.d.ts +9 -0
  186. package/dist/types/components/radio-group/radio-group.d.ts +16 -0
  187. package/dist/types/components/stepper/stepper.d.ts +11 -0
  188. package/dist/types/components/stepper-item/stepper-item.d.ts +7 -0
  189. package/dist/types/components/tabs/tabs.d.ts +1 -0
  190. package/dist/types/components/tabs-list/exports.d.ts +4 -0
  191. package/dist/types/components/tabs-list/tabs-list.d.ts +38 -0
  192. package/dist/types/components/toast/toast.d.ts +20 -3
  193. package/dist/types/components/tooltip/tooltip.d.ts +5 -0
  194. package/dist/types/components.d.ts +360 -17
  195. package/dist/web-components/p-02b22f8e.entry.js +1 -0
  196. package/dist/web-components/{p-d054eb4d.entry.js → p-075a8dc8.entry.js} +1 -1
  197. package/dist/web-components/{p-8a66d20c.entry.js → p-0a34d33b.entry.js} +1 -1
  198. package/dist/web-components/{p-8c31cbd5.entry.js → p-10cc9983.entry.js} +1 -1
  199. package/dist/web-components/{p-d7726e46.entry.js → p-253068b9.entry.js} +1 -1
  200. package/dist/web-components/{p-3884c6e7.entry.js → p-3b8c8951.entry.js} +1 -1
  201. package/dist/web-components/{p-550e2237.entry.js → p-3beacdab.entry.js} +1 -1
  202. package/dist/web-components/{p-e2188953.entry.js → p-4214867d.entry.js} +1 -1
  203. package/dist/web-components/{p-3f60c6c0.entry.js → p-42c857e9.entry.js} +1 -1
  204. package/dist/web-components/{p-7fed6f4d.entry.js → p-44f87e16.entry.js} +1 -1
  205. package/dist/web-components/p-477614c5.entry.js +1 -0
  206. package/dist/web-components/{p-1da75540.entry.js → p-495ba3d2.entry.js} +1 -1
  207. package/dist/web-components/p-4de76291.entry.js +1 -0
  208. package/dist/web-components/{p-05738503.entry.js → p-55600d47.entry.js} +1 -1
  209. package/dist/web-components/p-562051aa.entry.js +1 -0
  210. package/dist/web-components/p-5b850e0f.entry.js +1 -0
  211. package/dist/web-components/p-6013dfc8.entry.js +1 -0
  212. package/dist/web-components/{p-6cc2ea2c.entry.js → p-62e7ae04.entry.js} +1 -1
  213. package/dist/web-components/p-71519d37.entry.js +1 -0
  214. package/dist/web-components/p-88f7b47f.entry.js +1 -0
  215. package/dist/web-components/p-8975a6a3.entry.js +1 -0
  216. package/dist/web-components/p-8e125826.entry.js +1 -0
  217. package/dist/web-components/p-91cc0bde.entry.js +1 -0
  218. package/dist/web-components/{p-0347feff.entry.js → p-93435fcd.entry.js} +1 -1
  219. package/dist/web-components/p-947969d7.entry.js +1 -0
  220. package/dist/web-components/p-95396b5c.entry.js +1 -0
  221. package/dist/web-components/p-9de3a1a5.entry.js +1 -0
  222. package/dist/web-components/p-9f583ed1.entry.js +1 -0
  223. package/dist/web-components/p-CTxpqopm.js +2 -0
  224. package/dist/web-components/{p-e5945c01.entry.js → p-a1086abe.entry.js} +1 -1
  225. package/dist/web-components/{p-f9d5004c.entry.js → p-bbba6d79.entry.js} +1 -1
  226. package/dist/web-components/{p-c478712b.entry.js → p-bde44ec4.entry.js} +1 -1
  227. package/dist/web-components/p-bfc7e6c0.entry.js +1 -0
  228. package/dist/web-components/p-c1030394.entry.js +1 -0
  229. package/dist/web-components/p-c1f59ed1.entry.js +1 -0
  230. package/dist/web-components/{p-26ef77d6.entry.js → p-c80a5541.entry.js} +1 -1
  231. package/dist/web-components/{p-9ef1bbee.entry.js → p-c96ee61a.entry.js} +1 -1
  232. package/dist/web-components/{p-8dac326b.entry.js → p-caf8f067.entry.js} +1 -1
  233. package/dist/web-components/p-cc363c3d.entry.js +1 -0
  234. package/dist/web-components/p-cf4ff357.entry.js +1 -0
  235. package/dist/web-components/p-d0310ed4.entry.js +1 -0
  236. package/dist/web-components/p-d1412932.entry.js +1 -0
  237. package/dist/web-components/{p-62b788bf.entry.js → p-d2447e30.entry.js} +1 -1
  238. package/dist/web-components/p-dc9cca06.entry.js +1 -0
  239. package/dist/web-components/p-e5b943a2.entry.js +1 -0
  240. package/dist/web-components/{p-4cc58c6a.entry.js → p-e67b13df.entry.js} +1 -1
  241. package/dist/web-components/p-efec231a.entry.js +1 -0
  242. package/dist/web-components/{p-4595fa8e.entry.js → p-f867e4c3.entry.js} +1 -1
  243. package/dist/web-components/web-components.esm.js +1 -1
  244. package/package.json +5 -2
  245. package/dist/collection/components/icon/bundled-icons/all-kit.json +0 -1
  246. package/dist/collection/components/icon/bundled-icons/riverty-kit.json +0 -1
  247. package/dist/web-components/bundled-icons/all-kit.json +0 -1
  248. package/dist/web-components/bundled-icons/riverty-kit.json +0 -1
  249. package/dist/web-components/p-0e4c8bf1.entry.js +0 -1
  250. package/dist/web-components/p-3a5a67e7.entry.js +0 -1
  251. package/dist/web-components/p-4254a383.entry.js +0 -1
  252. package/dist/web-components/p-5441b746.entry.js +0 -1
  253. package/dist/web-components/p-589baaf9.entry.js +0 -1
  254. package/dist/web-components/p-60341de2.entry.js +0 -1
  255. package/dist/web-components/p-60ca994e.entry.js +0 -1
  256. package/dist/web-components/p-6303b9fe.entry.js +0 -1
  257. package/dist/web-components/p-63fd817d.entry.js +0 -1
  258. package/dist/web-components/p-673dbfd0.entry.js +0 -1
  259. package/dist/web-components/p-67fa3f84.entry.js +0 -1
  260. package/dist/web-components/p-6a4f3836.entry.js +0 -1
  261. package/dist/web-components/p-70784685.entry.js +0 -1
  262. package/dist/web-components/p-8b4d2448.entry.js +0 -1
  263. package/dist/web-components/p-Da7qOBFr.js +0 -2
  264. package/dist/web-components/p-a0dbde7c.entry.js +0 -1
  265. package/dist/web-components/p-a71485d8.entry.js +0 -1
  266. package/dist/web-components/p-a7d22c76.entry.js +0 -1
  267. package/dist/web-components/p-ae251d2f.entry.js +0 -1
  268. package/dist/web-components/p-b98ab649.entry.js +0 -1
  269. package/dist/web-components/p-b9e3b3d6.entry.js +0 -1
  270. package/dist/web-components/p-c1e748f2.entry.js +0 -1
  271. package/dist/web-components/p-d433a828.entry.js +0 -1
  272. package/dist/web-components/p-d819c8e5.entry.js +0 -1
  273. package/dist/web-components/p-f7adb875.entry.js +0 -1
  274. /package/dist/collection/components/icon/{icon-data.js → data.js} +0 -0
@@ -9,12 +9,13 @@ import { AccordionSize } from "./components/accordion/exports";
9
9
  import { AlertStatus, AlertTarget } from "./components/alert/exports";
10
10
  import { IconKit, IconName, IconPosition, IconSize, IconVariant } from "./components/icon/exports";
11
11
  import { BadgeVariant } from "./components/badge/exports";
12
- import { ButtonSize, ButtonTarget, ButtonType, ButtonVariant } from "./components/button/exports";
12
+ import { ButtonAriaCurrent, 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";
17
- import { EnterKeyHint, InputMode } from "./components/input-code/exports";
16
+ import { IllustrationName, IllustrationTheme } from "./components/illustration/exports";
17
+ import { AutocapitalizeType, EnterKeyHint, InputAutocomplete, InputMode, InputType } from "./components/input/exports";
18
+ import { InputCodeEnterKeyHint, InputCodeInputMode } from "./components/input-code/exports";
18
19
  import { PasswordAutocomplete } from "./components/input-password/exports";
19
20
  import { ListItemVariant, TrailingTextAlignment } from "./components/list-item/list-item/exports";
20
21
  import { PaginationItemsPerPageOptions, PaginationListBoxPosition, PaginationVariant } from "./components/pagination/exports";
@@ -25,18 +26,20 @@ import { Event } from "./stencil-public-runtime";
25
26
  import { RadioGroupVariant } from "./components/radio-group/exports";
26
27
  import { ListboxPosition } from "./components/select/exports";
27
28
  import { SkipLinkPosition } from "./components/skip-link/exports";
29
+ import { ActiveTabBorder, TabListVariant } from "./components/tabs-list/exports";
28
30
  import { TextareaResize } from "./components/textarea/exports";
29
31
  import { ToastActionTarget, ToastDismissMode, ToastStatus } from "./components/toast/exports";
30
32
  export { AccordionSize } from "./components/accordion/exports";
31
33
  export { AlertStatus, AlertTarget } from "./components/alert/exports";
32
34
  export { IconKit, IconName, IconPosition, IconSize, IconVariant } from "./components/icon/exports";
33
35
  export { BadgeVariant } from "./components/badge/exports";
34
- export { ButtonSize, ButtonTarget, ButtonType, ButtonVariant } from "./components/button/exports";
36
+ export { ButtonAriaCurrent, ButtonSize, ButtonTarget, ButtonType, ButtonVariant } from "./components/button/exports";
35
37
  export { DialogSize } from "./components/dialog/exports";
36
38
  export { HintVariant } from "./components/hint/exports";
37
39
  export { TooltipPosition } from "./components/tooltip/exports";
38
- export { InputAutocomplete, InputType } from "./components/input/exports";
39
- export { EnterKeyHint, InputMode } from "./components/input-code/exports";
40
+ export { IllustrationName, IllustrationTheme } from "./components/illustration/exports";
41
+ export { AutocapitalizeType, EnterKeyHint, InputAutocomplete, InputMode, InputType } from "./components/input/exports";
42
+ export { InputCodeEnterKeyHint, InputCodeInputMode } from "./components/input-code/exports";
40
43
  export { PasswordAutocomplete } from "./components/input-password/exports";
41
44
  export { ListItemVariant, TrailingTextAlignment } from "./components/list-item/list-item/exports";
42
45
  export { PaginationItemsPerPageOptions, PaginationListBoxPosition, PaginationVariant } from "./components/pagination/exports";
@@ -47,6 +50,7 @@ export { Event } from "./stencil-public-runtime";
47
50
  export { RadioGroupVariant } from "./components/radio-group/exports";
48
51
  export { ListboxPosition } from "./components/select/exports";
49
52
  export { SkipLinkPosition } from "./components/skip-link/exports";
53
+ export { ActiveTabBorder, TabListVariant } from "./components/tabs-list/exports";
50
54
  export { TextareaResize } from "./components/textarea/exports";
51
55
  export { ToastActionTarget, ToastDismissMode, ToastStatus } from "./components/toast/exports";
52
56
  export namespace Components {
@@ -244,6 +248,10 @@ export namespace Components {
244
248
  * @default 'start'
245
249
  */
246
250
  "iconPosition": IconPosition;
251
+ /**
252
+ * Indicates the current item within a set of related elements. Corresponds to [native `aria-current` attribute](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-current)
253
+ */
254
+ "rAriaCurrent"?: ButtonAriaCurrent;
247
255
  /**
248
256
  * Sets string value for `aria-label` attribute (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label)
249
257
  */
@@ -609,6 +617,10 @@ export namespace Components {
609
617
  * Name of the icon to display within the button.
610
618
  */
611
619
  "name": IconName;
620
+ /**
621
+ * Defines the tabindex of the button for keyboard navigation.
622
+ */
623
+ "rTabindex"?: number;
612
624
  /**
613
625
  * Remove focus from the button
614
626
  */
@@ -641,7 +653,58 @@ export namespace Components {
641
653
  */
642
654
  "variant": 'standard' | 'contained';
643
655
  }
656
+ interface RIllustration {
657
+ /**
658
+ * Accessibility: title for the image representing "failed-to-load" state
659
+ * @default 'Failed to load illustration'
660
+ */
661
+ "emptyImageTitle"?: string;
662
+ /**
663
+ * Accessibility: title for the marker representing "failed-to-load" state
664
+ * @default 'Failed to load illustration marker'
665
+ */
666
+ "emptyMarkerTitle"?: string;
667
+ /**
668
+ * Error message text to display when illustration fails to load
669
+ * @default 'Failed to load illustration'
670
+ */
671
+ "errorMessage"?: string;
672
+ /**
673
+ * Maximum width constraint for responsive behavior
674
+ */
675
+ "maxWidth"?: string;
676
+ /**
677
+ * Minimum width constraint for responsive behavior
678
+ */
679
+ "minWidth"?: string;
680
+ /**
681
+ * Name of illustration to select from the set
682
+ */
683
+ "name"?: IllustrationName;
684
+ /**
685
+ * Optional description element to be added inside the SVG for accessibility
686
+ */
687
+ "svgDescription"?: string;
688
+ /**
689
+ * Optional title element to be added inside the SVG for accessibility
690
+ */
691
+ "svgTitle"?: string;
692
+ /**
693
+ * Theme mode for illustration rendering
694
+ * @default 'auto'
695
+ */
696
+ "theme": IllustrationTheme;
697
+ /**
698
+ * Defines initial width of an illustration.
699
+ * @default '342px'
700
+ */
701
+ "width"?: string;
702
+ }
644
703
  interface RInput {
704
+ /**
705
+ * Controls automatic capitalization of text input on mobile devices. - `off` or `none`: No automatic capitalization - `on` or `sentences`: Capitalize first letter of each sentence (default for most text inputs) - `words`: Capitalize first letter of each word - `characters`: Capitalize all characters
706
+ */
707
+ "autocapitalize"?: AutocapitalizeType;
645
708
  /**
646
709
  * Native `autocomplete` hint for browsers / password managers.
647
710
  */
@@ -667,6 +730,10 @@ export namespace Components {
667
730
  * Disables the field (non-interactive, excluded from form submission).
668
731
  */
669
732
  "disabled"?: boolean;
733
+ /**
734
+ * 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)
735
+ */
736
+ "enterkeyhint"?: EnterKeyHint;
670
737
  /**
671
738
  * Manual error message independent of native validation messages. When set, native validation messages are suppressed.
672
739
  */
@@ -699,6 +766,10 @@ export namespace Components {
699
766
  * Optional contextual help text displayed beneath the field.
700
767
  */
701
768
  "hint"?: string;
769
+ /**
770
+ * Hint to the browser about which keyboard to display on mobile devices.
771
+ */
772
+ "inputmode"?: InputMode;
702
773
  /**
703
774
  * When true, hides visual label & messages (for internal layout use; accessibility still preserved).
704
775
  */
@@ -802,6 +873,10 @@ export namespace Components {
802
873
  * Set the current value programmatically (does not fire native input/change automatically).
803
874
  */
804
875
  "setValue": (value: string) => Promise<void>;
876
+ /**
877
+ * Controls browser spell-checking for text input. When true, enables spell-checking; when false, disables it. Browser default behavior applies when not specified.
878
+ */
879
+ "spellcheck"?: boolean;
805
880
  /**
806
881
  * Step interval for numeric/date input types.
807
882
  */
@@ -873,7 +948,7 @@ export namespace Components {
873
948
  * Specifies the enter key hint for the virtual keyboard. Default is 'done' for OTP completion.
874
949
  * @default : 'done'
875
950
  */
876
- "enterkeyhint"?: EnterKeyHint;
951
+ "enterkeyhint"?: InputCodeEnterKeyHint;
877
952
  /**
878
953
  * The way to provide error message separately from Constraint Validation API.
879
954
  */
@@ -915,7 +990,7 @@ export namespace Components {
915
990
  * Specifies the input mode for the virtual keyboard on mobile devices. Default is 'numeric' for OTP codes.
916
991
  * @default : 'numeric'
917
992
  */
918
- "inputmode"?: InputMode;
993
+ "inputmode"?: InputCodeInputMode;
919
994
  /**
920
995
  * Validity indicator, serving to change UI of the component
921
996
  */
@@ -1387,6 +1462,10 @@ export namespace Components {
1387
1462
  "fieldIndicator"?: string;
1388
1463
  }
1389
1464
  interface RListItem {
1465
+ /**
1466
+ * Indicates whether the list item is currently active (e.g., represents the current page).
1467
+ */
1468
+ "active"?: boolean;
1390
1469
  /**
1391
1470
  * Defines the alignment style for the trailing text.
1392
1471
  */
@@ -1460,21 +1539,41 @@ export namespace Components {
1460
1539
  * @default true
1461
1540
  */
1462
1541
  "arrows": boolean;
1542
+ /**
1543
+ * Label for Ellipsis stepper. Important to ensure accessibility for screen reader users.
1544
+ * @default 'Ellipsis indicating skipped pages'
1545
+ */
1546
+ "ellipsisLabel": string;
1463
1547
  /**
1464
1548
  * Text to display after total results
1465
1549
  * @default 'results'
1466
1550
  */
1467
1551
  "endText": string;
1552
+ /**
1553
+ * Label for First Page button. Important to ensure accessibility for screen reader users.
1554
+ * @default 'Go to the first page'
1555
+ */
1556
+ "firstPageButtonLabel": string;
1468
1557
  /**
1469
1558
  * Amount of items to show per page
1470
1559
  * @default 5
1471
1560
  */
1472
1561
  "itemsPerPage": number;
1562
+ /**
1563
+ * Label for Items per page select.
1564
+ * @default 'Items per page'
1565
+ */
1566
+ "itemsPerPageLabel": string;
1473
1567
  /**
1474
1568
  * Items per page options for dropdown
1475
1569
  * @default [5, 10, 15, 20, 25, 50, 100]
1476
1570
  */
1477
1571
  "itemsPerPageOptions": PaginationItemsPerPageOptions[];
1572
+ /**
1573
+ * Label for Last Page button. Important to ensure accessibility for screen reader users.
1574
+ * @default 'Go to the last page'
1575
+ */
1576
+ "lastPageButtonLabel": string;
1478
1577
  /**
1479
1578
  * Position of the list box
1480
1579
  * @default 'top'
@@ -1485,11 +1584,26 @@ export namespace Components {
1485
1584
  * @default 'of'
1486
1585
  */
1487
1586
  "middleText": string;
1587
+ /**
1588
+ * Label for Next Page button. Important to ensure accessibility for screen reader users.
1589
+ * @default 'Go to the next page'
1590
+ */
1591
+ "nextPageButtonLabel": string;
1488
1592
  /**
1489
1593
  * Current page number
1490
1594
  * @default 1
1491
1595
  */
1492
1596
  "pageActive": number;
1597
+ /**
1598
+ * Label for Page number buttons. Important to ensure accessibility for screen reader users.
1599
+ * @default 'Page'
1600
+ */
1601
+ "pageLabel": string;
1602
+ /**
1603
+ * Label for Previous Page button. Important to ensure accessibility for screen reader users.
1604
+ * @default 'Go to the previous page'
1605
+ */
1606
+ "previousPageButtonLabel": string;
1493
1607
  /**
1494
1608
  * UI: Result Line and select field present/absent
1495
1609
  * @default false
@@ -1551,12 +1665,12 @@ export namespace Components {
1551
1665
  "header"?: string;
1552
1666
  /**
1553
1667
  * Aria-label text for collapse
1554
- * @default 'collapse-panel'
1668
+ * @default 'Collapse panel'
1555
1669
  */
1556
1670
  "labelCollapse": string;
1557
1671
  /**
1558
1672
  * Aria-label text for expand
1559
- * @default 'expand-panel'
1673
+ * @default 'Expand panel'
1560
1674
  */
1561
1675
  "labelExpand": string;
1562
1676
  /**
@@ -1838,6 +1952,10 @@ export namespace Components {
1838
1952
  * Specifies if element must be ignored during validation of the form elements
1839
1953
  */
1840
1954
  "novalidate"?: boolean;
1955
+ /**
1956
+ * For nested radio groups: specifies the parent radio button value that this nested group belongs to. When the parent group's value changes to a different value, this nested group will be automatically reset. This ensures nested selections are only maintained when their parent context is active.
1957
+ */
1958
+ "parentValue"?: string;
1841
1959
  /**
1842
1960
  * Validates the radio group and displays the validity state.
1843
1961
  */
@@ -2156,6 +2274,15 @@ export namespace Components {
2156
2274
  * @default 0
2157
2275
  */
2158
2276
  "completed": number;
2277
+ /**
2278
+ * Label for completed steps for screen reader users.
2279
+ * @default 'Completed'
2280
+ */
2281
+ "completedStepsLabel"?: string;
2282
+ /**
2283
+ * Label for the stepper for screen reader users.
2284
+ */
2285
+ "label"?: string;
2159
2286
  /**
2160
2287
  * Total number of steps. Used when no slot-based steps provided.
2161
2288
  */
@@ -2176,6 +2303,10 @@ export namespace Components {
2176
2303
  * Defines an icon for the step. Optional.
2177
2304
  */
2178
2305
  "icon"?: IconName;
2306
+ /**
2307
+ * Label for the step icon for screen reader users.
2308
+ */
2309
+ "label"?: string;
2179
2310
  /**
2180
2311
  * Defines the step number. Optional.
2181
2312
  */
@@ -2219,6 +2350,25 @@ export namespace Components {
2219
2350
  "navigation"?: boolean;
2220
2351
  }
2221
2352
  interface RTabsList {
2353
+ /**
2354
+ * Border style of the active tab
2355
+ * @default 'standard'
2356
+ */
2357
+ "border": ActiveTabBorder;
2358
+ /**
2359
+ * Tooltip visibility for left scroll button
2360
+ */
2361
+ "scrollLeftTooltip": string;
2362
+ /**
2363
+ * Tooltip visibility for left right button
2364
+ */
2365
+ "scrollRightTooltip": string;
2366
+ /**
2367
+ * Visual variant of the tab list
2368
+ * @defaulr 'expanded'
2369
+ * @default 'expanded'
2370
+ */
2371
+ "variant": TabListVariant;
2222
2372
  }
2223
2373
  interface RTextarea {
2224
2374
  /**
@@ -2408,7 +2558,7 @@ export namespace Components {
2408
2558
  /**
2409
2559
  * Hides toast, keeps it in dom.
2410
2560
  */
2411
- "hide": () => Promise<void>;
2561
+ "hide": () => Promise<this>;
2412
2562
  /**
2413
2563
  * Specifies the URL for the call-to-action link.
2414
2564
  */
@@ -2422,6 +2572,10 @@ export namespace Components {
2422
2572
  * @default true
2423
2573
  */
2424
2574
  "leadingIconVisible": boolean;
2575
+ /**
2576
+ * Measures the natural height of toast and prepares it for reveal animation. This should be called on newly added toasts before they are revealed.
2577
+ */
2578
+ "measureAndPrepareHeight": () => Promise<void>;
2425
2579
  /**
2426
2580
  * Controls if toast is initially shown.
2427
2581
  * @default true
@@ -2430,7 +2584,7 @@ export namespace Components {
2430
2584
  /**
2431
2585
  * Reveals the toast notification by setting it to a visible state. If the auto-dismiss delay is enabled, it will start the timer to automatically dismiss the toast after the specified duration.
2432
2586
  */
2433
- "reveal": () => Promise<void>;
2587
+ "reveal": () => Promise<this>;
2434
2588
  /**
2435
2589
  * Defines the appearance of the dialog based on the message type. Options are: "info", "success", "warning", or "error".
2436
2590
  * @default 'info'
@@ -2444,7 +2598,7 @@ export namespace Components {
2444
2598
  /**
2445
2599
  * Toggles visibility of the toast.
2446
2600
  */
2447
- "toggle": () => Promise<void>;
2601
+ "toggle": () => Promise<this>;
2448
2602
  /**
2449
2603
  * Specifies an optional icon for the trailing slot of the dialog.
2450
2604
  * @default 'cross'
@@ -2498,6 +2652,10 @@ export interface RIconButtonCustomEvent<T> extends CustomEvent<T> {
2498
2652
  detail: T;
2499
2653
  target: HTMLRIconButtonElement;
2500
2654
  }
2655
+ export interface RIllustrationCustomEvent<T> extends CustomEvent<T> {
2656
+ detail: T;
2657
+ target: HTMLRIllustrationElement;
2658
+ }
2501
2659
  export interface RInputCustomEvent<T> extends CustomEvent<T> {
2502
2660
  detail: T;
2503
2661
  target: HTMLRInputElement;
@@ -2809,6 +2967,24 @@ declare global {
2809
2967
  prototype: HTMLRIconButtonElement;
2810
2968
  new (): HTMLRIconButtonElement;
2811
2969
  };
2970
+ interface HTMLRIllustrationElementEventMap {
2971
+ "rFailed": void;
2972
+ "rComplete": void;
2973
+ }
2974
+ interface HTMLRIllustrationElement extends Components.RIllustration, HTMLStencilElement {
2975
+ addEventListener<K extends keyof HTMLRIllustrationElementEventMap>(type: K, listener: (this: HTMLRIllustrationElement, ev: RIllustrationCustomEvent<HTMLRIllustrationElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
2976
+ addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2977
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2978
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
2979
+ removeEventListener<K extends keyof HTMLRIllustrationElementEventMap>(type: K, listener: (this: HTMLRIllustrationElement, ev: RIllustrationCustomEvent<HTMLRIllustrationElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
2980
+ removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
2981
+ removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
2982
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
2983
+ }
2984
+ var HTMLRIllustrationElement: {
2985
+ prototype: HTMLRIllustrationElement;
2986
+ new (): HTMLRIllustrationElement;
2987
+ };
2812
2988
  interface HTMLRInputElementEventMap {
2813
2989
  "rValidate": {
2814
2990
  state: string,
@@ -2853,6 +3029,7 @@ declare global {
2853
3029
  element: HTMLRInputCodeElement,
2854
3030
  value: any
2855
3031
  };
3032
+ "rComplete": { value: string, isComplete: boolean };
2856
3033
  }
2857
3034
  interface HTMLRInputCodeElement extends Components.RInputCode, HTMLStencilElement {
2858
3035
  addEventListener<K extends keyof HTMLRInputCodeElementEventMap>(type: K, listener: (this: HTMLRInputCodeElement, ev: RInputCodeCustomEvent<HTMLRInputCodeElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
@@ -3375,6 +3552,7 @@ declare global {
3375
3552
  "dismiss": any;
3376
3553
  "reveal": any;
3377
3554
  "hide": any;
3555
+ "dismissed": any;
3378
3556
  }
3379
3557
  interface HTMLRToastElement extends Components.RToast, HTMLStencilElement {
3380
3558
  addEventListener<K extends keyof HTMLRToastElementEventMap>(type: K, listener: (this: HTMLRToastElement, ev: RToastCustomEvent<HTMLRToastElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
@@ -3430,6 +3608,7 @@ declare global {
3430
3608
  "r-hint": HTMLRHintElement;
3431
3609
  "r-icon": HTMLRIconElement;
3432
3610
  "r-icon-button": HTMLRIconButtonElement;
3611
+ "r-illustration": HTMLRIllustrationElement;
3433
3612
  "r-input": HTMLRInputElement;
3434
3613
  "r-input-code": HTMLRInputCodeElement;
3435
3614
  "r-input-date": HTMLRInputDateElement;
@@ -3692,6 +3871,10 @@ declare namespace LocalJSX {
3692
3871
  * Emits `rClick` event on click and keyup
3693
3872
  */
3694
3873
  "onRClick"?: (event: RButtonCustomEvent<any>) => void;
3874
+ /**
3875
+ * Indicates the current item within a set of related elements. Corresponds to [native `aria-current` attribute](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-current)
3876
+ */
3877
+ "rAriaCurrent"?: ButtonAriaCurrent;
3695
3878
  /**
3696
3879
  * Sets string value for `aria-label` attribute (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label)
3697
3880
  */
@@ -4016,6 +4199,10 @@ declare namespace LocalJSX {
4016
4199
  * Emits `rClick` event on click.
4017
4200
  */
4018
4201
  "onRClick"?: (event: RIconButtonCustomEvent<any>) => void;
4202
+ /**
4203
+ * Defines the tabindex of the button for keyboard navigation.
4204
+ */
4205
+ "rTabindex"?: number;
4019
4206
  /**
4020
4207
  * Defines the size of the icon used within the button.
4021
4208
  * @default 'm'
@@ -4036,7 +4223,66 @@ declare namespace LocalJSX {
4036
4223
  */
4037
4224
  "variant"?: 'standard' | 'contained';
4038
4225
  }
4226
+ interface RIllustration {
4227
+ /**
4228
+ * Accessibility: title for the image representing "failed-to-load" state
4229
+ * @default 'Failed to load illustration'
4230
+ */
4231
+ "emptyImageTitle"?: string;
4232
+ /**
4233
+ * Accessibility: title for the marker representing "failed-to-load" state
4234
+ * @default 'Failed to load illustration marker'
4235
+ */
4236
+ "emptyMarkerTitle"?: string;
4237
+ /**
4238
+ * Error message text to display when illustration fails to load
4239
+ * @default 'Failed to load illustration'
4240
+ */
4241
+ "errorMessage"?: string;
4242
+ /**
4243
+ * Maximum width constraint for responsive behavior
4244
+ */
4245
+ "maxWidth"?: string;
4246
+ /**
4247
+ * Minimum width constraint for responsive behavior
4248
+ */
4249
+ "minWidth"?: string;
4250
+ /**
4251
+ * Name of illustration to select from the set
4252
+ */
4253
+ "name"?: IllustrationName;
4254
+ /**
4255
+ * Emitted when illustration completes loading
4256
+ */
4257
+ "onRComplete"?: (event: RIllustrationCustomEvent<void>) => void;
4258
+ /**
4259
+ * Emitted when illustration fails to load
4260
+ */
4261
+ "onRFailed"?: (event: RIllustrationCustomEvent<void>) => void;
4262
+ /**
4263
+ * Optional description element to be added inside the SVG for accessibility
4264
+ */
4265
+ "svgDescription"?: string;
4266
+ /**
4267
+ * Optional title element to be added inside the SVG for accessibility
4268
+ */
4269
+ "svgTitle"?: string;
4270
+ /**
4271
+ * Theme mode for illustration rendering
4272
+ * @default 'auto'
4273
+ */
4274
+ "theme"?: IllustrationTheme;
4275
+ /**
4276
+ * Defines initial width of an illustration.
4277
+ * @default '342px'
4278
+ */
4279
+ "width"?: string;
4280
+ }
4039
4281
  interface RInput {
4282
+ /**
4283
+ * Controls automatic capitalization of text input on mobile devices. - `off` or `none`: No automatic capitalization - `on` or `sentences`: Capitalize first letter of each sentence (default for most text inputs) - `words`: Capitalize first letter of each word - `characters`: Capitalize all characters
4284
+ */
4285
+ "autocapitalize"?: AutocapitalizeType;
4040
4286
  /**
4041
4287
  * Native `autocomplete` hint for browsers / password managers.
4042
4288
  */
@@ -4057,6 +4303,10 @@ declare namespace LocalJSX {
4057
4303
  * Disables the field (non-interactive, excluded from form submission).
4058
4304
  */
4059
4305
  "disabled"?: boolean;
4306
+ /**
4307
+ * 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)
4308
+ */
4309
+ "enterkeyhint"?: EnterKeyHint;
4060
4310
  /**
4061
4311
  * Manual error message independent of native validation messages. When set, native validation messages are suppressed.
4062
4312
  */
@@ -4077,6 +4327,10 @@ declare namespace LocalJSX {
4077
4327
  * Optional contextual help text displayed beneath the field.
4078
4328
  */
4079
4329
  "hint"?: string;
4330
+ /**
4331
+ * Hint to the browser about which keyboard to display on mobile devices.
4332
+ */
4333
+ "inputmode"?: InputMode;
4080
4334
  /**
4081
4335
  * When true, hides visual label & messages (for internal layout use; accessibility still preserved).
4082
4336
  */
@@ -4181,6 +4435,10 @@ declare namespace LocalJSX {
4181
4435
  * Marks the field as required; failing to provide a value triggers `valueMissing`.
4182
4436
  */
4183
4437
  "required"?: boolean;
4438
+ /**
4439
+ * Controls browser spell-checking for text input. When true, enables spell-checking; when false, disables it. Browser default behavior applies when not specified.
4440
+ */
4441
+ "spellcheck"?: boolean;
4184
4442
  /**
4185
4443
  * Step interval for numeric/date input types.
4186
4444
  */
@@ -4247,7 +4505,7 @@ declare namespace LocalJSX {
4247
4505
  * Specifies the enter key hint for the virtual keyboard. Default is 'done' for OTP completion.
4248
4506
  * @default : 'done'
4249
4507
  */
4250
- "enterkeyhint"?: EnterKeyHint;
4508
+ "enterkeyhint"?: InputCodeEnterKeyHint;
4251
4509
  /**
4252
4510
  * The way to provide error message separately from Constraint Validation API.
4253
4511
  */
@@ -4272,7 +4530,7 @@ declare namespace LocalJSX {
4272
4530
  * Specifies the input mode for the virtual keyboard on mobile devices. Default is 'numeric' for OTP codes.
4273
4531
  * @default : 'numeric'
4274
4532
  */
4275
- "inputmode"?: InputMode;
4533
+ "inputmode"?: InputCodeInputMode;
4276
4534
  /**
4277
4535
  * Validity indicator, serving to change UI of the component
4278
4536
  */
@@ -4300,6 +4558,10 @@ declare namespace LocalJSX {
4300
4558
  * Emits the current code value as it changes
4301
4559
  */
4302
4560
  "onRChange"?: (event: RInputCodeCustomEvent<{ value: string }>) => void;
4561
+ /**
4562
+ * Emits when all segments are filled with values
4563
+ */
4564
+ "onRComplete"?: (event: RInputCodeCustomEvent<{ value: string, isComplete: boolean }>) => void;
4303
4565
  /**
4304
4566
  * Emits 'rReset' event when form containing the component was reset
4305
4567
  */
@@ -4754,6 +5016,10 @@ declare namespace LocalJSX {
4754
5016
  "fieldIndicator"?: string;
4755
5017
  }
4756
5018
  interface RListItem {
5019
+ /**
5020
+ * Indicates whether the list item is currently active (e.g., represents the current page).
5021
+ */
5022
+ "active"?: boolean;
4757
5023
  /**
4758
5024
  * Defines the alignment style for the trailing text.
4759
5025
  */
@@ -4823,21 +5089,41 @@ declare namespace LocalJSX {
4823
5089
  * @default true
4824
5090
  */
4825
5091
  "arrows"?: boolean;
5092
+ /**
5093
+ * Label for Ellipsis stepper. Important to ensure accessibility for screen reader users.
5094
+ * @default 'Ellipsis indicating skipped pages'
5095
+ */
5096
+ "ellipsisLabel"?: string;
4826
5097
  /**
4827
5098
  * Text to display after total results
4828
5099
  * @default 'results'
4829
5100
  */
4830
5101
  "endText"?: string;
5102
+ /**
5103
+ * Label for First Page button. Important to ensure accessibility for screen reader users.
5104
+ * @default 'Go to the first page'
5105
+ */
5106
+ "firstPageButtonLabel"?: string;
4831
5107
  /**
4832
5108
  * Amount of items to show per page
4833
5109
  * @default 5
4834
5110
  */
4835
5111
  "itemsPerPage"?: number;
5112
+ /**
5113
+ * Label for Items per page select.
5114
+ * @default 'Items per page'
5115
+ */
5116
+ "itemsPerPageLabel"?: string;
4836
5117
  /**
4837
5118
  * Items per page options for dropdown
4838
5119
  * @default [5, 10, 15, 20, 25, 50, 100]
4839
5120
  */
4840
5121
  "itemsPerPageOptions"?: PaginationItemsPerPageOptions[];
5122
+ /**
5123
+ * Label for Last Page button. Important to ensure accessibility for screen reader users.
5124
+ * @default 'Go to the last page'
5125
+ */
5126
+ "lastPageButtonLabel"?: string;
4841
5127
  /**
4842
5128
  * Position of the list box
4843
5129
  * @default 'top'
@@ -4848,6 +5134,11 @@ declare namespace LocalJSX {
4848
5134
  * @default 'of'
4849
5135
  */
4850
5136
  "middleText"?: string;
5137
+ /**
5138
+ * Label for Next Page button. Important to ensure accessibility for screen reader users.
5139
+ * @default 'Go to the next page'
5140
+ */
5141
+ "nextPageButtonLabel"?: string;
4851
5142
  /**
4852
5143
  * Signifies that one of the pagination arrow buttons was cliked. Pagination state and `direction` are passed as part of event `detail` property.
4853
5144
  * @example const myPaginationEl = document.querySelector('r-pagination'); myPaginationEl.addEventListener('rArrowClick', (event) => { console.log(`Page ${event.detail} was selected`) });
@@ -4889,6 +5180,16 @@ declare namespace LocalJSX {
4889
5180
  * @default 1
4890
5181
  */
4891
5182
  "pageActive"?: number;
5183
+ /**
5184
+ * Label for Page number buttons. Important to ensure accessibility for screen reader users.
5185
+ * @default 'Page'
5186
+ */
5187
+ "pageLabel"?: string;
5188
+ /**
5189
+ * Label for Previous Page button. Important to ensure accessibility for screen reader users.
5190
+ * @default 'Go to the previous page'
5191
+ */
5192
+ "previousPageButtonLabel"?: string;
4892
5193
  /**
4893
5194
  * UI: Result Line and select field present/absent
4894
5195
  * @default false
@@ -4942,12 +5243,12 @@ declare namespace LocalJSX {
4942
5243
  "header"?: string;
4943
5244
  /**
4944
5245
  * Aria-label text for collapse
4945
- * @default 'collapse-panel'
5246
+ * @default 'Collapse panel'
4946
5247
  */
4947
5248
  "labelCollapse"?: string;
4948
5249
  /**
4949
5250
  * Aria-label text for expand
4950
- * @default 'expand-panel'
5251
+ * @default 'Expand panel'
4951
5252
  */
4952
5253
  "labelExpand"?: string;
4953
5254
  /**
@@ -5222,6 +5523,10 @@ declare namespace LocalJSX {
5222
5523
  state: string,
5223
5524
  message: string
5224
5525
  }>) => void;
5526
+ /**
5527
+ * For nested radio groups: specifies the parent radio button value that this nested group belongs to. When the parent group's value changes to a different value, this nested group will be automatically reset. This ensures nested selections are only maintained when their parent context is active.
5528
+ */
5529
+ "parentValue"?: string;
5225
5530
  /**
5226
5531
  * Specifies if radio-button within group must be checked
5227
5532
  */
@@ -5442,6 +5747,15 @@ declare namespace LocalJSX {
5442
5747
  * @default 0
5443
5748
  */
5444
5749
  "completed"?: number;
5750
+ /**
5751
+ * Label for completed steps for screen reader users.
5752
+ * @default 'Completed'
5753
+ */
5754
+ "completedStepsLabel"?: string;
5755
+ /**
5756
+ * Label for the stepper for screen reader users.
5757
+ */
5758
+ "label"?: string;
5445
5759
  /**
5446
5760
  * Total number of steps. Used when no slot-based steps provided.
5447
5761
  */
@@ -5462,6 +5776,10 @@ declare namespace LocalJSX {
5462
5776
  * Defines an icon for the step. Optional.
5463
5777
  */
5464
5778
  "icon"?: IconName;
5779
+ /**
5780
+ * Label for the step icon for screen reader users.
5781
+ */
5782
+ "label"?: string;
5465
5783
  /**
5466
5784
  * Defines the step number. Optional.
5467
5785
  */
@@ -5524,6 +5842,25 @@ declare namespace LocalJSX {
5524
5842
  }>) => void;
5525
5843
  }
5526
5844
  interface RTabsList {
5845
+ /**
5846
+ * Border style of the active tab
5847
+ * @default 'standard'
5848
+ */
5849
+ "border"?: ActiveTabBorder;
5850
+ /**
5851
+ * Tooltip visibility for left scroll button
5852
+ */
5853
+ "scrollLeftTooltip"?: string;
5854
+ /**
5855
+ * Tooltip visibility for left right button
5856
+ */
5857
+ "scrollRightTooltip"?: string;
5858
+ /**
5859
+ * Visual variant of the tab list
5860
+ * @defaulr 'expanded'
5861
+ * @default 'expanded'
5862
+ */
5863
+ "variant"?: TabListVariant;
5527
5864
  }
5528
5865
  interface RTextarea {
5529
5866
  /**
@@ -5710,6 +6047,10 @@ declare namespace LocalJSX {
5710
6047
  * 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).
5711
6048
  */
5712
6049
  "onDismiss"?: (event: RToastCustomEvent<any>) => void;
6050
+ /**
6051
+ * 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.
6052
+ */
6053
+ "onDismissed"?: (event: RToastCustomEvent<any>) => void;
5713
6054
  /**
5714
6055
  * 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.
5715
6056
  */
@@ -5778,6 +6119,7 @@ declare namespace LocalJSX {
5778
6119
  "r-hint": RHint;
5779
6120
  "r-icon": RIcon;
5780
6121
  "r-icon-button": RIconButton;
6122
+ "r-illustration": RIllustration;
5781
6123
  "r-input": RInput;
5782
6124
  "r-input-code": RInputCode;
5783
6125
  "r-input-date": RInputDate;
@@ -5870,6 +6212,7 @@ declare module "@stencil/core" {
5870
6212
  * An icon button is a button that contains only an icon and is used to trigger an action.
5871
6213
  */
5872
6214
  "r-icon-button": LocalJSX.RIconButton & JSXBase.HTMLAttributes<HTMLRIconButtonElement>;
6215
+ "r-illustration": LocalJSX.RIllustration & JSXBase.HTMLAttributes<HTMLRIllustrationElement>;
5873
6216
  "r-input": LocalJSX.RInput & JSXBase.HTMLAttributes<HTMLRInputElement>;
5874
6217
  "r-input-code": LocalJSX.RInputCode & JSXBase.HTMLAttributes<HTMLRInputCodeElement>;
5875
6218
  "r-input-date": LocalJSX.RInputDate & JSXBase.HTMLAttributes<HTMLRInputDateElement>;