@riverty/web-components 5.7.0 → 6.0.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 (273) hide show
  1. package/CHANGELOG.md +128 -0
  2. package/custom-elements.json +152 -372
  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 +45 -14
  10. package/dist/cjs/r-badge.cjs.entry.js +1 -1
  11. package/dist/cjs/r-button.cjs.entry.js +2 -2
  12. package/dist/cjs/r-checkbox-group.cjs.entry.js +28 -24
  13. package/dist/cjs/r-checkbox.cjs.entry.js +97 -81
  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 +133 -25
  19. package/dist/cjs/r-input-date.cjs.entry.js +87 -23
  20. package/dist/cjs/r-input-password.cjs.entry.js +34 -13
  21. package/dist/cjs/r-input-phone-number.cjs.entry.js +30 -22
  22. package/dist/cjs/r-input.cjs.entry.js +108 -49
  23. package/dist/cjs/r-list-item.cjs.entry.js +5 -5
  24. package/dist/cjs/r-pagination.cjs.entry.js +1 -1
  25. package/dist/cjs/r-panel.cjs.entry.js +2 -2
  26. package/dist/cjs/r-popover-action.cjs.entry.js +2 -2
  27. package/dist/cjs/r-popover-content.cjs.entry.js +1 -1
  28. package/dist/cjs/r-popover-headline.cjs.entry.js +1 -1
  29. package/dist/cjs/r-popover-trigger.cjs.entry.js +1 -1
  30. package/dist/cjs/r-popover.cjs.entry.js +3 -3
  31. package/dist/cjs/r-progress-bar.cjs.entry.js +1 -1
  32. package/dist/cjs/r-radio-button-description.cjs.entry.js +1 -1
  33. package/dist/cjs/r-radio-button-leading.cjs.entry.js +1 -1
  34. package/dist/cjs/r-radio-button-title.cjs.entry.js +1 -1
  35. package/dist/cjs/r-radio-button-trailing.cjs.entry.js +1 -1
  36. package/dist/cjs/r-radio-button.cjs.entry.js +29 -12
  37. package/dist/cjs/r-radio-group.cjs.entry.js +32 -32
  38. package/dist/cjs/r-select-option.cjs.entry.js +1 -1
  39. package/dist/cjs/r-select.cjs.entry.js +116 -40
  40. package/dist/cjs/r-skip-link.cjs.entry.js +1 -1
  41. package/dist/cjs/r-stepper-item.cjs.entry.js +2 -2
  42. package/dist/cjs/r-stepper.cjs.entry.js +1 -1
  43. package/dist/cjs/r-tab-panel.cjs.entry.js +1 -1
  44. package/dist/cjs/r-tab.cjs.entry.js +1 -1
  45. package/dist/cjs/r-tabs-list.cjs.entry.js +1 -1
  46. package/dist/cjs/r-tabs.cjs.entry.js +1 -1
  47. package/dist/cjs/r-textarea.cjs.entry.js +24 -23
  48. package/dist/cjs/r-toast-group.cjs.entry.js +1 -1
  49. package/dist/cjs/r-toast.cjs.entry.js +51 -20
  50. package/dist/cjs/web-components.cjs.js +1 -1
  51. package/dist/collection/collection-manifest.json +0 -1
  52. package/dist/collection/components/accordion/accordion.css +0 -2
  53. package/dist/collection/components/accordion/accordion.js +4 -8
  54. package/dist/collection/components/accordion/exports.js +1 -1
  55. package/dist/collection/components/accordion-panel/accordion-panel.js +1 -1
  56. package/dist/collection/components/accordion-section/accordion-section.js +1 -1
  57. package/dist/collection/components/accordion-trigger/accordion-trigger.css +0 -4
  58. package/dist/collection/components/accordion-trigger/accordion-trigger.js +4 -215
  59. package/dist/collection/components/alert/alert.css +58 -12
  60. package/dist/collection/components/alert/alert.js +92 -17
  61. package/dist/collection/components/alert/exports.js +1 -1
  62. package/dist/collection/components/badge/badge.js +1 -1
  63. package/dist/collection/components/button/button.css +6 -7
  64. package/dist/collection/components/button/button.js +1 -1
  65. package/dist/collection/components/checkbox/checkbox.js +121 -104
  66. package/dist/collection/components/checkbox-group/checkbox-group.js +48 -63
  67. package/dist/collection/components/dialog/dialog.css +1 -3
  68. package/dist/collection/components/dialog/dialog.js +2 -10
  69. package/dist/collection/components/hint/hint.js +2 -2
  70. package/dist/collection/components/icon/bundled-icons/riverty-kit.json +1 -1
  71. package/dist/collection/components/icon/riverty-kit.js +1 -1
  72. package/dist/collection/components/icon-button/icon-button.css +0 -7
  73. package/dist/collection/components/icon-button/icon-button.js +3 -3
  74. package/dist/collection/components/input/input.css +3 -0
  75. package/dist/collection/components/input/input.js +221 -378
  76. package/dist/collection/components/input-code/exports.js +2 -0
  77. package/dist/collection/components/input-code/input-code.js +335 -34
  78. package/dist/collection/components/input-date/input-date.js +237 -87
  79. package/dist/collection/components/input-password/exports.js +1 -0
  80. package/dist/collection/components/input-password/input-password.css +1 -0
  81. package/dist/collection/components/input-password/input-password.js +233 -75
  82. package/dist/collection/components/input-phone-number/input-phone-number.js +50 -85
  83. package/dist/collection/components/label/label.js +3 -113
  84. package/dist/collection/components/list-item/list-item/list-item.css +7 -7
  85. package/dist/collection/components/list-item/list-item/list-item.js +4 -26
  86. package/dist/collection/components/pagination/pagination.css +23 -23
  87. package/dist/collection/components/panel/panel.js +2 -2
  88. package/dist/collection/components/popover/exports.js +0 -1
  89. package/dist/collection/components/popover/popover.css +13 -13
  90. package/dist/collection/components/popover/popover.js +2 -55
  91. package/dist/collection/components/popover-action/popover-action.css +3 -5
  92. package/dist/collection/components/popover-action/popover-action.js +1 -1
  93. package/dist/collection/components/popover-content/popover-content.js +1 -1
  94. package/dist/collection/components/popover-headline/popover-headline.js +1 -1
  95. package/dist/collection/components/popover-trigger/popover-trigger.js +1 -1
  96. package/dist/collection/components/progress-bar/progress-bar.js +1 -1
  97. package/dist/collection/components/radio-button/radio-button.js +49 -12
  98. package/dist/collection/components/radio-button-description/radio-button-description.js +1 -1
  99. package/dist/collection/components/radio-button-leading/radio-button-leading.js +1 -1
  100. package/dist/collection/components/radio-button-title/radio-button-title.js +1 -1
  101. package/dist/collection/components/radio-button-trailing/radio-button-trailing.js +1 -1
  102. package/dist/collection/components/radio-group/radio-group.js +53 -135
  103. package/dist/collection/components/select/select.js +197 -349
  104. package/dist/collection/components/select-option/select-option.js +1 -1
  105. package/dist/collection/components/skip-link/skip-link.js +1 -1
  106. package/dist/collection/components/stepper/stepper.js +1 -1
  107. package/dist/collection/components/stepper-item/stepper-item.js +2 -2
  108. package/dist/collection/components/tab/tab.js +1 -1
  109. package/dist/collection/components/tab-panel/tab-panel.js +1 -1
  110. package/dist/collection/components/tabs/tabs.js +1 -1
  111. package/dist/collection/components/tabs-list/tabs-list.js +1 -1
  112. package/dist/collection/components/textarea/textarea.js +44 -163
  113. package/dist/collection/components/toast/toast.css +22 -14
  114. package/dist/collection/components/toast/toast.js +95 -43
  115. package/dist/collection/components/toast-group/toast-group.js +1 -1
  116. package/dist/collection/components/tooltip/tooltip.js +1 -1
  117. package/dist/esm/index-Da7qOBFr.js +6 -10
  118. package/dist/esm/loader.js +1 -1
  119. package/dist/esm/r-accordion-panel.entry.js +1 -1
  120. package/dist/esm/r-accordion-section.entry.js +1 -1
  121. package/dist/esm/r-accordion-trigger.entry.js +5 -35
  122. package/dist/esm/r-accordion.entry.js +3 -7
  123. package/dist/esm/r-alert.entry.js +45 -14
  124. package/dist/esm/r-badge.entry.js +1 -1
  125. package/dist/esm/r-button.entry.js +2 -2
  126. package/dist/esm/r-checkbox-group.entry.js +28 -24
  127. package/dist/esm/r-checkbox.entry.js +97 -81
  128. package/dist/esm/r-dialog.entry.js +3 -11
  129. package/dist/esm/r-hint_2.entry.js +47 -0
  130. package/dist/esm/{r-hint_3.entry.js → r-icon-button_2.entry.js} +65 -51
  131. package/dist/esm/r-icon.entry.js +1 -1
  132. package/dist/esm/r-input-code.entry.js +133 -25
  133. package/dist/esm/r-input-date.entry.js +87 -23
  134. package/dist/esm/r-input-password.entry.js +34 -13
  135. package/dist/esm/r-input-phone-number.entry.js +30 -22
  136. package/dist/esm/r-input.entry.js +108 -49
  137. package/dist/esm/r-list-item.entry.js +5 -5
  138. package/dist/esm/r-pagination.entry.js +1 -1
  139. package/dist/esm/r-panel.entry.js +2 -2
  140. package/dist/esm/r-popover-action.entry.js +2 -2
  141. package/dist/esm/r-popover-content.entry.js +1 -1
  142. package/dist/esm/r-popover-headline.entry.js +1 -1
  143. package/dist/esm/r-popover-trigger.entry.js +1 -1
  144. package/dist/esm/r-popover.entry.js +3 -3
  145. package/dist/esm/r-progress-bar.entry.js +1 -1
  146. package/dist/esm/r-radio-button-description.entry.js +1 -1
  147. package/dist/esm/r-radio-button-leading.entry.js +1 -1
  148. package/dist/esm/r-radio-button-title.entry.js +1 -1
  149. package/dist/esm/r-radio-button-trailing.entry.js +1 -1
  150. package/dist/esm/r-radio-button.entry.js +29 -12
  151. package/dist/esm/r-radio-group.entry.js +32 -32
  152. package/dist/esm/r-select-option.entry.js +1 -1
  153. package/dist/esm/r-select.entry.js +116 -40
  154. package/dist/esm/r-skip-link.entry.js +1 -1
  155. package/dist/esm/r-stepper-item.entry.js +2 -2
  156. package/dist/esm/r-stepper.entry.js +1 -1
  157. package/dist/esm/r-tab-panel.entry.js +1 -1
  158. package/dist/esm/r-tab.entry.js +1 -1
  159. package/dist/esm/r-tabs-list.entry.js +1 -1
  160. package/dist/esm/r-tabs.entry.js +1 -1
  161. package/dist/esm/r-textarea.entry.js +24 -23
  162. package/dist/esm/r-toast-group.entry.js +1 -1
  163. package/dist/esm/r-toast.entry.js +51 -20
  164. package/dist/esm/web-components.js +1 -1
  165. package/dist/types/components/accordion/accordion.d.ts +1 -5
  166. package/dist/types/components/accordion/exports.d.ts +1 -1
  167. package/dist/types/components/accordion-trigger/accordion-trigger.d.ts +0 -36
  168. package/dist/types/components/alert/alert.d.ts +9 -1
  169. package/dist/types/components/alert/exports.d.ts +1 -1
  170. package/dist/types/components/checkbox/checkbox.d.ts +29 -34
  171. package/dist/types/components/checkbox-group/checkbox-group.d.ts +6 -11
  172. package/dist/types/components/dialog/dialog.d.ts +0 -2
  173. package/dist/types/components/input/input.d.ts +35 -72
  174. package/dist/types/components/input-code/exports.d.ts +4 -0
  175. package/dist/types/components/input-code/input-code.d.ts +54 -7
  176. package/dist/types/components/input-date/input-date.d.ts +30 -16
  177. package/dist/types/components/input-password/exports.d.ts +1 -0
  178. package/dist/types/components/input-password/input-password.d.ts +53 -16
  179. package/dist/types/components/input-phone-number/input-phone-number.d.ts +5 -16
  180. package/dist/types/components/label/label.d.ts +0 -18
  181. package/dist/types/components/list-item/list-item/list-item.d.ts +0 -6
  182. package/dist/types/components/popover/exports.d.ts +0 -2
  183. package/dist/types/components/popover/popover.d.ts +1 -14
  184. package/dist/types/components/radio-button/radio-button.d.ts +5 -0
  185. package/dist/types/components/radio-group/radio-group.d.ts +6 -28
  186. package/dist/types/components/select/select.d.ts +34 -52
  187. package/dist/types/components/textarea/textarea.d.ts +5 -32
  188. package/dist/types/components/toast/toast.d.ts +10 -7
  189. package/dist/types/components.d.ts +347 -647
  190. package/dist/web-components/bundled-icons/riverty-kit.json +1 -1
  191. package/dist/web-components/p-0347feff.entry.js +1 -0
  192. package/dist/web-components/p-05738503.entry.js +1 -0
  193. package/dist/web-components/p-0e4c8bf1.entry.js +1 -0
  194. package/dist/web-components/p-1da75540.entry.js +1 -0
  195. package/dist/web-components/p-26ef77d6.entry.js +1 -0
  196. package/dist/web-components/p-3884c6e7.entry.js +1 -0
  197. package/dist/web-components/p-3a5a67e7.entry.js +1 -0
  198. package/dist/web-components/p-3f60c6c0.entry.js +1 -0
  199. package/dist/web-components/p-4254a383.entry.js +1 -0
  200. package/dist/web-components/{p-87f39749.entry.js → p-4595fa8e.entry.js} +1 -1
  201. package/dist/web-components/{p-4e3df002.entry.js → p-4cc58c6a.entry.js} +1 -1
  202. package/dist/web-components/p-5441b746.entry.js +1 -0
  203. package/dist/web-components/{p-72fa1fd1.entry.js → p-550e2237.entry.js} +1 -1
  204. package/dist/web-components/p-589baaf9.entry.js +1 -0
  205. package/dist/web-components/p-60341de2.entry.js +1 -0
  206. package/dist/web-components/{p-4bd3e077.entry.js → p-60ca994e.entry.js} +1 -1
  207. package/dist/web-components/{p-44ae9f33.entry.js → p-62b788bf.entry.js} +1 -1
  208. package/dist/web-components/{p-2b2f581a.entry.js → p-6303b9fe.entry.js} +1 -1
  209. package/dist/web-components/p-63fd817d.entry.js +1 -0
  210. package/dist/web-components/{p-e0e2f2b2.entry.js → p-673dbfd0.entry.js} +1 -1
  211. package/dist/web-components/p-67fa3f84.entry.js +1 -0
  212. package/dist/web-components/p-6a4f3836.entry.js +1 -0
  213. package/dist/web-components/p-6cc2ea2c.entry.js +1 -0
  214. package/dist/web-components/p-70784685.entry.js +1 -0
  215. package/dist/web-components/{p-429213ea.entry.js → p-7fed6f4d.entry.js} +1 -1
  216. package/dist/web-components/p-8a66d20c.entry.js +1 -0
  217. package/dist/web-components/{p-0bb04d79.entry.js → p-8b4d2448.entry.js} +1 -1
  218. package/dist/web-components/{p-c7f8e59b.entry.js → p-8c31cbd5.entry.js} +1 -1
  219. package/dist/web-components/p-8dac326b.entry.js +1 -0
  220. package/dist/web-components/{p-1c2497de.entry.js → p-9ef1bbee.entry.js} +1 -1
  221. package/dist/web-components/p-a0dbde7c.entry.js +1 -0
  222. package/dist/web-components/{p-755cc697.entry.js → p-a71485d8.entry.js} +1 -1
  223. package/dist/web-components/p-a7d22c76.entry.js +1 -0
  224. package/dist/web-components/{p-85a9af42.entry.js → p-ae251d2f.entry.js} +1 -1
  225. package/dist/web-components/{p-77155630.entry.js → p-b98ab649.entry.js} +1 -1
  226. package/dist/web-components/p-b9e3b3d6.entry.js +1 -0
  227. package/dist/web-components/p-c1e748f2.entry.js +1 -0
  228. package/dist/web-components/p-c478712b.entry.js +1 -0
  229. package/dist/web-components/{p-72c0c0d8.entry.js → p-d054eb4d.entry.js} +1 -1
  230. package/dist/web-components/p-d433a828.entry.js +1 -0
  231. package/dist/web-components/p-d7726e46.entry.js +1 -0
  232. package/dist/web-components/p-d819c8e5.entry.js +1 -0
  233. package/dist/web-components/p-e2188953.entry.js +1 -0
  234. package/dist/web-components/{p-3b4e3faf.entry.js → p-e5945c01.entry.js} +1 -1
  235. package/dist/web-components/{p-d1379ac6.entry.js → p-f9d5004c.entry.js} +1 -1
  236. package/dist/web-components/web-components.esm.js +1 -1
  237. package/package.json +1 -1
  238. package/dist/cjs/r-accordion-item.cjs.entry.js +0 -78
  239. package/dist/cjs/r-icon-button.cjs.entry.js +0 -81
  240. package/dist/collection/components/accordion-item/accordion-item.css +0 -121
  241. package/dist/collection/components/accordion-item/accordion-item.js +0 -138
  242. package/dist/esm/r-accordion-item.entry.js +0 -76
  243. package/dist/esm/r-icon-button.entry.js +0 -79
  244. package/dist/types/components/accordion-item/accordion-item.d.ts +0 -26
  245. package/dist/web-components/p-00ca474f.entry.js +0 -1
  246. package/dist/web-components/p-289eb4b0.entry.js +0 -1
  247. package/dist/web-components/p-2b8e12ae.entry.js +0 -1
  248. package/dist/web-components/p-2e2c8a5b.entry.js +0 -1
  249. package/dist/web-components/p-3a39932b.entry.js +0 -1
  250. package/dist/web-components/p-3bc93d65.entry.js +0 -1
  251. package/dist/web-components/p-44be9992.entry.js +0 -1
  252. package/dist/web-components/p-4652635a.entry.js +0 -1
  253. package/dist/web-components/p-51a5804b.entry.js +0 -1
  254. package/dist/web-components/p-63474b32.entry.js +0 -1
  255. package/dist/web-components/p-74d2a563.entry.js +0 -1
  256. package/dist/web-components/p-7ad8e78b.entry.js +0 -1
  257. package/dist/web-components/p-8028c2a9.entry.js +0 -1
  258. package/dist/web-components/p-96ddeb7f.entry.js +0 -1
  259. package/dist/web-components/p-9d898089.entry.js +0 -1
  260. package/dist/web-components/p-9e50120b.entry.js +0 -1
  261. package/dist/web-components/p-9eb1f262.entry.js +0 -1
  262. package/dist/web-components/p-a022f356.entry.js +0 -1
  263. package/dist/web-components/p-a7e7f8fa.entry.js +0 -1
  264. package/dist/web-components/p-b2f03016.entry.js +0 -1
  265. package/dist/web-components/p-c300c22f.entry.js +0 -1
  266. package/dist/web-components/p-c937bd92.entry.js +0 -1
  267. package/dist/web-components/p-cbcd7699.entry.js +0 -1
  268. package/dist/web-components/p-d93c240d.entry.js +0 -1
  269. package/dist/web-components/p-e4b66277.entry.js +0 -1
  270. package/dist/web-components/p-e6a31881.entry.js +0 -1
  271. package/dist/web-components/p-f6a92287.entry.js +0 -1
  272. package/dist/web-components/p-f770e22b.entry.js +0 -1
  273. package/dist/web-components/p-f952161b.entry.js +0 -1
@@ -1,5 +1,4 @@
1
1
  import { EventEmitter } from '../../stencil-public-runtime';
2
- import type { IconName } from '../icon/exports';
3
2
  import { RadioGroupVariant } from './exports';
4
3
  export declare class RadioGroup {
5
4
  host: HTMLRRadioGroupElement;
@@ -19,35 +18,10 @@ export declare class RadioGroup {
19
18
  * Field indicator can be Required*, Optional or a translation of those two options.
20
19
  */
21
20
  fieldIndicator?: string;
22
- /**
23
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)
24
- * Label based text revealed within tooltip */
25
- tooltip?: string;
26
- /**
27
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)
28
- * Label tooltip trigger icon */
29
- tooltipIcon?: IconName;
30
- /**
31
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)
32
- * Change color of an icon that triggers tooltip to one of the Riverty color tokens
33
- * */
34
- tooltipIconColor?: string;
35
21
  /** Set custom message for `valueMissing` property of a ValidityState object (set by `required`) within Constrain Validation API */
36
22
  valueMissingMessage?: string;
37
- /**
38
- * _DEPRECATED_ (This property will be removed in November 2025 release.)
39
- * Indicates whether to show the validation state.
40
- * When set to `true`, the component will display validation feedback.
41
- * Defaults to `false`.
42
- */
43
- showValid: boolean;
44
23
  /** Apply validation success visual style */
45
24
  valid?: boolean;
46
- /**
47
- * _DEPRECATED_ (This property will be removed in November 2025 release.)
48
- * Set custom message if the element meets all its validation constraints.
49
- * */
50
- validMessage?: string;
51
25
  /** Apply validation error visual style */
52
26
  invalid?: boolean;
53
27
  /** Custom validation error message */
@@ -61,6 +35,11 @@ export declare class RadioGroup {
61
35
  hint?: string;
62
36
  /** Controls the style variation of the radio buttons. */
63
37
  variant: RadioGroupVariant;
38
+ /**
39
+ * When set to `true`, automatically focuses the first enabled radio button in the group on mount.
40
+ * This will focus the selected radio button if one exists, or the first enabled radio button otherwise.
41
+ */
42
+ autofocus: boolean;
64
43
  validityState: string;
65
44
  validityMessage: string;
66
45
  rChangeAction(event: any): void;
@@ -126,8 +105,7 @@ export declare class RadioGroup {
126
105
  */
127
106
  clearValue(): Promise<void>;
128
107
  /**
129
- * Validates the radio group and returns a boolean indicating its validity.
130
- *
108
+ * Validates the radio group without triggering UI and returns a boolean indicating its validity.
131
109
  * @returns A boolean indicating whether the radio group is valid.
132
110
  */
133
111
  checkValidity(): Promise<boolean>;
@@ -1,5 +1,4 @@
1
1
  import { EventEmitter } from '../../stencil-public-runtime';
2
- import type { IconName, IconSize } from '../icon/exports';
3
2
  import { ListboxPosition } from './exports';
4
3
  /**
5
4
  * A select allows the user to choose between a set of options.
@@ -21,21 +20,6 @@ export declare class Select {
21
20
  label: string;
22
21
  /** Specifies if the component is internal */
23
22
  internal?: boolean;
24
- /**
25
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)
26
- * Label tooltip text
27
- * */
28
- tooltip?: string;
29
- /**
30
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)
31
- * Label tooltip trigger icon
32
- * */
33
- tooltipIcon?: IconName;
34
- /**
35
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)
36
- * Change color of an icon that triggers tooltip to one of the Riverty color tokens.
37
- * */
38
- tooltipIconColor?: string;
39
23
  /** Text that is presented until an option has been selected */
40
24
  placeholder?: string;
41
25
  /**
@@ -45,21 +29,10 @@ export declare class Select {
45
29
  hint?: string;
46
30
  /** Prevent user interaction and apply disabled style */
47
31
  disabled?: boolean;
48
- /**
49
- * _DEPRECATED_ (This property will be removed in November 2025 release.)
50
- * Defines the trailing icon for select in disabled state */
51
- disabledIcon?: IconName;
52
32
  /** Specifies that select value is required */
53
33
  required?: boolean;
54
34
  /** Text of an additional marker in the label */
55
35
  fieldIndicator?: string;
56
- /** _DEPRECATED_ (This property will be removed in November 2025 release. Use `fieldIndicator` instead) Marks the field as optional */
57
- optional?: boolean;
58
- /** _DEPRECATED_ (This property will be removed in November 2025 release. Use `fieldIndicator` instead)
59
- * Define the optional marker text if the field is marked as optional */
60
- optionalText?: string;
61
- /** Controls the visibility of validation indicators for the field. */
62
- showValid: boolean;
63
36
  /** Visual indication of valid state */
64
37
  valid?: boolean;
65
38
  /** Validity indicator, serving to change UI of the component */
@@ -68,30 +41,8 @@ export declare class Select {
68
41
  error?: string;
69
42
  /** Define if select should render as a text item or a block */
70
43
  fullWidth: boolean;
71
- /** _DEPRECATED_ (This property will be removed in November 2025 release. Use `leading slot` instead)
72
- * Adds an icon defined by name that serves as leading icon in select */
73
- leadingIcon?: IconName;
74
- /** _DEPRECATED_ (This property will be removed in November 2025 release. Use `leading slot` instead)
75
- * Adds an icon defined by file source that serves as leading icon in select */
76
- leadingIconSrc?: string;
77
- /** _DEPRECATED_ (This property will be removed in November 2025 release. Use `leading slot` instead)
78
- * Define size of an icon that serves as leading icon in select */
79
- leadingIconSize?: IconSize;
80
- /** _DEPRECATED_ (This property will be removed in November 2025 release.)
81
- * Defines the trailing icon defined by name for select, Default: 'andle-down' */
82
- trailingIcon: IconName;
83
- /** _DEPRECATED_ (This property will be removed in November 2025 release.)
84
- * Defines the trailing icon defined by source for select */
85
- trailingIconSrc?: string;
86
- /** _DEPRECATED_ (This property will be removed in November 2025 release.)
87
- * Define size of an icon that serves as trailing icon in select */
88
- tralingIconSize: IconSize;
89
44
  /** Define wether listbox appears on top or at the bottom of the select */
90
45
  listboxPosition: ListboxPosition;
91
- /**
92
- * _DEPRECATED_ (This property will be removed in November 2025 release.)
93
- * Set custom message if the element meets all its validation constraints. */
94
- validMessage?: string;
95
46
  /** Set custom message for `valueMissing` property of a ValidityState object (set by `required`) within Constrain Validation API */
96
47
  valueMissingMessage?: string;
97
48
  /** 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. */
@@ -130,10 +81,13 @@ export declare class Select {
130
81
  valueToDisplay: string;
131
82
  isInitializing: boolean;
132
83
  isResetting: boolean;
133
- isNewValue: boolean;
134
84
  focusedOption: any;
135
85
  isValueFocused: boolean;
136
86
  isNoResultsFound: boolean;
87
+ /** Indicates if the user has interacted with the select (focused/clicked) */
88
+ touched: boolean;
89
+ /** Indicates if the value has been changed by user interaction */
90
+ dirty: boolean;
137
91
  /** Emits event after each validation */
138
92
  rValidate: EventEmitter<{
139
93
  state: string;
@@ -172,8 +126,18 @@ export declare class Select {
172
126
  * and update tooltip position if needed
173
127
  */
174
128
  handleResizing(): void;
175
- /** Set value of the select */
129
+ /**
130
+ * Set value of the select programmatically.
131
+ * Does NOT mark as dirty or emit change events.
132
+ * Use this for programmatic value updates.
133
+ */
176
134
  setValue(value?: string): Promise<void>;
135
+ /**
136
+ * Internal method to set value from user interaction.
137
+ * Assumes dirty flag is already set by the caller.
138
+ * Will emit rChange if dirty flag is true.
139
+ */
140
+ private setValueFromUserInteraction;
177
141
  /** Set value of the select */
178
142
  getValue(): Promise<string>;
179
143
  /** Reset select to its initial state */
@@ -182,6 +146,25 @@ export declare class Select {
182
146
  * Clears validation results.
183
147
  */
184
148
  resetValidation(): Promise<void>;
149
+ /**
150
+ * Returns whether the select has been touched (focused/clicked by user).
151
+ * @returns A boolean indicating whether the select has been touched.
152
+ */
153
+ isTouched(): Promise<boolean>;
154
+ /**
155
+ * Returns whether the select value has been changed by user interaction.
156
+ * @returns A boolean indicating whether the select is dirty.
157
+ */
158
+ isDirty(): Promise<boolean>;
159
+ /**
160
+ * Marks the select as untouched and pristine (not dirty).
161
+ */
162
+ markAsPristine(): Promise<void>;
163
+ /**
164
+ * Validates the textarea without triggering UI and returns a boolean indicating its validity.
165
+ * @returns A boolean indicating whether the textarea is valid.
166
+ */
167
+ checkValidity(): Promise<boolean>;
185
168
  /** Check validity and reveal validation state and message */
186
169
  reportValidity(): Promise<boolean>;
187
170
  /** Set focus on the element */
@@ -318,7 +301,6 @@ export declare class Select {
318
301
  private initializeStyleObserver;
319
302
  private get hasError();
320
303
  private get hasValidationError();
321
- private get hasValidationSuccess();
322
304
  private get hasMessage();
323
305
  private get isInteractive();
324
306
  private get hasLeadingSlot();
@@ -1,5 +1,4 @@
1
1
  import { EventEmitter } from '../../stencil-public-runtime';
2
- import type { IconName } from '../icon/exports';
3
2
  import type { TextareaResize } from './exports';
4
3
  export declare class RTextarea {
5
4
  host: HTMLRTextareaElement;
@@ -61,20 +60,9 @@ export declare class RTextarea {
61
60
  tooShortMessage?: string;
62
61
  /** Custom error message displayed for any validation failures in the `<textarea>`. */
63
62
  customErrorMessage?: string;
64
- /**
65
- * _DEPRECATED_ (This property will be removed in November 2025 release.)
66
- * Controls the visibility of validation indicators for the field.
67
- * */
68
- showValid: boolean;
69
63
  /** Indicates whether the value of the `<textarea>`
70
64
  * is valid based on validation rules. */
71
65
  valid?: boolean;
72
- /**
73
- * _DEPRECATED_ (This property will be removed in November 2025 release.)
74
- * Custom message displayed when the `<textarea>` value is valid,
75
- * providing positive feedback to the user.
76
- * */
77
- validMessage?: string;
78
66
  /** Indicates whether the value of the `<textarea>`
79
67
  * is invalid based on validation rules. */
80
68
  invalid?: boolean;
@@ -86,25 +74,6 @@ export declare class RTextarea {
86
74
  label?: string;
87
75
  /** Text of an additional marker in the label */
88
76
  fieldIndicator?: string;
89
- /** _DEPRECATED_ This property will be removed */
90
- optional?: boolean;
91
- /** _DEPRECATED_ (use `fieldIndicator` instead) Text of an additional marker in the label */
92
- optionalText?: string;
93
- /**
94
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)
95
- * Tooltip text displayed when the user hovers over the icon,
96
- * providing additional information. */
97
- tooltip?: string;
98
- /**
99
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)
100
- * Icon used to trigger the tooltip for the label,
101
- * providing a visual cue for additional information. */
102
- tooltipIcon?: IconName;
103
- /**
104
- * _DEPRECATED_ (Use popover slot instead. This property will be removed in November 2025 release.)
105
- * Specifies the color of the tooltip icon from Riverty color tokens.
106
- * Displayed alongside the label. */
107
- tooltipIconColor?: string;
108
77
  /** Custom validity state */
109
78
  validityState: string;
110
79
  /** Custom validity message */
@@ -145,6 +114,11 @@ export declare class RTextarea {
145
114
  setRangeText(replacement: string, start: number, end: number, selectionMode?: 'select' | 'start' | 'end' | 'preserve'): Promise<void>;
146
115
  /** Validates an element, displays provided message in case value is invalid. */
147
116
  setCustomValidity(message: string): Promise<void>;
117
+ /**
118
+ * Validates the textarea without triggering UI and returns a boolean indicating its validity.
119
+ * @returns A boolean indicating whether the textarea is valid.
120
+ */
121
+ checkValidity(): Promise<boolean>;
148
122
  /** Validates an element and displays validity state. */
149
123
  reportValidity(): Promise<void>;
150
124
  /** Identify wrapping form element. */
@@ -152,7 +126,6 @@ export declare class RTextarea {
152
126
  private get ariaDescribedBy();
153
127
  private get hasError();
154
128
  private get hasValidationError();
155
- private get hasValidationSuccess();
156
129
  private get hasMessage();
157
130
  /**
158
131
  * Determine whether this element should be ignored
@@ -11,8 +11,15 @@ export declare class Toast {
11
11
  * Options are: "info", "success", "warning", or "error".
12
12
  * @default 'info' */
13
13
  status: ToastStatus;
14
+ /** Sets role="alert" and will be announced to screen reader users */
15
+ announced: boolean;
14
16
  /** Specifies an optional icon for the leading slot of the dialog. */
15
17
  leadingIcon?: IconName;
18
+ /**
19
+ * Defines whether the leading icon is visible.
20
+ * @default true
21
+ * */
22
+ leadingIconVisible: boolean;
16
23
  /** Specifies an optional icon for the trailing slot of the dialog.
17
24
  * @default 'cross'
18
25
  * */
@@ -35,7 +42,7 @@ export declare class Toast {
35
42
  * Defines the behavior of the component's dismissing.
36
43
  * - `auto`: The component will be dismissed automatically after number of ms set by `delay` property.
37
44
  * - `manual`: The component requires explicit user action to close.
38
- * @default "auto"
45
+ * @default "manual"
39
46
  */
40
47
  dismissMode: ToastDismissMode;
41
48
  /** Provides content for `aria-label` attribute of the dismiss button. */
@@ -44,11 +51,6 @@ export declare class Toast {
44
51
  * @default 300
45
52
  * */
46
53
  delayBeforeRemoval: number;
47
- /**
48
- * @deprecated Use `dismissMode="manual"` instead. Will be removed November 2025.
49
- * Shows button, that dismisses the toast.
50
- * */
51
- dismissable?: boolean;
52
54
  private delayTimer;
53
55
  private removalTimer;
54
56
  /**
@@ -104,7 +106,7 @@ export declare class Toast {
104
106
  /** Unique id for each accordion item/row */
105
107
  private uniqueId;
106
108
  private hasElContent;
107
- private get hasLeadingIcon();
109
+ private getElContent;
108
110
  private get hasLeadingSlot();
109
111
  private get hasLeading();
110
112
  private get hasTrailingSlot();
@@ -118,6 +120,7 @@ export declare class Toast {
118
120
  private get hasHeadline();
119
121
  private get hasDelay();
120
122
  private get isError();
123
+ private get leadingIconName();
121
124
  private startDelayTimer;
122
125
  private handleTrailingButtonClick;
123
126
  private handleSlotChange;