@digigov/react-experimental 2.0.0-0edebf87 → 2.0.0-2445d5cb

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 (745) hide show
  1. package/FloatingButton/index.js +23 -23
  2. package/FloatingButton/index.js.map +7 -0
  3. package/Kitchensink/AllComponents/index.js +8 -9
  4. package/Kitchensink/AllComponents.js.map +7 -0
  5. package/Kitchensink/KitchensinkByCategory/index.js +47 -32
  6. package/Kitchensink/KitchensinkByCategory.js.map +7 -0
  7. package/Kitchensink/KitchensinkByLetter/index.js +26 -18
  8. package/Kitchensink/KitchensinkByLetter.js.map +7 -0
  9. package/Kitchensink/KitchensinkComponent/index.js +31 -44
  10. package/Kitchensink/KitchensinkComponent.js.map +7 -0
  11. package/Kitchensink/KitchensinkDashboard/index.js +43 -38
  12. package/Kitchensink/KitchensinkDashboard.js.map +7 -0
  13. package/Kitchensink/index.js +2 -1
  14. package/Kitchensink/index.js.map +7 -0
  15. package/OptionButtonBase/index.js +24 -23
  16. package/OptionButtonBase/index.js.map +7 -0
  17. package/OptionButtonSteps/index.js +34 -29
  18. package/OptionButtonSteps/index.js.map +7 -0
  19. package/cjs/FloatingButton/index.js +55 -29
  20. package/cjs/FloatingButton/index.js.map +7 -0
  21. package/cjs/Kitchensink/AllComponents/index.js +39 -14
  22. package/cjs/Kitchensink/AllComponents.js.map +7 -0
  23. package/cjs/Kitchensink/KitchensinkByCategory/index.js +75 -38
  24. package/cjs/Kitchensink/KitchensinkByCategory.js.map +7 -0
  25. package/cjs/Kitchensink/KitchensinkByLetter/index.js +58 -24
  26. package/cjs/Kitchensink/KitchensinkByLetter.js.map +7 -0
  27. package/cjs/Kitchensink/KitchensinkComponent/index.js +60 -53
  28. package/cjs/Kitchensink/KitchensinkComponent.js.map +7 -0
  29. package/cjs/Kitchensink/KitchensinkDashboard/index.js +75 -44
  30. package/cjs/Kitchensink/KitchensinkDashboard.js.map +7 -0
  31. package/cjs/Kitchensink/index.js +29 -59
  32. package/cjs/Kitchensink/index.js.map +7 -0
  33. package/cjs/OptionButtonBase/index.js +56 -29
  34. package/cjs/OptionButtonBase/index.js.map +7 -0
  35. package/cjs/OptionButtonSteps/index.js +66 -35
  36. package/cjs/OptionButtonSteps/index.js.map +7 -0
  37. package/cjs/index.js +27 -48
  38. package/cjs/index.js.map +7 -0
  39. package/index.js +6 -5
  40. package/index.js.map +7 -0
  41. package/libs/form/src/Field/FieldBase.d.ts +3 -0
  42. package/libs/form/src/Field/FieldBaseContainer.d.ts +4 -0
  43. package/libs/form/src/Field/FieldConditional.d.ts +4 -0
  44. package/libs/form/src/Field/index.d.ts +4 -0
  45. package/libs/form/src/Field/types.d.ts +119 -0
  46. package/libs/form/src/Field/utils/calculateField.d.ts +2 -0
  47. package/libs/form/src/Field/utils/evaluateFieldWithConditions.d.ts +2 -0
  48. package/libs/form/src/Field/utils/index.d.ts +3 -0
  49. package/libs/form/src/Field/utils/useField.d.ts +2 -0
  50. package/libs/form/src/FieldArray/index.d.ts +11 -0
  51. package/libs/form/src/FieldObject/index.d.ts +23 -0
  52. package/libs/form/src/Fieldset/index.d.ts +8 -0
  53. package/libs/form/src/Fieldset/types.d.ts +10 -0
  54. package/libs/form/src/FormBuilder/index.d.ts +3 -0
  55. package/libs/form/src/FormContext.d.ts +3 -0
  56. package/libs/form/src/MultiplicityField/add-objects.d.ts +14 -0
  57. package/libs/form/src/MultiplicityField/index.d.ts +15 -0
  58. package/libs/form/src/MultiplicityField/types.d.ts +19 -0
  59. package/libs/form/src/index.d.ts +9 -0
  60. package/libs/form/src/inputs/AutoCompleteInput/index.d.ts +14 -0
  61. package/libs/form/src/inputs/Checkboxes/index.d.ts +13 -0
  62. package/libs/form/src/inputs/DateInput/index.d.ts +14 -0
  63. package/libs/form/src/inputs/FileInput/index.d.ts +14 -0
  64. package/libs/form/src/inputs/ImageInput/index.d.ts +25 -0
  65. package/libs/form/src/inputs/Input/index.d.ts +16 -0
  66. package/libs/form/src/inputs/Label/index.d.ts +21 -0
  67. package/libs/form/src/inputs/OtpInput/index.d.ts +16 -0
  68. package/libs/form/src/inputs/Radio/index.d.ts +13 -0
  69. package/libs/form/src/inputs/Select/index.d.ts +11 -0
  70. package/libs/form/src/internal.d.ts +5 -0
  71. package/libs/form/src/types.d.ts +55 -0
  72. package/libs/form/src/utils.d.ts +8 -0
  73. package/libs/form/src/validators/index.d.ts +9 -0
  74. package/libs/form/src/validators/types.d.ts +2 -0
  75. package/libs/form/src/validators/utils/afm.d.ts +6 -0
  76. package/libs/form/src/validators/utils/file.d.ts +3 -0
  77. package/libs/form/src/validators/utils/iban.d.ts +4 -0
  78. package/libs/form/src/validators/utils/image.d.ts +3 -0
  79. package/libs/form/src/validators/utils/index.d.ts +27 -0
  80. package/libs/form/src/validators/utils/int.d.ts +3 -0
  81. package/libs/form/src/validators/utils/number.d.ts +3 -0
  82. package/libs/form/src/validators/utils/otp.d.ts +4 -0
  83. package/libs/form/src/validators/utils/phone.d.ts +11 -0
  84. package/libs/form/src/validators/utils/postal_code.d.ts +4 -0
  85. package/libs/form/src/validators/utils/text_limit.d.ts +4 -0
  86. package/libs/form/src/validators/utils/uuid4.d.ts +6 -0
  87. package/libs/ui/src/api/APIErrors.d.ts +1 -0
  88. package/libs/ui/src/api/APIProvider.d.ts +1 -0
  89. package/libs/ui/src/api/fetchAPI.d.ts +1 -5
  90. package/libs/ui/src/api/index.d.ts +1 -2
  91. package/libs/ui/src/api/utils.d.ts +5 -1
  92. package/libs/ui/src/app/BannerContainer/BannerContainer.stories.d.ts +1 -1
  93. package/libs/ui/src/app/BannerContainer/__stories__/CookiesBanner.d.ts +2 -2
  94. package/libs/ui/src/app/Footer/Footer.stories.d.ts +8 -8
  95. package/libs/ui/src/app/Footer/__stories__/Default.d.ts +2 -2
  96. package/libs/ui/src/app/Footer/__stories__/DefaultCopyright.d.ts +2 -2
  97. package/libs/ui/src/app/Footer/__stories__/FooterAllInclusive.d.ts +2 -2
  98. package/libs/ui/src/app/Footer/__stories__/FooterWithLink.d.ts +2 -2
  99. package/libs/ui/src/app/Footer/__stories__/FooterWithLogo.d.ts +2 -2
  100. package/libs/ui/src/app/Footer/__stories__/FooterWithSecondaryNavigation.d.ts +2 -2
  101. package/libs/ui/src/app/Footer/__stories__/FooterWithText.d.ts +2 -2
  102. package/libs/ui/src/app/Footer/__stories__/YearCopyright.d.ts +2 -2
  103. package/libs/ui/src/app/Header/Header.stories.d.ts +5 -5
  104. package/libs/ui/src/app/Header/__stories__/Default.d.ts +2 -2
  105. package/libs/ui/src/app/Header/__stories__/WithHeaderNavigation.d.ts +2 -2
  106. package/libs/ui/src/app/Header/__stories__/WithNavigation.d.ts +2 -2
  107. package/libs/ui/src/app/Header/__stories__/WithServiceName.d.ts +2 -2
  108. package/libs/ui/src/app/Header/__stories__/WithServiceNameAndLogo.d.ts +2 -2
  109. package/libs/ui/src/app/Loader/Loader.stories.d.ts +1 -1
  110. package/libs/ui/src/app/Loader/__stories__/Default.d.ts +2 -2
  111. package/libs/ui/src/app/Masthead/Masthead.stories.d.ts +3 -3
  112. package/libs/ui/src/app/Masthead/__stories__/Default.d.ts +2 -2
  113. package/libs/ui/src/app/Masthead/__stories__/WithElements.d.ts +2 -2
  114. package/libs/ui/src/app/Masthead/__stories__/WithLogo.d.ts +2 -2
  115. package/libs/ui/src/app/Modal/Modal.d.ts +8 -0
  116. package/libs/ui/src/app/Modal/Modal.stories.d.ts +6 -6
  117. package/libs/ui/src/app/Modal/__stories__/AlertDialog.d.ts +2 -2
  118. package/libs/ui/src/app/Modal/__stories__/Auto.d.ts +2 -2
  119. package/libs/ui/src/app/Modal/__stories__/Default.d.ts +2 -2
  120. package/libs/ui/src/app/Modal/__stories__/Dense.d.ts +2 -2
  121. package/libs/ui/src/app/Modal/__stories__/WithHooks.d.ts +2 -2
  122. package/libs/ui/src/app/Modal/__stories__/WithoutModalGaps.d.ts +2 -2
  123. package/libs/ui/src/app/Modal/auto.d.ts +4 -4
  124. package/libs/ui/src/app/Modal/index.d.ts +2 -7
  125. package/libs/ui/src/app/NotFound/NotFound.stories.d.ts +1 -1
  126. package/libs/ui/src/app/NotFound/__stories__/Default.d.ts +2 -2
  127. package/libs/ui/src/app/Panel/Panel.stories.d.ts +1 -1
  128. package/libs/ui/src/app/Panel/__stories__/Default.d.ts +2 -2
  129. package/libs/ui/src/app/PhaseBannerHeader/PhaseBannerHeader.stories.d.ts +1 -1
  130. package/libs/ui/src/app/PhaseBannerHeader/__stories__/Default.d.ts +2 -2
  131. package/libs/ui/src/app/PhaseBannerHeader/index.d.ts +1 -1
  132. package/libs/ui/src/app/QrCodeScanner/QrCodeScanner.stories.d.ts +1 -1
  133. package/libs/ui/src/app/QrCodeScanner/__stories__/Default.d.ts +2 -2
  134. package/libs/ui/src/app/QrCodeScanner/index.d.ts +1 -0
  135. package/libs/ui/src/app/QrCodeViewer/QRCode.stories.d.ts +2 -2
  136. package/libs/ui/src/app/QrCodeViewer/__stories__/Custom.d.ts +2 -2
  137. package/libs/ui/src/app/QrCodeViewer/__stories__/Default.d.ts +2 -2
  138. package/libs/ui/src/app/Skeleton/Skeleton.stories.d.ts +9 -10
  139. package/libs/ui/src/app/Skeleton/__stories__/Button.d.ts +2 -2
  140. package/libs/ui/src/app/Skeleton/__stories__/Circular.d.ts +2 -2
  141. package/libs/ui/src/app/Skeleton/__stories__/Default.d.ts +2 -2
  142. package/libs/ui/src/app/Skeleton/__stories__/NoAnimation.d.ts +2 -2
  143. package/libs/ui/src/app/Skeleton/__stories__/Rectangular.d.ts +2 -2
  144. package/libs/ui/src/app/Skeleton/__stories__/SpecificWidthAndHeight.d.ts +2 -2
  145. package/libs/ui/src/app/Skeleton/__stories__/TextSizes.d.ts +2 -2
  146. package/libs/ui/src/app/Skeleton/__stories__/UnderTypography.d.ts +2 -2
  147. package/libs/ui/src/app/Skeleton/__stories__/WithChildren.d.ts +2 -2
  148. package/libs/ui/src/app/ThemeOptions/index.d.ts +1 -1
  149. package/libs/ui/src/content/Accordion/Accordion.stories.d.ts +4 -4
  150. package/libs/ui/src/content/Accordion/__stories__/Auto.d.ts +2 -2
  151. package/libs/ui/src/content/Accordion/__stories__/Default.d.ts +2 -2
  152. package/libs/ui/src/content/Accordion/__stories__/WithHints.d.ts +2 -2
  153. package/libs/ui/src/content/Accordion/__stories__/WithHook.d.ts +2 -2
  154. package/libs/ui/src/content/Accordion/auto.d.ts +6 -5
  155. package/libs/ui/src/content/Accordion/hooks.d.ts +1 -1
  156. package/libs/ui/src/content/Blockquote/Blockquote.stories.d.ts +2 -2
  157. package/libs/ui/src/content/Blockquote/__stories__/Default.d.ts +2 -2
  158. package/libs/ui/src/content/Blockquote/__stories__/Dense.d.ts +2 -2
  159. package/libs/ui/src/content/Card/Card.stories.d.ts +11 -11
  160. package/libs/ui/src/content/Card/__stories__/Default.d.ts +2 -2
  161. package/libs/ui/src/content/Card/__stories__/Dense.d.ts +2 -2
  162. package/libs/ui/src/content/Card/__stories__/WithClickableContent.d.ts +2 -2
  163. package/libs/ui/src/content/Card/__stories__/WithClickableLink.d.ts +2 -2
  164. package/libs/ui/src/content/Card/__stories__/WithDarkBorder.d.ts +2 -2
  165. package/libs/ui/src/content/Card/__stories__/WithDarkTopBorder.d.ts +2 -2
  166. package/libs/ui/src/content/Card/__stories__/WithDivider.d.ts +2 -2
  167. package/libs/ui/src/content/Card/__stories__/WithGrayBorder.d.ts +2 -2
  168. package/libs/ui/src/content/Card/__stories__/WithGrayTopBorder.d.ts +2 -2
  169. package/libs/ui/src/content/Card/__stories__/WithGroupButton.d.ts +2 -2
  170. package/libs/ui/src/content/Card/__stories__/WithLink.d.ts +2 -2
  171. package/libs/ui/src/content/Chip/Chip.stories.d.ts +5 -5
  172. package/libs/ui/src/content/Chip/__stories__/ClickableChip.d.ts +2 -2
  173. package/libs/ui/src/content/Chip/__stories__/ClickableDeletableChip.d.ts +2 -2
  174. package/libs/ui/src/content/Chip/__stories__/Default.d.ts +2 -2
  175. package/libs/ui/src/content/Chip/__stories__/DeletableChip.d.ts +2 -2
  176. package/libs/ui/src/content/Chip/__stories__/GroupOfChips.d.ts +2 -2
  177. package/libs/ui/src/content/Details/Details.stories.d.ts +1 -1
  178. package/libs/ui/src/content/Details/__stories__/Default.d.ts +2 -2
  179. package/libs/ui/src/content/List/List.stories.d.ts +6 -6
  180. package/libs/ui/src/content/List/__stories__/BulletList.d.ts +2 -2
  181. package/libs/ui/src/content/List/__stories__/Default.d.ts +2 -2
  182. package/libs/ui/src/content/List/__stories__/HorizontalList.d.ts +2 -2
  183. package/libs/ui/src/content/List/__stories__/NestedBulletList.d.ts +2 -2
  184. package/libs/ui/src/content/List/__stories__/NumberedList.d.ts +2 -2
  185. package/libs/ui/src/content/List/__stories__/WithExtraSpace.d.ts +2 -2
  186. package/libs/ui/src/content/Markdown/index.d.ts +5 -2
  187. package/libs/ui/src/content/SafeHTML/index.d.ts +1 -1
  188. package/libs/ui/src/content/StepNav/StepNav.stories.d.ts +5 -5
  189. package/libs/ui/src/content/StepNav/__stories__/Auto.d.ts +2 -2
  190. package/libs/ui/src/content/StepNav/__stories__/Default.d.ts +2 -2
  191. package/libs/ui/src/content/StepNav/__stories__/Dense.d.ts +2 -2
  192. package/libs/ui/src/content/StepNav/__stories__/WithHints.d.ts +2 -2
  193. package/libs/ui/src/content/StepNav/__stories__/WithHook.d.ts +2 -2
  194. package/libs/ui/src/content/StepNav/auto.d.ts +5 -5
  195. package/libs/ui/src/content/SummaryList/SummaryList.stories.d.ts +7 -6
  196. package/libs/ui/src/content/SummaryList/__stories__/Default.d.ts +2 -2
  197. package/libs/ui/src/content/SummaryList/__stories__/RowVariations.d.ts +2 -2
  198. package/libs/ui/src/content/SummaryList/__stories__/WithActions.d.ts +2 -2
  199. package/libs/ui/src/content/SummaryList/__stories__/WithKeyAndAction.d.ts +2 -2
  200. package/libs/ui/src/content/SummaryList/__stories__/WithNoLastBorder.d.ts +3 -0
  201. package/libs/ui/src/content/SummaryList/__stories__/WithoutActions.d.ts +2 -2
  202. package/libs/ui/src/content/SummaryList/__stories__/WithoutBorders.d.ts +2 -2
  203. package/libs/ui/src/content/Table/Table.stories.d.ts +18 -18
  204. package/libs/ui/src/content/Table/TableFloatingScroll.d.ts +2 -2
  205. package/libs/ui/src/content/Table/__stories__/DarkVariant.d.ts +2 -2
  206. package/libs/ui/src/content/Table/__stories__/DarkVariantWithVerticalHeaders.d.ts +2 -2
  207. package/libs/ui/src/content/Table/__stories__/Default.d.ts +2 -2
  208. package/libs/ui/src/content/Table/__stories__/DefinedWidth.d.ts +2 -2
  209. package/libs/ui/src/content/Table/__stories__/Densed.d.ts +2 -2
  210. package/libs/ui/src/content/Table/__stories__/Full.d.ts +2 -2
  211. package/libs/ui/src/content/Table/__stories__/MultipleProps.d.ts +2 -2
  212. package/libs/ui/src/content/Table/__stories__/NoData.d.ts +2 -2
  213. package/libs/ui/src/content/Table/__stories__/NumericDataType.d.ts +2 -2
  214. package/libs/ui/src/content/Table/__stories__/RowColors.d.ts +2 -2
  215. package/libs/ui/src/content/Table/__stories__/Stacked.d.ts +2 -2
  216. package/libs/ui/src/content/Table/__stories__/TableCaptions.d.ts +2 -2
  217. package/libs/ui/src/content/Table/__stories__/VerticalBorders.d.ts +2 -2
  218. package/libs/ui/src/content/Table/__stories__/VerticalHeaders.d.ts +2 -2
  219. package/libs/ui/src/content/Table/__stories__/WithFloatingScroll.d.ts +2 -2
  220. package/libs/ui/src/content/Table/__stories__/WithLoader.d.ts +2 -2
  221. package/libs/ui/src/content/Table/__stories__/WithSortFilters.d.ts +2 -2
  222. package/libs/ui/src/content/Table/__stories__/ZebraProp.d.ts +2 -2
  223. package/libs/ui/src/content/Table/hooks/useSort.d.ts +1 -1
  224. package/libs/ui/src/content/Table/index.d.ts +2 -2
  225. package/libs/ui/src/content/TaskList/TaskList.stories.d.ts +2 -2
  226. package/libs/ui/src/content/TaskList/__stories__/Default.d.ts +2 -2
  227. package/libs/ui/src/content/TaskList/__stories__/Dense.d.ts +2 -2
  228. package/libs/ui/src/content/Timeline/Timeline.stories.d.ts +2 -2
  229. package/libs/ui/src/content/Timeline/__stories__/Default.d.ts +2 -2
  230. package/libs/ui/src/content/Timeline/__stories__/Dense.d.ts +2 -2
  231. package/libs/ui/src/feedback/CopyToClipboard/CopyToClipboard.stories.d.ts +3 -3
  232. package/libs/ui/src/feedback/CopyToClipboard/__stories__/Banner.d.ts +2 -2
  233. package/libs/ui/src/feedback/CopyToClipboard/__stories__/Default.d.ts +2 -2
  234. package/libs/ui/src/feedback/CopyToClipboard/__stories__/Dense.d.ts +2 -2
  235. package/libs/ui/src/feedback/CopyToClipboard/index.d.ts +1 -1
  236. package/libs/ui/src/feedback/ErrorSummary/ErrorSummary.stories.d.ts +6 -6
  237. package/libs/ui/src/feedback/ErrorSummary/__stories__/Default.d.ts +2 -2
  238. package/libs/ui/src/feedback/ErrorSummary/__stories__/Dense.d.ts +2 -2
  239. package/libs/ui/src/feedback/ErrorSummary/__stories__/LinkedToCheckbox.d.ts +2 -2
  240. package/libs/ui/src/feedback/ErrorSummary/__stories__/LinkedToField.d.ts +2 -2
  241. package/libs/ui/src/feedback/ErrorSummary/__stories__/LinkedToInput.d.ts +2 -2
  242. package/libs/ui/src/feedback/ErrorSummary/__stories__/WithBackLinkAndButton.d.ts +2 -2
  243. package/libs/ui/src/feedback/NotificationBanner/NotificationBanner.stories.d.ts +3 -3
  244. package/libs/ui/src/feedback/NotificationBanner/__stories__/Default.d.ts +2 -2
  245. package/libs/ui/src/feedback/NotificationBanner/__stories__/Dense.d.ts +2 -2
  246. package/libs/ui/src/feedback/NotificationBanner/__stories__/Success.d.ts +2 -2
  247. package/libs/ui/src/feedback/PhaseBanner/PhaseBanner.stories.d.ts +2 -2
  248. package/libs/ui/src/feedback/PhaseBanner/__stories__/Default.d.ts +2 -2
  249. package/libs/ui/src/feedback/PhaseBanner/__stories__/Underlined.d.ts +2 -2
  250. package/libs/ui/src/feedback/WarningText/WarningText.stories.d.ts +3 -3
  251. package/libs/ui/src/feedback/WarningText/__stories__/AssistiveText.d.ts +2 -2
  252. package/libs/ui/src/feedback/WarningText/__stories__/Default.d.ts +2 -2
  253. package/libs/ui/src/feedback/WarningText/__stories__/Dense.d.ts +2 -2
  254. package/libs/ui/src/form/AutoComplete/AutoComplete.stories.d.ts +10 -10
  255. package/libs/ui/src/form/AutoComplete/__stories__/Default.d.ts +2 -2
  256. package/libs/ui/src/form/AutoComplete/__stories__/Multiple.d.ts +2 -2
  257. package/libs/ui/src/form/AutoComplete/__stories__/MultipleShowingTwoSelected.d.ts +2 -2
  258. package/libs/ui/src/form/AutoComplete/__stories__/MultipleWithDefaultValues.d.ts +2 -2
  259. package/libs/ui/src/form/AutoComplete/__stories__/MultipleWithMinLength.d.ts +2 -2
  260. package/libs/ui/src/form/AutoComplete/__stories__/WithAutoSelect.d.ts +2 -2
  261. package/libs/ui/src/form/AutoComplete/__stories__/WithDefaultValue.d.ts +2 -2
  262. package/libs/ui/src/form/AutoComplete/__stories__/WithMinLength.d.ts +2 -2
  263. package/libs/ui/src/form/AutoComplete/__stories__/WithPlaceHolder.d.ts +2 -2
  264. package/libs/ui/src/form/AutoComplete/__stories__/WithShowAllValues.d.ts +2 -2
  265. package/libs/ui/src/form/Button/Button.stories.d.ts +12 -12
  266. package/libs/ui/src/form/Button/ThemeToggleButton.d.ts +2 -2
  267. package/libs/ui/src/form/Button/__stories__/Back.d.ts +2 -2
  268. package/libs/ui/src/form/Button/__stories__/ButtonLinkButton.d.ts +2 -2
  269. package/libs/ui/src/form/Button/__stories__/CallToActionButton.d.ts +2 -2
  270. package/libs/ui/src/form/Button/__stories__/Dense.d.ts +2 -2
  271. package/libs/ui/src/form/Button/__stories__/Disabled.d.ts +2 -2
  272. package/libs/ui/src/form/Button/__stories__/GroupingButtons.d.ts +2 -2
  273. package/libs/ui/src/form/Button/__stories__/GroupingButtonsAndLinks.d.ts +2 -2
  274. package/libs/ui/src/form/Button/__stories__/Primary.d.ts +2 -2
  275. package/libs/ui/src/form/Button/__stories__/Secondary.d.ts +2 -2
  276. package/libs/ui/src/form/Button/__stories__/ThemeToggle.d.ts +2 -2
  277. package/libs/ui/src/form/Button/__stories__/Warning.d.ts +2 -2
  278. package/libs/ui/src/form/Button/__stories__/WithVariantLink.d.ts +2 -2
  279. package/libs/ui/src/form/Checkbox/Checkbox.stories.d.ts +10 -10
  280. package/libs/ui/src/form/Checkbox/__stories__/ConditionalReveal.d.ts +2 -2
  281. package/libs/ui/src/form/Checkbox/__stories__/Default.d.ts +2 -2
  282. package/libs/ui/src/form/Checkbox/__stories__/Dense.d.ts +2 -2
  283. package/libs/ui/src/form/Checkbox/__stories__/Inline.d.ts +2 -2
  284. package/libs/ui/src/form/Checkbox/__stories__/InlineWithDivider.d.ts +2 -2
  285. package/libs/ui/src/form/Checkbox/__stories__/MultipleQuestions.d.ts +2 -2
  286. package/libs/ui/src/form/Checkbox/__stories__/NoneAnswer.d.ts +2 -2
  287. package/libs/ui/src/form/Checkbox/__stories__/NoneAnswerWithError.d.ts +2 -2
  288. package/libs/ui/src/form/Checkbox/__stories__/WithErrorMessage.d.ts +2 -2
  289. package/libs/ui/src/form/Checkbox/__stories__/WithHint.d.ts +2 -2
  290. package/libs/ui/src/form/DateInputContainer/DateInputContainer.stories.d.ts +5 -5
  291. package/libs/ui/src/form/DateInputContainer/__stories__/Default.d.ts +2 -2
  292. package/libs/ui/src/form/DateInputContainer/__stories__/Dense.d.ts +2 -2
  293. package/libs/ui/src/form/DateInputContainer/__stories__/MultipleQuestions.d.ts +2 -2
  294. package/libs/ui/src/form/DateInputContainer/__stories__/WithErrorMessage.d.ts +2 -2
  295. package/libs/ui/src/form/DateInputContainer/__stories__/WithErrorMessageForSingleField.d.ts +2 -2
  296. package/libs/ui/src/form/ErrorMessage/ErrorMessage.stories.d.ts +3 -3
  297. package/libs/ui/src/form/ErrorMessage/__stories__/DateInputError.d.ts +2 -2
  298. package/libs/ui/src/form/ErrorMessage/__stories__/Default.d.ts +2 -2
  299. package/libs/ui/src/form/ErrorMessage/__stories__/ErrorMessageOnly.d.ts +2 -2
  300. package/libs/ui/src/form/FileUpload/FileUpload.stories.d.ts +2 -2
  301. package/libs/ui/src/form/FileUpload/__stories__/Default.d.ts +2 -2
  302. package/libs/ui/src/form/FileUpload/__stories__/WithErrorMessage.d.ts +2 -2
  303. package/libs/ui/src/form/RadioContainer/RadioContainer.stories.d.ts +10 -10
  304. package/libs/ui/src/form/RadioContainer/__stories__/ConditionalReveal.d.ts +2 -2
  305. package/libs/ui/src/form/RadioContainer/__stories__/Default.d.ts +2 -2
  306. package/libs/ui/src/form/RadioContainer/__stories__/Dense.d.ts +2 -2
  307. package/libs/ui/src/form/RadioContainer/__stories__/Inline.d.ts +2 -2
  308. package/libs/ui/src/form/RadioContainer/__stories__/InlineWithDivider.d.ts +2 -2
  309. package/libs/ui/src/form/RadioContainer/__stories__/MultipleQuestions.d.ts +2 -2
  310. package/libs/ui/src/form/RadioContainer/__stories__/NoneAnswer.d.ts +2 -2
  311. package/libs/ui/src/form/RadioContainer/__stories__/WithErrorMessage.d.ts +2 -2
  312. package/libs/ui/src/form/RadioContainer/__stories__/WithHints.d.ts +2 -2
  313. package/libs/ui/src/form/RadioContainer/__stories__/WithMediumLegend.d.ts +2 -2
  314. package/libs/ui/src/form/SelectContainer/SelectContainer.stories.d.ts +4 -4
  315. package/libs/ui/src/form/SelectContainer/__stories__/Default.d.ts +2 -2
  316. package/libs/ui/src/form/SelectContainer/__stories__/Dense.d.ts +2 -2
  317. package/libs/ui/src/form/SelectContainer/__stories__/DisabledInput.d.ts +2 -2
  318. package/libs/ui/src/form/SelectContainer/__stories__/WithHint.d.ts +2 -2
  319. package/libs/ui/src/form/SingleCharacterInputs/SingleCharacterInput.stories.d.ts +4 -4
  320. package/libs/ui/src/form/SingleCharacterInputs/__stories__/Default.d.ts +2 -2
  321. package/libs/ui/src/form/SingleCharacterInputs/__stories__/WithDefaultError.d.ts +2 -2
  322. package/libs/ui/src/form/SingleCharacterInputs/__stories__/WithErrorMessageInvalidCode.d.ts +2 -2
  323. package/libs/ui/src/form/SingleCharacterInputs/__stories__/WithErrorMessageLessDigit.d.ts +2 -2
  324. package/libs/ui/src/form/TextArea/TextArea.stories.d.ts +8 -8
  325. package/libs/ui/src/form/TextArea/__stories__/Default.d.ts +2 -2
  326. package/libs/ui/src/form/TextArea/__stories__/Dense.d.ts +2 -2
  327. package/libs/ui/src/form/TextArea/__stories__/DisabledInput.d.ts +2 -2
  328. package/libs/ui/src/form/TextArea/__stories__/LimitedCharacters.d.ts +2 -2
  329. package/libs/ui/src/form/TextArea/__stories__/MultipleQuestions.d.ts +2 -2
  330. package/libs/ui/src/form/TextArea/__stories__/WithDeclaredRows.d.ts +2 -2
  331. package/libs/ui/src/form/TextArea/__stories__/WithErrorMessage.d.ts +2 -2
  332. package/libs/ui/src/form/TextArea/__stories__/WithHint.d.ts +2 -2
  333. package/libs/ui/src/form/TextInput/TextInput.stories.d.ts +10 -10
  334. package/libs/ui/src/form/TextInput/__stories__/AskingForNumbers.d.ts +2 -2
  335. package/libs/ui/src/form/TextInput/__stories__/Default.d.ts +2 -2
  336. package/libs/ui/src/form/TextInput/__stories__/Dense.d.ts +2 -2
  337. package/libs/ui/src/form/TextInput/__stories__/DisabledInput.d.ts +2 -2
  338. package/libs/ui/src/form/TextInput/__stories__/DisabledInputWithValue.d.ts +2 -2
  339. package/libs/ui/src/form/TextInput/__stories__/FixedWidths.d.ts +2 -2
  340. package/libs/ui/src/form/TextInput/__stories__/FluidWidths.d.ts +2 -2
  341. package/libs/ui/src/form/TextInput/__stories__/MultipleQuestions.d.ts +2 -2
  342. package/libs/ui/src/form/TextInput/__stories__/WithErrorMessage.d.ts +2 -2
  343. package/libs/ui/src/form/TextInput/__stories__/WithHint.d.ts +2 -2
  344. package/libs/ui/src/govgr/Footer/Copyright.d.ts +1 -0
  345. package/libs/ui/src/i18n/I18nText.d.ts +1 -1
  346. package/libs/ui/src/icons/index.d.ts +1 -1
  347. package/libs/ui/src/index.d.ts +1 -0
  348. package/libs/ui/src/layouts/Basic/Basic.stories.d.ts +4 -4
  349. package/libs/ui/src/layouts/Basic/__stories__/Default.d.ts +2 -2
  350. package/libs/ui/src/layouts/Basic/__stories__/MultipleRowsLayout.d.ts +2 -2
  351. package/libs/ui/src/layouts/Basic/__stories__/TwoThirdsOneThirdColumns.d.ts +2 -2
  352. package/libs/ui/src/layouts/Basic/__stories__/WithBasicLayout.d.ts +2 -2
  353. package/libs/ui/src/layouts/Grid/Grid.stories.d.ts +3 -3
  354. package/libs/ui/src/layouts/Grid/__stories__/Default.d.ts +2 -2
  355. package/libs/ui/src/layouts/Grid/__stories__/Inline.d.ts +2 -2
  356. package/libs/ui/src/layouts/Grid/__stories__/ResponsiveSpacing.d.ts +2 -2
  357. package/libs/ui/src/layouts/Screen/Screen.stories.d.ts +4 -4
  358. package/libs/ui/src/layouts/Screen/__stories__/Default.d.ts +2 -2
  359. package/libs/ui/src/layouts/Screen/__stories__/ScreenDown.d.ts +2 -2
  360. package/libs/ui/src/layouts/Screen/__stories__/ScreenUp.d.ts +2 -2
  361. package/libs/ui/src/layouts/Screen/__stories__/SpecificScreenSize.d.ts +2 -2
  362. package/libs/ui/src/layouts/Screen/index.d.ts +3 -2
  363. package/libs/ui/src/layouts/Stack/Stack.stories.d.ts +6 -6
  364. package/libs/ui/src/layouts/Stack/__stories__/AlignItems.d.ts +2 -2
  365. package/libs/ui/src/layouts/Stack/__stories__/Default.d.ts +2 -2
  366. package/libs/ui/src/layouts/Stack/__stories__/JustifyContent.d.ts +2 -2
  367. package/libs/ui/src/layouts/Stack/__stories__/NoWrap.d.ts +2 -2
  368. package/libs/ui/src/layouts/Stack/__stories__/Row.d.ts +2 -2
  369. package/libs/ui/src/layouts/Stack/__stories__/Spacing.d.ts +2 -2
  370. package/libs/ui/src/navigation/BackLink/BackLink.stories.d.ts +1 -1
  371. package/libs/ui/src/navigation/BackLink/__stories__/Default.d.ts +2 -2
  372. package/libs/ui/src/navigation/BackToTopLink/BackToTopLink.stories.d.ts +2 -2
  373. package/libs/ui/src/navigation/BackToTopLink/__stories__/Default.d.ts +2 -2
  374. package/libs/ui/src/navigation/BackToTopLink/__stories__/InMain.d.ts +2 -2
  375. package/libs/ui/src/navigation/Breadcrumbs/Breadcrumbs.stories.d.ts +2 -1
  376. package/libs/ui/src/navigation/Breadcrumbs/__stories__/Default.d.ts +2 -2
  377. package/libs/ui/src/navigation/Breadcrumbs/__stories__/WithoutCurrentPage.d.ts +3 -0
  378. package/libs/ui/src/navigation/Drawer/Drawer.stories.d.ts +3 -3
  379. package/libs/ui/src/navigation/Drawer/__stories__/Auto.d.ts +2 -2
  380. package/libs/ui/src/navigation/Drawer/__stories__/Default.d.ts +2 -2
  381. package/libs/ui/src/navigation/Drawer/__stories__/WithHook.d.ts +2 -2
  382. package/libs/ui/src/navigation/Drawer/auto.d.ts +6 -6
  383. package/libs/ui/src/navigation/Dropdown/Dropdown.stories.d.ts +11 -11
  384. package/libs/ui/src/navigation/Dropdown/__stories__/AlignRight.d.ts +2 -2
  385. package/libs/ui/src/navigation/Dropdown/__stories__/ContentPosition.d.ts +2 -2
  386. package/libs/ui/src/navigation/Dropdown/__stories__/Default.d.ts +2 -2
  387. package/libs/ui/src/navigation/Dropdown/__stories__/Dense.d.ts +2 -2
  388. package/libs/ui/src/navigation/Dropdown/__stories__/Disabled.d.ts +2 -2
  389. package/libs/ui/src/navigation/Dropdown/__stories__/PlacementTop.d.ts +2 -2
  390. package/libs/ui/src/navigation/Dropdown/__stories__/ScrollableContent.d.ts +2 -2
  391. package/libs/ui/src/navigation/Dropdown/__stories__/Secondary.d.ts +2 -2
  392. package/libs/ui/src/navigation/Dropdown/__stories__/VariantLink.d.ts +2 -2
  393. package/libs/ui/src/navigation/Dropdown/__stories__/Warning.d.ts +2 -2
  394. package/libs/ui/src/navigation/Dropdown/__stories__/WithIcons.d.ts +2 -2
  395. package/libs/ui/src/navigation/Dropdown/index.d.ts +1 -1
  396. package/libs/ui/src/navigation/Link/Link.stories.d.ts +7 -7
  397. package/libs/ui/src/navigation/Link/__stories__/DarkBackground.d.ts +2 -2
  398. package/libs/ui/src/navigation/Link/__stories__/DarkBackgroundNoUnderline.d.ts +2 -2
  399. package/libs/ui/src/navigation/Link/__stories__/Default.d.ts +2 -2
  400. package/libs/ui/src/navigation/Link/__stories__/ExternalLink.d.ts +2 -2
  401. package/libs/ui/src/navigation/Link/__stories__/NoUnderline.d.ts +2 -2
  402. package/libs/ui/src/navigation/Link/__stories__/OpensInNewTab.d.ts +2 -2
  403. package/libs/ui/src/navigation/Link/__stories__/WithProvider.d.ts +2 -2
  404. package/libs/ui/src/navigation/Link/index.d.ts +2 -3
  405. package/libs/ui/src/navigation/NavList/NavList.stories.d.ts +9 -8
  406. package/libs/ui/src/navigation/NavList/__stories__/Default.d.ts +2 -2
  407. package/libs/ui/src/navigation/NavList/__stories__/HorizontalWithDrawer.d.ts +2 -2
  408. package/libs/ui/src/navigation/NavList/__stories__/HorizontalWithoutDrawer.d.ts +2 -2
  409. package/libs/ui/src/navigation/NavList/__stories__/NavListWithoutNav.d.ts +2 -2
  410. package/libs/ui/src/navigation/NavList/__stories__/UsingHeaderButton.d.ts +2 -2
  411. package/libs/ui/src/navigation/NavList/__stories__/UsingNavListAuto.d.ts +2 -2
  412. package/libs/ui/src/navigation/NavList/__stories__/Vertical.d.ts +2 -2
  413. package/libs/ui/src/navigation/NavList/__stories__/VerticalWithoutDrawer.d.ts +2 -2
  414. package/libs/ui/src/navigation/NavList/__stories__/WithBadge.d.ts +3 -0
  415. package/libs/ui/src/navigation/NavList/index.d.ts +2 -1
  416. package/libs/ui/src/navigation/NavList/types.d.ts +1 -1
  417. package/libs/ui/src/navigation/Pagination/Pagination.d.ts +39 -0
  418. package/libs/ui/src/navigation/Pagination/Pagination.stories.d.ts +7 -7
  419. package/libs/ui/src/navigation/Pagination/__stories__/Auto.d.ts +2 -2
  420. package/libs/ui/src/navigation/Pagination/__stories__/Default.d.ts +2 -2
  421. package/libs/ui/src/navigation/Pagination/__stories__/PaginationSmall.d.ts +2 -2
  422. package/libs/ui/src/navigation/Pagination/__stories__/PaginationWithSmallFont.d.ts +2 -2
  423. package/libs/ui/src/navigation/Pagination/__stories__/WithHook.d.ts +2 -2
  424. package/libs/ui/src/navigation/Pagination/__stories__/WithInactiveValues.d.ts +2 -2
  425. package/libs/ui/src/navigation/Pagination/__stories__/WithResultsPerPage.d.ts +2 -2
  426. package/libs/ui/src/navigation/Pagination/auto.d.ts +9 -6
  427. package/libs/ui/src/navigation/Pagination/hooks.d.ts +1 -1
  428. package/libs/ui/src/navigation/Pagination/index.d.ts +3 -39
  429. package/libs/ui/src/navigation/SkipLink/SkipLink.stories.d.ts +1 -1
  430. package/libs/ui/src/navigation/SkipLink/__stories__/Default.d.ts +2 -2
  431. package/libs/ui/src/navigation/Tabs/Tabs.stories.d.ts +4 -3
  432. package/libs/ui/src/navigation/Tabs/__stories__/Auto.d.ts +2 -2
  433. package/libs/ui/src/navigation/Tabs/__stories__/Default.d.ts +2 -2
  434. package/libs/ui/src/navigation/Tabs/__stories__/Dense.d.ts +2 -2
  435. package/libs/ui/src/navigation/Tabs/__stories__/UsingAccordion.d.ts +3 -0
  436. package/libs/ui/src/navigation/Tabs/auto.d.ts +6 -5
  437. package/libs/ui/src/patterns/FilteredResults/DataTable.d.ts +5 -0
  438. package/libs/ui/src/patterns/FilteredResults/FilterChips.d.ts +3 -0
  439. package/libs/ui/src/patterns/FilteredResults/FilterFields.d.ts +5 -0
  440. package/libs/ui/src/patterns/FilteredResults/FilteredResults.stories.d.ts +8 -0
  441. package/libs/ui/src/patterns/FilteredResults/__stories__/Default.d.ts +2 -0
  442. package/libs/ui/src/patterns/FilteredResults/hooks.d.ts +22 -0
  443. package/libs/ui/src/patterns/FilteredResults/index.d.ts +25 -0
  444. package/libs/ui/src/patterns/index.d.ts +1 -0
  445. package/libs/ui/src/registry.d.ts +12 -0
  446. package/libs/ui/src/typography/CodeBlock/CodeBlock.stories.d.ts +11 -0
  447. package/libs/ui/src/typography/CodeBlock/__stories__/Default.d.ts +3 -0
  448. package/libs/ui/src/typography/CodeBlock/__stories__/Highlighted.d.ts +3 -0
  449. package/libs/ui/src/typography/CodeBlock/__stories__/WithCopyToClipboard.d.ts +3 -0
  450. package/libs/ui/src/typography/CodeBlock/__stories__/WithPhaseBanner.d.ts +3 -0
  451. package/libs/ui/src/typography/CodeBlock/index.d.ts +14 -2
  452. package/libs/ui/src/typography/Heading/Heading.stories.d.ts +1 -1
  453. package/libs/ui/src/typography/Heading/__stories__/Default.d.ts +2 -2
  454. package/libs/ui/src/typography/HeadingCaption/HeadingCaption.stories.d.ts +2 -2
  455. package/libs/ui/src/typography/HeadingCaption/__stories__/Default.d.ts +2 -2
  456. package/libs/ui/src/typography/HeadingCaption/__stories__/NestedToTitle.d.ts +2 -2
  457. package/libs/ui/src/typography/Hint/Hint.stories.d.ts +2 -2
  458. package/libs/ui/src/typography/Hint/__stories__/Default.d.ts +2 -2
  459. package/libs/ui/src/typography/Hint/__stories__/FontSizes.d.ts +2 -2
  460. package/libs/ui/src/typography/NormalText/NormalText.stories.d.ts +4 -4
  461. package/libs/ui/src/typography/NormalText/__stories__/Default.d.ts +2 -2
  462. package/libs/ui/src/typography/NormalText/__stories__/FontSizes.d.ts +2 -2
  463. package/libs/ui/src/typography/NormalText/__stories__/FontWeight.d.ts +2 -2
  464. package/libs/ui/src/typography/NormalText/__stories__/Variants.d.ts +2 -2
  465. package/libs/ui/src/typography/Paragraph/Paragraph.stories.d.ts +5 -5
  466. package/libs/ui/src/typography/Paragraph/__stories__/Default.d.ts +2 -2
  467. package/libs/ui/src/typography/Paragraph/__stories__/FontSizes.d.ts +2 -2
  468. package/libs/ui/src/typography/Paragraph/__stories__/FontWeight.d.ts +2 -2
  469. package/libs/ui/src/typography/Paragraph/__stories__/LeadVariant.d.ts +2 -2
  470. package/libs/ui/src/typography/Paragraph/__stories__/SmallVariant.d.ts +2 -2
  471. package/libs/ui/src/utils/TestVariant/index.d.ts +1 -1
  472. package/libs/ui/src/utils/VisuallyHidden/VisuallyHidden.stories.d.ts +1 -1
  473. package/libs/ui/src/utils/VisuallyHidden/__stories__/Default.d.ts +2 -2
  474. package/libs/ui/src/utils/hooks/useScreen.d.ts +1 -1
  475. package/libs-ui/react-core/src/Accordion/index.d.ts +1 -1
  476. package/libs-ui/react-core/src/AccordionControls/index.d.ts +1 -1
  477. package/libs-ui/react-core/src/AccordionSection/index.d.ts +1 -1
  478. package/libs-ui/react-core/src/AccordionSectionContent/index.d.ts +1 -1
  479. package/libs-ui/react-core/src/AccordionSectionSummary/index.d.ts +1 -1
  480. package/libs-ui/react-core/src/AccordionSectionSummaryHeading/index.d.ts +1 -1
  481. package/libs-ui/react-core/src/AdminAside/index.d.ts +3 -3
  482. package/libs-ui/react-core/src/AdminContainer/index.d.ts +1 -1
  483. package/libs-ui/react-core/src/AdminHeader/index.d.ts +4 -4
  484. package/libs-ui/react-core/src/AdminHeaderContent/index.d.ts +3 -3
  485. package/libs-ui/react-core/src/AdminLayout/index.d.ts +3 -8
  486. package/libs-ui/react-core/src/AdminMain/index.d.ts +3 -3
  487. package/libs-ui/react-core/src/AdminTopSection/index.d.ts +1 -1
  488. package/libs-ui/react-core/src/Aside/index.d.ts +1 -1
  489. package/libs-ui/react-core/src/AutoCompleteAssistiveHint/index.d.ts +1 -1
  490. package/libs-ui/react-core/src/AutoCompleteContainer/index.d.ts +1 -1
  491. package/libs-ui/react-core/src/AutoCompleteInput/index.d.ts +1 -1
  492. package/libs-ui/react-core/src/AutoCompleteInputTypeahead/index.d.ts +1 -1
  493. package/libs-ui/react-core/src/AutoCompleteMultipleInput/index.d.ts +1 -1
  494. package/libs-ui/react-core/src/AutoCompleteMultipleInputContainer/index.d.ts +1 -1
  495. package/libs-ui/react-core/src/AutoCompleteResultList/index.d.ts +1 -1
  496. package/libs-ui/react-core/src/AutoCompleteResultListItem/index.d.ts +1 -1
  497. package/libs-ui/react-core/src/AutoCompleteStatus/index.d.ts +1 -1
  498. package/libs-ui/react-core/src/AutoCompleteStatusContainer/index.d.ts +1 -1
  499. package/libs-ui/react-core/src/BackLink/index.d.ts +1 -1
  500. package/libs-ui/react-core/src/BackToTopContainer/index.d.ts +1 -1
  501. package/libs-ui/react-core/src/BackToTopLimit/index.d.ts +1 -1
  502. package/libs-ui/react-core/src/BackToTopLink/index.d.ts +1 -1
  503. package/libs-ui/react-core/src/BannerContainer/index.d.ts +1 -1
  504. package/libs-ui/react-core/src/Base/index.d.ts +1 -1
  505. package/libs-ui/react-core/src/Blockquote/index.d.ts +1 -1
  506. package/libs-ui/react-core/src/Bottom/index.d.ts +1 -1
  507. package/libs-ui/react-core/src/BottomInfo/index.d.ts +1 -1
  508. package/libs-ui/react-core/src/BottomInfoContainer/index.d.ts +1 -1
  509. package/libs-ui/react-core/src/BottomInfoContent/index.d.ts +1 -1
  510. package/libs-ui/react-core/src/Breadcrumbs/index.d.ts +1 -1
  511. package/libs-ui/react-core/src/BreadcrumbsList/index.d.ts +1 -1
  512. package/libs-ui/react-core/src/BreadcrumbsListItem/index.d.ts +1 -1
  513. package/libs-ui/react-core/src/Button/index.d.ts +1 -1
  514. package/libs-ui/react-core/src/ButtonGroup/index.d.ts +1 -1
  515. package/libs-ui/react-core/src/ButtonLink/index.d.ts +1 -1
  516. package/libs-ui/react-core/src/CallToAction/index.d.ts +1 -1
  517. package/libs-ui/react-core/src/Card/index.d.ts +1 -1
  518. package/libs-ui/react-core/src/CardAction/index.d.ts +1 -1
  519. package/libs-ui/react-core/src/CardContent/index.d.ts +1 -1
  520. package/libs-ui/react-core/src/CardHeading/index.d.ts +1 -1
  521. package/libs-ui/react-core/src/Checkbox/index.d.ts +1 -1
  522. package/libs-ui/react-core/src/CheckboxConditional/index.d.ts +1 -1
  523. package/libs-ui/react-core/src/CheckboxItem/index.d.ts +1 -1
  524. package/libs-ui/react-core/src/Chip/index.d.ts +1 -1
  525. package/libs-ui/react-core/src/ChipContainer/index.d.ts +1 -1
  526. package/libs-ui/react-core/src/ChipHeading/index.d.ts +1 -1
  527. package/libs-ui/react-core/src/ChipKeyValue/index.d.ts +1 -1
  528. package/libs-ui/react-core/src/ChoiceDividerText/index.d.ts +1 -1
  529. package/libs-ui/react-core/src/CircularProgress/index.d.ts +1 -1
  530. package/libs-ui/react-core/src/CloseButton/index.d.ts +1 -1
  531. package/libs-ui/react-core/src/Code/index.d.ts +1 -1
  532. package/libs-ui/react-core/src/CodeBlockContainer/index.d.ts +10 -0
  533. package/libs-ui/react-core/src/CodeBlockContent/index.d.ts +10 -0
  534. package/libs-ui/react-core/src/CodeBlockHeader/index.d.ts +19 -0
  535. package/libs-ui/react-core/src/Container/index.d.ts +1 -1
  536. package/libs-ui/react-core/src/CopyToClipboardContainer/index.d.ts +1 -1
  537. package/libs-ui/react-core/src/CopyToClipboardMessage/index.d.ts +1 -1
  538. package/libs-ui/react-core/src/CopyrightContainer/index.d.ts +1 -1
  539. package/libs-ui/react-core/src/DateInputContainer/index.d.ts +1 -1
  540. package/libs-ui/react-core/src/DateInputItem/index.d.ts +1 -1
  541. package/libs-ui/react-core/src/Details/index.d.ts +1 -1
  542. package/libs-ui/react-core/src/DetailsContent/index.d.ts +1 -1
  543. package/libs-ui/react-core/src/DetailsSummary/index.d.ts +1 -1
  544. package/libs-ui/react-core/src/Drawer/index.d.ts +1 -1
  545. package/libs-ui/react-core/src/DrawerHeading/index.d.ts +1 -1
  546. package/libs-ui/react-core/src/DropdownBase/index.d.ts +1 -1
  547. package/libs-ui/react-core/src/DropdownButton/index.d.ts +1 -1
  548. package/libs-ui/react-core/src/DropdownContent/index.d.ts +1 -1
  549. package/libs-ui/react-core/src/ErrorMessage/index.d.ts +1 -1
  550. package/libs-ui/react-core/src/ErrorSummary/index.d.ts +1 -1
  551. package/libs-ui/react-core/src/FieldContainer/index.d.ts +1 -1
  552. package/libs-ui/react-core/src/Fieldset/index.d.ts +1 -1
  553. package/libs-ui/react-core/src/FieldsetLegend/index.d.ts +1 -1
  554. package/libs-ui/react-core/src/FileUpload/index.d.ts +1 -1
  555. package/libs-ui/react-core/src/FileUploadContainer/index.d.ts +1 -1
  556. package/libs-ui/react-core/src/FillableText/index.d.ts +1 -1
  557. package/libs-ui/react-core/src/FilterContainer/index.d.ts +1 -1
  558. package/libs-ui/react-core/src/FilterContent/index.d.ts +1 -1
  559. package/libs-ui/react-core/src/FilterHeadingContainer/index.d.ts +1 -1
  560. package/libs-ui/react-core/src/FilterOptionsSection/index.d.ts +1 -1
  561. package/libs-ui/react-core/src/FilterSelectedHeading/index.d.ts +1 -1
  562. package/libs-ui/react-core/src/FilterSelectedSection/index.d.ts +1 -1
  563. package/libs-ui/react-core/src/Footer/index.d.ts +1 -1
  564. package/libs-ui/react-core/src/FooterContainer/index.d.ts +1 -1
  565. package/libs-ui/react-core/src/FooterContent/index.d.ts +1 -1
  566. package/libs-ui/react-core/src/FooterContentLogos/index.d.ts +1 -1
  567. package/libs-ui/react-core/src/FooterHeading/index.d.ts +1 -1
  568. package/libs-ui/react-core/src/FooterImage/index.d.ts +1 -1
  569. package/libs-ui/react-core/src/FooterInfo/index.d.ts +1 -1
  570. package/libs-ui/react-core/src/FooterInfoSection/index.d.ts +1 -1
  571. package/libs-ui/react-core/src/FooterLink/index.d.ts +1 -1
  572. package/libs-ui/react-core/src/FooterList/index.d.ts +1 -1
  573. package/libs-ui/react-core/src/FooterListItem/index.d.ts +1 -1
  574. package/libs-ui/react-core/src/FooterNavigation/index.d.ts +1 -1
  575. package/libs-ui/react-core/src/FooterNavigationSection/index.d.ts +1 -1
  576. package/libs-ui/react-core/src/Form/index.d.ts +1 -1
  577. package/libs-ui/react-core/src/FullPageBackground/index.d.ts +1 -1
  578. package/libs-ui/react-core/src/GovGRLogo/index.d.ts +1 -1
  579. package/libs-ui/react-core/src/Grid/index.d.ts +1 -1
  580. package/libs-ui/react-core/src/Header/index.d.ts +1 -1
  581. package/libs-ui/react-core/src/HeaderContent/index.d.ts +1 -1
  582. package/libs-ui/react-core/src/HeaderLogo/index.d.ts +1 -1
  583. package/libs-ui/react-core/src/HeaderNavMenuContent/index.d.ts +1 -1
  584. package/libs-ui/react-core/src/HeaderSecondaryLogo/index.d.ts +1 -1
  585. package/libs-ui/react-core/src/HeaderSection/index.d.ts +1 -1
  586. package/libs-ui/react-core/src/HeaderTitle/index.d.ts +1 -1
  587. package/libs-ui/react-core/src/Heading/index.d.ts +1 -1
  588. package/libs-ui/react-core/src/HeadingCaption/index.d.ts +1 -1
  589. package/libs-ui/react-core/src/HellenicRepublicLogo/index.d.ts +1 -1
  590. package/libs-ui/react-core/src/Hidden/index.d.ts +1 -1
  591. package/libs-ui/react-core/src/Hint/index.d.ts +1 -1
  592. package/libs-ui/react-core/src/ImageLogo/index.d.ts +1 -1
  593. package/libs-ui/react-core/src/ImageLogoSet/index.d.ts +1 -1
  594. package/libs-ui/react-core/src/KitchenSinkAllComponents/index.d.ts +1 -1
  595. package/libs-ui/react-core/src/KitchenSinkCard/index.d.ts +1 -1
  596. package/libs-ui/react-core/src/KitchenSinkCategory/index.d.ts +1 -1
  597. package/libs-ui/react-core/src/KitchenSinkContent/index.d.ts +1 -1
  598. package/libs-ui/react-core/src/KitchenSinkContentInfo/index.d.ts +1 -1
  599. package/libs-ui/react-core/src/KitchenSinkContentTags/index.d.ts +1 -1
  600. package/libs-ui/react-core/src/KitchenSinkHeading/index.d.ts +1 -1
  601. package/libs-ui/react-core/src/KitchenSinkLetterContent/index.d.ts +1 -1
  602. package/libs-ui/react-core/src/LabelContainer/index.d.ts +1 -1
  603. package/libs-ui/react-core/src/LabelTitle/index.d.ts +1 -1
  604. package/libs-ui/react-core/src/LabeledText/index.d.ts +1 -1
  605. package/libs-ui/react-core/src/Layout/index.d.ts +1 -1
  606. package/libs-ui/react-core/src/LinkBase/index.d.ts +1 -1
  607. package/libs-ui/react-core/src/List/index.d.ts +1 -1
  608. package/libs-ui/react-core/src/ListItem/index.d.ts +1 -1
  609. package/libs-ui/react-core/src/LoaderContainer/index.d.ts +1 -1
  610. package/libs-ui/react-core/src/Main/index.d.ts +1 -1
  611. package/libs-ui/react-core/src/Masthead/index.d.ts +1 -1
  612. package/libs-ui/react-core/src/MastheadBody/index.d.ts +1 -1
  613. package/libs-ui/react-core/src/MastheadLogo/index.d.ts +1 -1
  614. package/libs-ui/react-core/src/ModalAction/index.d.ts +1 -1
  615. package/libs-ui/react-core/src/ModalContainer/index.d.ts +1 -1
  616. package/libs-ui/react-core/src/ModalContent/index.d.ts +1 -1
  617. package/libs-ui/react-core/src/ModalHeading/index.d.ts +1 -1
  618. package/libs-ui/react-core/src/Nav/index.d.ts +1 -1
  619. package/libs-ui/react-core/src/NavList/index.d.ts +1 -1
  620. package/libs-ui/react-core/src/NavListItemAction/index.d.ts +13 -1
  621. package/libs-ui/react-core/src/NavListItemActionContainer/index.d.ts +1 -1
  622. package/libs-ui/react-core/src/NavListItemBadge/index.d.ts +15 -0
  623. package/libs-ui/react-core/src/NavListItemButton/index.d.ts +1 -1
  624. package/libs-ui/react-core/src/NavListItemLink/index.d.ts +1 -1
  625. package/libs-ui/react-core/src/NavMenuContainer/index.d.ts +1 -1
  626. package/libs-ui/react-core/src/NavMenuContent/index.d.ts +1 -1
  627. package/libs-ui/react-core/src/NavMenuContentListBase/index.d.ts +1 -1
  628. package/libs-ui/react-core/src/NavMenuContentListItem/index.d.ts +1 -1
  629. package/libs-ui/react-core/src/NavMenuTitle/index.d.ts +1 -1
  630. package/libs-ui/react-core/src/NormalText/index.d.ts +1 -1
  631. package/libs-ui/react-core/src/NotificationBannerContainer/index.d.ts +1 -1
  632. package/libs-ui/react-core/src/NotificationBannerContent/index.d.ts +1 -1
  633. package/libs-ui/react-core/src/NotificationBannerHeader/index.d.ts +1 -1
  634. package/libs-ui/react-core/src/NotificationBannerHeading/index.d.ts +1 -1
  635. package/libs-ui/react-core/src/NotificationBannerLink/index.d.ts +1 -1
  636. package/libs-ui/react-core/src/PageTitleCaption/index.d.ts +1 -1
  637. package/libs-ui/react-core/src/PageTitleContainer/index.d.ts +1 -1
  638. package/libs-ui/react-core/src/PageTitleHeading/index.d.ts +1 -1
  639. package/libs-ui/react-core/src/Pagination/index.d.ts +1 -1
  640. package/libs-ui/react-core/src/PaginationLabelContainer/index.d.ts +1 -1
  641. package/libs-ui/react-core/src/PaginationList/index.d.ts +1 -1
  642. package/libs-ui/react-core/src/PaginationListItem/index.d.ts +1 -1
  643. package/libs-ui/react-core/src/Panel/index.d.ts +1 -1
  644. package/libs-ui/react-core/src/PanelBody/index.d.ts +1 -1
  645. package/libs-ui/react-core/src/PanelTitle/index.d.ts +1 -1
  646. package/libs-ui/react-core/src/Paragraph/index.d.ts +1 -1
  647. package/libs-ui/react-core/src/PhaseBanner/index.d.ts +1 -1
  648. package/libs-ui/react-core/src/PhaseBannerHeaderContainer/index.d.ts +1 -1
  649. package/libs-ui/react-core/src/PhaseBannerTag/index.d.ts +1 -1
  650. package/libs-ui/react-core/src/PhaseBannerText/index.d.ts +1 -1
  651. package/libs-ui/react-core/src/RadioConditional/index.d.ts +1 -1
  652. package/libs-ui/react-core/src/RadioContainer/index.d.ts +1 -1
  653. package/libs-ui/react-core/src/RadioItem/index.d.ts +1 -1
  654. package/libs-ui/react-core/src/ResultsActionBar/index.d.ts +1 -1
  655. package/libs-ui/react-core/src/ResultsHeading/index.d.ts +1 -1
  656. package/libs-ui/react-core/src/ResultsHeadingActions/index.d.ts +1 -1
  657. package/libs-ui/react-core/src/SearchButton/index.d.ts +1 -1
  658. package/libs-ui/react-core/src/SearchContainer/index.d.ts +1 -1
  659. package/libs-ui/react-core/src/Section/index.d.ts +1 -1
  660. package/libs-ui/react-core/src/SectionBreak/index.d.ts +1 -1
  661. package/libs-ui/react-core/src/SelectContainer/index.d.ts +1 -1
  662. package/libs-ui/react-core/src/SelectOption/index.d.ts +1 -1
  663. package/libs-ui/react-core/src/SingleCharacterInput/index.d.ts +1 -1
  664. package/libs-ui/react-core/src/SingleCharacterInputs/index.d.ts +1 -1
  665. package/libs-ui/react-core/src/Skeleton/index.d.ts +1 -1
  666. package/libs-ui/react-core/src/SkipLink/index.d.ts +1 -1
  667. package/libs-ui/react-core/src/Stack/index.d.ts +1 -1
  668. package/libs-ui/react-core/src/StepNav/index.d.ts +1 -1
  669. package/libs-ui/react-core/src/StepNavAccordion/index.d.ts +1 -1
  670. package/libs-ui/react-core/src/StepNavAccordionContent/index.d.ts +1 -1
  671. package/libs-ui/react-core/src/StepNavAccordionHeadingText/index.d.ts +1 -1
  672. package/libs-ui/react-core/src/StepNavAccordionHeadingTitle/index.d.ts +1 -1
  673. package/libs-ui/react-core/src/StepNavAccordionSummary/index.d.ts +1 -1
  674. package/libs-ui/react-core/src/StepNavAccordionSummaryHeading/index.d.ts +1 -1
  675. package/libs-ui/react-core/src/StepNavCircleNumber/index.d.ts +1 -1
  676. package/libs-ui/react-core/src/StepNavControls/index.d.ts +1 -1
  677. package/libs-ui/react-core/src/StepNavList/index.d.ts +1 -1
  678. package/libs-ui/react-core/src/StepNavListItem/index.d.ts +1 -1
  679. package/libs-ui/react-core/src/SummaryList/index.d.ts +1 -1
  680. package/libs-ui/react-core/src/SummaryListItem/index.d.ts +1 -1
  681. package/libs-ui/react-core/src/SummaryListItemAction/index.d.ts +1 -1
  682. package/libs-ui/react-core/src/SummaryListItemKey/index.d.ts +1 -1
  683. package/libs-ui/react-core/src/SummaryListItemValue/index.d.ts +1 -1
  684. package/libs-ui/react-core/src/SvgIcon/index.d.ts +1 -1
  685. package/libs-ui/react-core/src/Table/index.d.ts +1 -1
  686. package/libs-ui/react-core/src/TableBody/index.d.ts +1 -1
  687. package/libs-ui/react-core/src/TableCaption/index.d.ts +1 -1
  688. package/libs-ui/react-core/src/TableContainer/index.d.ts +1 -1
  689. package/libs-ui/react-core/src/TableDataCell/index.d.ts +1 -1
  690. package/libs-ui/react-core/src/TableHead/index.d.ts +1 -1
  691. package/libs-ui/react-core/src/TableHeadCell/index.d.ts +1 -1
  692. package/libs-ui/react-core/src/TableLoaderBackground/index.d.ts +1 -1
  693. package/libs-ui/react-core/src/TableNoDataRow/index.d.ts +1 -1
  694. package/libs-ui/react-core/src/TableRow/index.d.ts +1 -1
  695. package/libs-ui/react-core/src/TableSortIconContainer/index.d.ts +1 -1
  696. package/libs-ui/react-core/src/Tabs/index.d.ts +1 -2
  697. package/libs-ui/react-core/src/TabsHeading/index.d.ts +1 -1
  698. package/libs-ui/react-core/src/TabsList/index.d.ts +1 -1
  699. package/libs-ui/react-core/src/TabsListItemBase/index.d.ts +1 -1
  700. package/libs-ui/react-core/src/TabsPanelBase/index.d.ts +1 -1
  701. package/libs-ui/react-core/src/TaskList/index.d.ts +1 -1
  702. package/libs-ui/react-core/src/TaskListItem/index.d.ts +1 -1
  703. package/libs-ui/react-core/src/TaskListItemContent/index.d.ts +1 -1
  704. package/libs-ui/react-core/src/TaskListItemHeading/index.d.ts +1 -1
  705. package/libs-ui/react-core/src/TaskListItemTag/index.d.ts +1 -1
  706. package/libs-ui/react-core/src/TextArea/index.d.ts +1 -1
  707. package/libs-ui/react-core/src/TextInput/index.d.ts +1 -1
  708. package/libs-ui/react-core/src/Timeline/index.d.ts +1 -1
  709. package/libs-ui/react-core/src/TimelineActions/index.d.ts +1 -1
  710. package/libs-ui/react-core/src/TimelineContent/index.d.ts +1 -1
  711. package/libs-ui/react-core/src/TimelineHeading/index.d.ts +1 -1
  712. package/libs-ui/react-core/src/TimelineItem/index.d.ts +1 -1
  713. package/libs-ui/react-core/src/Top/index.d.ts +1 -1
  714. package/libs-ui/react-core/src/Typography/index.d.ts +1 -1
  715. package/libs-ui/react-core/src/VisuallyHidden/index.d.ts +1 -1
  716. package/libs-ui/react-core/src/WarningText/index.d.ts +1 -1
  717. package/libs-ui/react-core/src/index.d.ts +218 -0
  718. package/libs-ui/react-experimental/src/FloatingButton/index.d.ts +1 -1
  719. package/libs-ui/react-experimental/src/Kitchensink/AllComponents.d.ts +2 -2
  720. package/libs-ui/react-experimental/src/Kitchensink/KitchensinkByCategory.d.ts +1 -1
  721. package/libs-ui/react-experimental/src/Kitchensink/KitchensinkByLetter.d.ts +2 -2
  722. package/libs-ui/react-experimental/src/Kitchensink/KitchensinkComponent.d.ts +1 -1
  723. package/libs-ui/react-experimental/src/Kitchensink/KitchensinkDashboard.d.ts +2 -2
  724. package/libs-ui/react-experimental/src/OptionButtonBase/index.d.ts +1 -1
  725. package/libs-ui/react-experimental/src/OptionButtonSteps/index.d.ts +1 -1
  726. package/libs-ui/react-icons/src/Base/index.d.ts +1 -1
  727. package/libs-ui/react-icons/src/Icon/index.d.ts +1 -1
  728. package/libs-ui/react-icons/src/SvgIcon/index.d.ts +1 -1
  729. package/package.json +7 -10
  730. package/src/FloatingButton/__snapshots__/index.test.tsx.snap +37 -0
  731. package/src/FloatingButton/index.test.tsx +4 -4
  732. package/src/OptionButtonBase/__snapshots__/index.test.tsx.snap +37 -0
  733. package/src/OptionButtonBase/index.test.tsx +4 -4
  734. package/src/OptionButtonSteps/__snapshots__/index.test.tsx.snap +84 -0
  735. package/src/OptionButtonSteps/index.test.tsx +6 -6
  736. package/FloatingButton/index.test/index.js +0 -19
  737. package/FloatingButton/index.test/package.json +0 -6
  738. package/OptionButtonBase/index.test/index.js +0 -19
  739. package/OptionButtonBase/index.test/package.json +0 -6
  740. package/OptionButtonSteps/index.test/index.js +0 -32
  741. package/OptionButtonSteps/index.test/package.json +0 -6
  742. package/cjs/FloatingButton/index.test/index.js +0 -22
  743. package/cjs/OptionButtonBase/index.test/index.js +0 -22
  744. package/cjs/OptionButtonSteps/index.test/index.js +0 -35
  745. package/libs-ui/react-core/src/CodeBlock/index.d.ts +0 -10
@@ -29,5 +29,5 @@ export interface StackProps extends BaseProps<'div'> {
29
29
  /**
30
30
  * ...
31
31
  */
32
- export declare const Stack: React.ForwardRefExoticComponent<Pick<StackProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "direction" | "spacing" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden" | "justifyContent" | "alignItems" | "alignContent" | "flexWrap"> & React.RefAttributes<HTMLDivElement>>;
32
+ export declare const Stack: React.ForwardRefExoticComponent<Omit<StackProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
33
33
  export default Stack;
@@ -13,5 +13,5 @@ export interface StepNavProps extends BaseProps<'div'> {
13
13
  * StepNav contains the content or any other element for step-by-step implementation.
14
14
  * Use StepNav as wrapper component.
15
15
  */
16
- export declare const StepNav: React.ForwardRefExoticComponent<Pick<StepNavProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden" | "dense"> & React.RefAttributes<HTMLDivElement>>;
16
+ export declare const StepNav: React.ForwardRefExoticComponent<Omit<StepNavProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
17
17
  export default StepNav;
@@ -7,5 +7,5 @@ export interface StepNavAccordionProps extends BaseProps<'details'> {
7
7
  *
8
8
  *
9
9
  */
10
- export declare const StepNavAccordion: React.ForwardRefExoticComponent<Pick<StepNavAccordionProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "open" | "onToggle" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden"> & React.RefAttributes<HTMLDetailsElement>>;
10
+ export declare const StepNavAccordion: React.ForwardRefExoticComponent<Omit<StepNavAccordionProps, "ref"> & React.RefAttributes<HTMLDetailsElement>>;
11
11
  export default StepNavAccordion;
@@ -6,5 +6,5 @@ export interface StepNavAccordionContentProps extends BaseProps<'div'> {
6
6
  * StepNavAccordionContent should be inside the Accordion and it is the content of the section.
7
7
  * The content is only visible when the Accordion is 'open'.
8
8
  */
9
- export declare const StepNavAccordionContent: React.ForwardRefExoticComponent<Pick<StepNavAccordionContentProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden"> & React.RefAttributes<HTMLDivElement>>;
9
+ export declare const StepNavAccordionContent: React.ForwardRefExoticComponent<Omit<StepNavAccordionContentProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
10
10
  export default StepNavAccordionContent;
@@ -18,5 +18,5 @@ export interface StepNavAccordionHeadingTextProps extends BaseProps<'span'> {
18
18
  *
19
19
  *
20
20
  */
21
- export declare const StepNavAccordionHeadingText: React.ForwardRefExoticComponent<Pick<StepNavAccordionHeadingTextProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden" | "openLabel" | "closeLabel"> & React.RefAttributes<HTMLSpanElement>>;
21
+ export declare const StepNavAccordionHeadingText: React.ForwardRefExoticComponent<Omit<StepNavAccordionHeadingTextProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
22
22
  export default StepNavAccordionHeadingText;
@@ -7,5 +7,5 @@ export interface StepNavAccordionHeadingTitleProps extends BaseProps<'div'> {
7
7
  * StepNavAccordionHeadingTitle must include StepNavAccordionHeadingText,
8
8
  * StepNavAccordionOpened and StepNavAccordionClosed components
9
9
  */
10
- export declare const StepNavAccordionHeadingTitle: React.ForwardRefExoticComponent<Pick<StepNavAccordionHeadingTitleProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden"> & React.RefAttributes<HTMLDivElement>>;
10
+ export declare const StepNavAccordionHeadingTitle: React.ForwardRefExoticComponent<Omit<StepNavAccordionHeadingTitleProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
11
11
  export default StepNavAccordionHeadingTitle;
@@ -5,5 +5,5 @@ export interface StepNavAccordionSummaryProps extends BaseProps<'summary'> {
5
5
  /**
6
6
  * StepNavAccordionSummary is used as a wrapper component for StepNavAccordionSummaryHeading.
7
7
  */
8
- export declare const StepNavAccordionSummary: React.ForwardRefExoticComponent<Pick<StepNavAccordionSummaryProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden"> & React.RefAttributes<HTMLDivElement>>;
8
+ export declare const StepNavAccordionSummary: React.ForwardRefExoticComponent<Omit<StepNavAccordionSummaryProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
9
9
  export default StepNavAccordionSummary;
@@ -23,5 +23,5 @@ export interface StepNavAccordionSummaryHeadingProps extends BaseProps<'h2'> {
23
23
  * StepNavAccordionHeadingText, StepNavAccordionClosed and StepNavAccordionOpened components.
24
24
  *
25
25
  */
26
- export declare const StepNavAccordionSummaryHeading: React.ForwardRefExoticComponent<Pick<StepNavAccordionSummaryHeadingProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden" | "element"> & React.RefAttributes<HTMLHeadingElement>>;
26
+ export declare const StepNavAccordionSummaryHeading: React.ForwardRefExoticComponent<Omit<StepNavAccordionSummaryHeadingProps, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
27
27
  export default StepNavAccordionSummaryHeading;
@@ -15,5 +15,5 @@ export interface StepNavCircleNumberProps extends BaseProps<'span'> {
15
15
  * StepNavCircleNumber component is used for displaying the number of each step.
16
16
  * Use StepNavCircleNumber inside StepNavAccordionSummaryHeading.
17
17
  */
18
- export declare const StepNavCircleNumber: React.ForwardRefExoticComponent<Pick<StepNavCircleNumberProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden" | "border"> & React.RefAttributes<HTMLSpanElement>>;
18
+ export declare const StepNavCircleNumber: React.ForwardRefExoticComponent<Omit<StepNavCircleNumberProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
19
19
  export default StepNavCircleNumber;
@@ -6,5 +6,5 @@ export interface StepNavControlsProps extends BaseProps<'div'> {
6
6
  * StepNavControls contains the StepByStepButton.
7
7
  * Use StepNavControls to the top of the step-by-step implementation .
8
8
  */
9
- export declare const StepNavControls: React.ForwardRefExoticComponent<Pick<StepNavControlsProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden"> & React.RefAttributes<HTMLDivElement>>;
9
+ export declare const StepNavControls: React.ForwardRefExoticComponent<Omit<StepNavControlsProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
10
10
  export default StepNavControls;
@@ -6,5 +6,5 @@ export interface StepNavListProps extends BaseProps<'ol'> {
6
6
  * List component is used for listing step buy step items.
7
7
  * This component must contain StepNavListItem component.
8
8
  */
9
- export declare const StepNavList: React.ForwardRefExoticComponent<Pick<StepNavListProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "type" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "reversed" | "start" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden"> & React.RefAttributes<HTMLOListElement>>;
9
+ export declare const StepNavList: React.ForwardRefExoticComponent<Omit<StepNavListProps, "ref"> & React.RefAttributes<HTMLOListElement>>;
10
10
  export default StepNavList;
@@ -5,5 +5,5 @@ export interface StepNavListItemProps extends BaseProps<'li'> {
5
5
  /**
6
6
  * StepNavListItem must be inside StepByStepList compoenent.
7
7
  */
8
- export declare const StepNavListItem: React.ForwardRefExoticComponent<Pick<StepNavListItemProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "value" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden"> & React.RefAttributes<HTMLLIElement>>;
8
+ export declare const StepNavListItem: React.ForwardRefExoticComponent<Omit<StepNavListItemProps, "ref"> & React.RefAttributes<HTMLLIElement>>;
9
9
  export default StepNavListItem;
@@ -24,5 +24,5 @@ export interface SummaryListProps extends BaseProps<'dl'> {
24
24
  * SummaryList used as a table with summary informations.
25
25
  * It must contain a list of SummaryListItem components.
26
26
  */
27
- export declare const SummaryList: React.ForwardRefExoticComponent<Pick<SummaryListProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden" | "border" | "noLastBorder"> & React.RefAttributes<HTMLDListElement>>;
27
+ export declare const SummaryList: React.ForwardRefExoticComponent<Omit<SummaryListProps, "ref"> & React.RefAttributes<HTMLDListElement>>;
28
28
  export default SummaryList;
@@ -15,5 +15,5 @@ export interface SummaryListItemProps extends BaseProps<'div'> {
15
15
  * SummaryListItem must be inside SummaryList component. Each SummaryListItem is a row in the SummaryList table.
16
16
  * This component must contain SummaryListItemKey, SummaryListItemValue and SummaryListItemAction, in that order.
17
17
  */
18
- export declare const SummaryListItem: React.ForwardRefExoticComponent<Pick<SummaryListItemProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden" | "border"> & React.RefAttributes<HTMLDivElement>>;
18
+ export declare const SummaryListItem: React.ForwardRefExoticComponent<Omit<SummaryListItemProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
19
19
  export default SummaryListItem;
@@ -6,5 +6,5 @@ export interface SummaryListItemActionProps extends BaseProps<'dd'> {
6
6
  * SummaryListItemAction is used within the SummaryListItem component.
7
7
  * In this column we place the action that the user can do, based on the information on the rest of the row.
8
8
  */
9
- export declare const SummaryListItemAction: React.ForwardRefExoticComponent<Pick<SummaryListItemActionProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden"> & React.RefAttributes<HTMLElement>>;
9
+ export declare const SummaryListItemAction: React.ForwardRefExoticComponent<Omit<SummaryListItemActionProps, "ref"> & React.RefAttributes<HTMLElement>>;
10
10
  export default SummaryListItemAction;
@@ -6,5 +6,5 @@ export interface SummaryListItemKeyProps extends BaseProps<'dt'> {
6
6
  * SummaryListItemKey is used within the SummaryListItem component.
7
7
  * In this column we place the key information for the row (ex. "Name", "Address", etc).
8
8
  */
9
- export declare const SummaryListItemKey: React.ForwardRefExoticComponent<Pick<SummaryListItemKeyProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden"> & React.RefAttributes<HTMLElement>>;
9
+ export declare const SummaryListItemKey: React.ForwardRefExoticComponent<Omit<SummaryListItemKeyProps, "ref"> & React.RefAttributes<HTMLElement>>;
10
10
  export default SummaryListItemKey;
@@ -5,5 +5,5 @@ export interface SummaryListItemValueProps extends BaseProps<'dd'> {
5
5
  /**
6
6
  * Details for the SummaryListItemValue.
7
7
  */
8
- export declare const SummaryListItemValue: React.ForwardRefExoticComponent<Pick<SummaryListItemValueProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden"> & React.RefAttributes<HTMLElement>>;
8
+ export declare const SummaryListItemValue: React.ForwardRefExoticComponent<Omit<SummaryListItemValueProps, "ref"> & React.RefAttributes<HTMLElement>>;
9
9
  export default SummaryListItemValue;
@@ -33,5 +33,5 @@ export interface SvgIconProps extends BaseProps<'svg'> {
33
33
  * Use SvgIcon as global svg component.
34
34
  * SvgIcon can be used inside other svg components as children such as CheckIcon, CaretIcon etc.
35
35
  */
36
- export declare const SvgIcon: React.ForwardRefExoticComponent<Pick<SvgIconProps, "string" | "p" | "style" | "clipPath" | "filter" | "mask" | "path" | "as" | "className" | "color" | "height" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "target" | "type" | "width" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "hidden" | "size" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden"> & React.RefAttributes<SVGSVGElement>>;
36
+ export declare const SvgIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
37
37
  export default SvgIcon;
@@ -49,5 +49,5 @@ export interface TableProps extends BaseProps<'table'> {
49
49
  /**
50
50
  * Table component is used to wrap the sub components of a table
51
51
  */
52
- export declare const Table: React.ForwardRefExoticComponent<Pick<TableProps, "p" | "slot" | "style" | "summary" | "title" | "as" | "className" | "color" | "id" | "lang" | "width" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "cellPadding" | "cellSpacing" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden" | "variant" | "dense" | "headerVariant" | "verticalBorders" | "stacked"> & React.RefAttributes<HTMLTableElement>>;
52
+ export declare const Table: React.ForwardRefExoticComponent<Omit<TableProps, "ref"> & React.RefAttributes<HTMLTableElement>>;
53
53
  export default Table;
@@ -14,5 +14,5 @@ export interface TableBodyProps extends BaseProps<'tbody'> {
14
14
  /**
15
15
  * Use TableBody inside the Table component to provide for the table data.
16
16
  */
17
- export declare const TableBody: React.ForwardRefExoticComponent<Pick<TableBodyProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden" | "verticalAlign"> & React.RefAttributes<HTMLTableSectionElement>>;
17
+ export declare const TableBody: React.ForwardRefExoticComponent<Omit<TableBodyProps, "ref"> & React.RefAttributes<HTMLTableSectionElement>>;
18
18
  export default TableBody;
@@ -16,5 +16,5 @@ export interface TableCaptionProps extends BaseProps<'caption'> {
16
16
  /**
17
17
  * Table caption is used inside the Table component to provide a caption at the top of the table.
18
18
  */
19
- export declare const TableCaption: React.ForwardRefExoticComponent<Pick<TableCaptionProps, "p" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "printHidden" | "printVisible" | "xsUpHidden" | "smUpHidden" | "mdUpHidden" | "lgUpHidden" | "xlUpHidden" | "xsHidden" | "smHidden" | "mdHidden" | "lgHidden" | "xlHidden"> & React.RefAttributes<HTMLElement>>;
19
+ export declare const TableCaption: React.ForwardRefExoticComponent<Omit<TableCaptionProps, "ref"> & React.RefAttributes<HTMLElement>>;
20
20
  export default TableCaption;