@digigov/ui 0.8.3 → 0.9.2

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 (351) hide show
  1. package/CHANGELOG.md +34 -1
  2. package/app/App.js +6 -8
  3. package/app/Header/HeaderLogo.js +19 -39
  4. package/app/Header/HeaderSection.js +6 -43
  5. package/app/Header/HeaderTitle.js +14 -91
  6. package/app/Header/index.js +20 -67
  7. package/app/Header/index.spec.js +0 -1
  8. package/app/PageTitle.js +45 -81
  9. package/core/Accordion/index.js +103 -57
  10. package/core/Blockquote/index.js +17 -47
  11. package/core/Button/BackButton.js +20 -42
  12. package/core/Button/ButtonLink.js +28 -0
  13. package/core/Button/CallToAction.js +21 -12
  14. package/core/Button/Icon.js +5 -47
  15. package/core/Button/index.js +49 -99
  16. package/core/Details/index.js +22 -70
  17. package/core/Divider/index.js +9 -9
  18. package/core/ErrorSummary/index.js +8 -28
  19. package/core/List/List.js +8 -34
  20. package/core/List/ListItem.js +8 -38
  21. package/core/List/ListItemTitle.js +1 -3
  22. package/core/NavList/NavListItem.js +2 -2
  23. package/core/NotificationBanner/index.js +49 -48
  24. package/core/NotificationBanner/index.spec.js +3 -1
  25. package/core/ServiceBadge/index.js +17 -28
  26. package/core/SummaryList/index.js +57 -124
  27. package/core/Tabs/index.js +65 -98
  28. package/core/WarningText/index.js +8 -41
  29. package/es/app/App.js +6 -8
  30. package/es/app/Header/HeaderLogo.js +15 -30
  31. package/es/app/Header/HeaderSection.js +5 -36
  32. package/es/app/Header/HeaderTitle.js +13 -78
  33. package/es/app/Header/index.js +6 -56
  34. package/es/app/Header/index.spec.js +0 -1
  35. package/es/app/PageTitle.js +46 -74
  36. package/es/core/Accordion/index.js +64 -52
  37. package/es/core/Blockquote/index.js +13 -39
  38. package/es/core/Button/BackButton.js +18 -36
  39. package/es/core/Button/ButtonLink.js +16 -0
  40. package/es/core/Button/CallToAction.js +19 -9
  41. package/es/core/Button/Icon.js +5 -35
  42. package/es/core/Button/index.js +26 -87
  43. package/es/core/Details/index.js +5 -62
  44. package/es/core/Divider/index.js +7 -6
  45. package/es/core/ErrorSummary/index.js +2 -21
  46. package/es/core/List/List.js +2 -26
  47. package/es/core/List/ListItem.js +2 -30
  48. package/es/core/List/ListItemTitle.js +1 -3
  49. package/es/core/NavList/NavListItem.js +1 -1
  50. package/es/core/NotificationBanner/index.js +27 -45
  51. package/es/core/NotificationBanner/index.spec.js +3 -1
  52. package/es/core/ServiceBadge/index.js +15 -25
  53. package/es/core/SummaryList/index.js +7 -119
  54. package/es/core/Tabs/index.js +33 -93
  55. package/es/core/WarningText/index.js +2 -33
  56. package/es/govgr/Footer/Copyright.js +14 -36
  57. package/es/govgr/Footer/HellenicRepublicLogo.js +2 -30
  58. package/es/govgr/Footer/LicenseCCSA.js +2 -17
  59. package/es/govgr/Footer/index.js +23 -69
  60. package/es/govgr/Logo/index.js +2 -14
  61. package/es/hooks/useTogglableSections.js +96 -0
  62. package/es/layouts/Basic/Bottom/index.js +3 -13
  63. package/es/layouts/Basic/Content/index.js +14 -51
  64. package/es/layouts/Basic/Content/index.mdx +1 -1
  65. package/es/layouts/Basic/Main/index.js +3 -21
  66. package/es/layouts/Basic/Masthead/index.js +4 -47
  67. package/es/layouts/Basic/Masthead/index.mdx +1 -1
  68. package/es/layouts/Basic/Side/index.js +6 -28
  69. package/es/layouts/Basic/Top/index.js +7 -36
  70. package/es/layouts/Basic/index.js +3 -49
  71. package/es/themes/grnet.js +1 -1
  72. package/es/typography/Caption.js +5 -21
  73. package/es/typography/NormalText.js +2 -10
  74. package/es/typography/Paragraph.js +1 -29
  75. package/es/typography/Title.js +40 -87
  76. package/es/utils/withDeprecation.js +102 -0
  77. package/esm/app/App.js +6 -8
  78. package/esm/app/Header/HeaderLogo.js +15 -30
  79. package/esm/app/Header/HeaderSection.js +5 -36
  80. package/esm/app/Header/HeaderTitle.js +13 -78
  81. package/esm/app/Header/index.js +6 -56
  82. package/esm/app/Header/index.spec.js +0 -1
  83. package/esm/app/PageTitle.js +46 -74
  84. package/esm/core/Accordion/index.js +64 -52
  85. package/esm/core/Blockquote/index.js +13 -39
  86. package/esm/core/Button/BackButton.js +18 -36
  87. package/esm/core/Button/ButtonLink.js +16 -0
  88. package/esm/core/Button/CallToAction.js +19 -9
  89. package/esm/core/Button/Icon.js +5 -35
  90. package/esm/core/Button/index.js +26 -87
  91. package/esm/core/Details/index.js +5 -62
  92. package/esm/core/Divider/index.js +7 -6
  93. package/esm/core/ErrorSummary/index.js +2 -21
  94. package/esm/core/List/List.js +2 -26
  95. package/esm/core/List/ListItem.js +2 -30
  96. package/esm/core/List/ListItemTitle.js +1 -3
  97. package/esm/core/NavList/NavListItem.js +1 -1
  98. package/esm/core/NotificationBanner/index.js +27 -45
  99. package/esm/core/NotificationBanner/index.spec.js +3 -1
  100. package/esm/core/ServiceBadge/index.js +15 -25
  101. package/esm/core/SummaryList/index.js +7 -119
  102. package/esm/core/Tabs/index.js +33 -93
  103. package/esm/core/WarningText/index.js +2 -33
  104. package/esm/govgr/Footer/Copyright.js +14 -36
  105. package/esm/govgr/Footer/HellenicRepublicLogo.js +2 -30
  106. package/esm/govgr/Footer/LicenseCCSA.js +2 -17
  107. package/esm/govgr/Footer/index.js +23 -69
  108. package/esm/govgr/Logo/index.js +2 -14
  109. package/esm/hooks/useTogglableSections.js +96 -0
  110. package/esm/index.js +1 -1
  111. package/esm/layouts/Basic/Bottom/index.js +3 -13
  112. package/esm/layouts/Basic/Content/index.js +14 -51
  113. package/esm/layouts/Basic/Content/index.mdx +1 -1
  114. package/esm/layouts/Basic/Main/index.js +3 -21
  115. package/esm/layouts/Basic/Masthead/index.js +4 -47
  116. package/esm/layouts/Basic/Masthead/index.mdx +1 -1
  117. package/esm/layouts/Basic/Side/index.js +6 -28
  118. package/esm/layouts/Basic/Top/index.js +7 -36
  119. package/esm/layouts/Basic/index.js +3 -49
  120. package/esm/themes/grnet.js +1 -1
  121. package/esm/typography/Caption.js +5 -21
  122. package/esm/typography/NormalText.js +2 -10
  123. package/esm/typography/Paragraph.js +1 -29
  124. package/esm/typography/Title.js +40 -87
  125. package/esm/utils/withDeprecation.js +102 -0
  126. package/govgr/Footer/Copyright.js +15 -42
  127. package/govgr/Footer/HellenicRepublicLogo.js +8 -39
  128. package/govgr/Footer/LicenseCCSA.js +2 -19
  129. package/govgr/Footer/index.js +23 -72
  130. package/govgr/Logo/index.js +9 -28
  131. package/hooks/useTogglableSections.js +108 -0
  132. package/layouts/Basic/Bottom/index.js +10 -19
  133. package/layouts/Basic/Content/index.js +17 -68
  134. package/layouts/Basic/Content/index.mdx +1 -1
  135. package/layouts/Basic/Main/index.js +10 -23
  136. package/layouts/Basic/Masthead/index.js +17 -54
  137. package/layouts/Basic/Masthead/index.mdx +1 -1
  138. package/layouts/Basic/Side/index.js +9 -35
  139. package/layouts/Basic/Top/index.js +7 -40
  140. package/layouts/Basic/index.js +4 -57
  141. package/{api → libs/ui/src/api}/APIErrors.d.ts +0 -0
  142. package/{api → libs/ui/src/api}/APIProvider.d.ts +0 -0
  143. package/{api → libs/ui/src/api}/fetchAPI.d.ts +0 -0
  144. package/{api → libs/ui/src/api}/index.d.ts +0 -0
  145. package/{api → libs/ui/src/api}/index.spec.d.ts +0 -0
  146. package/{api → libs/ui/src/api}/useResource.d.ts +0 -0
  147. package/{api → libs/ui/src/api}/useResourceAction.d.ts +0 -0
  148. package/{api → libs/ui/src/api}/useResourceQuery.d.ts +0 -0
  149. package/{api → libs/ui/src/api}/utils.d.ts +0 -0
  150. package/{app → libs/ui/src/app}/App.d.ts +0 -0
  151. package/libs/ui/src/app/Header/HeaderLogo.d.ts +3 -0
  152. package/libs/ui/src/app/Header/HeaderSection.d.ts +5 -0
  153. package/libs/ui/src/app/Header/HeaderTitle.d.ts +5 -0
  154. package/libs/ui/src/app/Header/index.d.ts +9 -0
  155. package/{app → libs/ui/src/app}/Header/index.spec.d.ts +0 -0
  156. package/{app → libs/ui/src/app}/NotFound/index.d.ts +0 -0
  157. package/{app → libs/ui/src/app}/OutdatedBrowserBanner.d.ts +0 -0
  158. package/libs/ui/src/app/PageTitle.d.ts +10 -0
  159. package/{app → libs/ui/src/app}/QrCodeScanner/index.d.ts +0 -0
  160. package/{app → libs/ui/src/app}/QrCodeScanner/index.spec.d.ts +0 -0
  161. package/{app → libs/ui/src/app}/i18n.d.ts +0 -0
  162. package/{app → libs/ui/src/app}/index.d.ts +0 -0
  163. package/libs/ui/src/core/Accordion/index.d.ts +21 -0
  164. package/{core → libs/ui/src/core}/Accordion/index.spec.d.ts +0 -0
  165. package/libs/ui/src/core/Blockquote/index.d.ts +3 -0
  166. package/{core → libs/ui/src/core}/Blockquote/index.spec.d.ts +0 -0
  167. package/libs/ui/src/core/Button/BackButton.d.ts +3 -0
  168. package/libs/ui/src/core/Button/ButtonLink.d.ts +4 -0
  169. package/libs/ui/src/core/Button/CallToAction.d.ts +7 -0
  170. package/libs/ui/src/core/Button/Icon.d.ts +2 -0
  171. package/libs/ui/src/core/Button/index.d.ts +14 -0
  172. package/{core → libs/ui/src/core}/Button/index.spec.d.ts +0 -0
  173. package/libs/ui/src/core/Details/index.d.ts +5 -0
  174. package/{core → libs/ui/src/core}/Details/index.spec.d.ts +0 -0
  175. package/libs/ui/src/core/Divider/index.d.ts +5 -0
  176. package/libs/ui/src/core/ErrorSummary/index.d.ts +3 -0
  177. package/{core → libs/ui/src/core}/ErrorSummary/index.spec.d.ts +0 -0
  178. package/{core → libs/ui/src/core}/Link/index.d.ts +0 -0
  179. package/{core → libs/ui/src/core}/Link/index.spec.d.ts +0 -0
  180. package/libs/ui/src/core/List/List.d.ts +3 -0
  181. package/libs/ui/src/core/List/ListItem.d.ts +3 -0
  182. package/{core → libs/ui/src/core}/List/ListItemContent.d.ts +0 -0
  183. package/{core → libs/ui/src/core}/List/ListItemIcon.d.ts +0 -0
  184. package/{core → libs/ui/src/core}/List/ListItemText.d.ts +1 -0
  185. package/{core → libs/ui/src/core}/List/ListItemTitle.d.ts +0 -0
  186. package/{core → libs/ui/src/core}/List/index.d.ts +0 -0
  187. package/{core → libs/ui/src/core}/List/index.spec.d.ts +0 -0
  188. package/{core → libs/ui/src/core}/NavList/NavList.d.ts +1 -1
  189. package/{core → libs/ui/src/core}/NavList/NavListContext.d.ts +0 -0
  190. package/{core → libs/ui/src/core}/NavList/NavListItem.d.ts +0 -0
  191. package/{core → libs/ui/src/core}/NavList/NavListItemBase.d.ts +1 -1
  192. package/{core → libs/ui/src/core}/NavList/NavListSubMenu.d.ts +0 -0
  193. package/{core → libs/ui/src/core}/NavList/index.d.ts +0 -0
  194. package/{core → libs/ui/src/core}/NavList/index.spec.d.ts +0 -0
  195. package/libs/ui/src/core/NotificationBanner/index.d.ts +17 -0
  196. package/{core → libs/ui/src/core}/NotificationBanner/index.spec.d.ts +0 -0
  197. package/libs/ui/src/core/ServiceBadge/index.d.ts +8 -0
  198. package/libs/ui/src/core/SummaryList/index.d.ts +7 -0
  199. package/{core → libs/ui/src/core}/SummaryList/index.spec.d.ts +0 -0
  200. package/libs/ui/src/core/Tabs/index.d.ts +16 -0
  201. package/libs/ui/src/core/WarningText/index.d.ts +3 -0
  202. package/{core → libs/ui/src/core}/WarningText/index.spec.d.ts +0 -0
  203. package/{core → libs/ui/src/core}/index.d.ts +0 -0
  204. package/{govgr → libs/ui/src/govgr}/Footer/Copyright.d.ts +1 -1
  205. package/libs/ui/src/govgr/Footer/HellenicRepublicLogo.d.ts +3 -0
  206. package/{govgr → libs/ui/src/govgr}/Footer/LicenseCCSA.d.ts +0 -0
  207. package/{govgr → libs/ui/src/govgr}/Footer/index.d.ts +3 -3
  208. package/{govgr → libs/ui/src/govgr}/Footer/logo.d.ts +0 -0
  209. package/libs/ui/src/govgr/Footer/logos/logo-el.d.ts +2 -0
  210. package/libs/ui/src/govgr/Footer/logos/logo-en.d.ts +2 -0
  211. package/libs/ui/src/govgr/Logo/index.d.ts +3 -0
  212. package/{govgr → libs/ui/src/govgr}/Logo/logo.d.ts +0 -0
  213. package/{govgr → libs/ui/src/govgr}/index.d.ts +0 -0
  214. package/{hooks → libs/ui/src/hooks}/useDebounce.d.ts +0 -0
  215. package/{hooks → libs/ui/src/hooks}/useLatest.d.ts +0 -0
  216. package/{hooks → libs/ui/src/hooks}/useOutdatedBrowserCheck.d.ts +0 -0
  217. package/{hooks → libs/ui/src/hooks}/useSearch.d.ts +0 -0
  218. package/libs/ui/src/hooks/useTogglableSections.d.ts +18 -0
  219. package/{index.d.ts → libs/ui/src/index.d.ts} +0 -0
  220. package/libs/ui/src/layouts/Basic/Bottom/index.d.ts +3 -0
  221. package/libs/ui/src/layouts/Basic/Content/index.d.ts +5 -0
  222. package/libs/ui/src/layouts/Basic/Main/index.d.ts +3 -0
  223. package/libs/ui/src/layouts/Basic/Masthead/index.d.ts +4 -0
  224. package/libs/ui/src/layouts/Basic/Side/index.d.ts +3 -0
  225. package/libs/ui/src/layouts/Basic/Top/index.d.ts +3 -0
  226. package/libs/ui/src/layouts/Basic/index.d.ts +8 -0
  227. package/{layouts → libs/ui/src/layouts}/Basic/index.spec.d.ts +0 -0
  228. package/{layouts → libs/ui/src/layouts}/index.d.ts +0 -0
  229. package/{locales → libs/ui/src/locales}/el.d.ts +0 -0
  230. package/{locales → libs/ui/src/locales}/en.d.ts +0 -0
  231. package/{router → libs/ui/src/router}/index.d.ts +0 -0
  232. package/{test-utils → libs/ui/src/test-utils}/delay.d.ts +0 -0
  233. package/{test-utils → libs/ui/src/test-utils}/mountWithTheme.d.ts +0 -0
  234. package/{themes → libs/ui/src/themes}/govgr.d.ts +0 -0
  235. package/{themes → libs/ui/src/themes}/grnet.d.ts +0 -0
  236. package/{themes → libs/ui/src/themes}/index.d.ts +0 -0
  237. package/libs/ui/src/typography/Caption.d.ts +7 -0
  238. package/libs/ui/src/typography/NormalText.d.ts +5 -0
  239. package/libs/ui/src/typography/Paragraph.d.ts +6 -0
  240. package/libs/ui/src/typography/Title.d.ts +9 -0
  241. package/{typography → libs/ui/src/typography}/index.d.ts +0 -0
  242. package/{utils → libs/ui/src/utils}/evaluateBrowserVersion.d.ts +0 -0
  243. package/libs/ui/src/utils/withDeprecation.d.ts +16 -0
  244. package/libs-ui/react-core/src/Accordion/index.d.ts +10 -0
  245. package/libs-ui/react-core/src/AccordionControls/index.d.ts +9 -0
  246. package/libs-ui/react-core/src/AccordionSection/index.d.ts +15 -0
  247. package/libs-ui/react-core/src/AccordionSectionContent/index.d.ts +10 -0
  248. package/libs-ui/react-core/src/AccordionSectionHeader/index.d.ts +9 -0
  249. package/libs-ui/react-core/src/Aside/index.d.ts +10 -0
  250. package/libs-ui/react-core/src/BackLink/index.d.ts +13 -0
  251. package/libs-ui/react-core/src/Blockquote/index.d.ts +9 -0
  252. package/libs-ui/react-core/src/Bottom/index.d.ts +9 -0
  253. package/libs-ui/react-core/src/Button/index.d.ts +21 -0
  254. package/libs-ui/react-core/src/ButtonLink/index.d.ts +17 -0
  255. package/libs-ui/react-core/src/CallToAction/index.d.ts +10 -0
  256. package/libs-ui/react-core/src/Container/index.d.ts +9 -0
  257. package/libs-ui/react-core/src/Copyright/index.d.ts +10 -0
  258. package/libs-ui/react-core/src/Details/index.d.ts +10 -0
  259. package/libs-ui/react-core/src/DetailsContent/index.d.ts +10 -0
  260. package/libs-ui/react-core/src/DetailsSummary/index.d.ts +9 -0
  261. package/libs-ui/react-core/src/ErrorSummary/index.d.ts +9 -0
  262. package/libs-ui/react-core/src/Footer/index.d.ts +9 -0
  263. package/libs-ui/react-core/src/FooterContainer/index.d.ts +9 -0
  264. package/libs-ui/react-core/src/FooterMeta/index.d.ts +11 -0
  265. package/libs-ui/react-core/src/FooterMetaItem/index.d.ts +14 -0
  266. package/libs-ui/react-core/src/GovGRLogo/index.d.ts +9 -0
  267. package/libs-ui/react-core/src/Grid/index.d.ts +20 -0
  268. package/libs-ui/react-core/src/Header/index.d.ts +10 -0
  269. package/libs-ui/react-core/src/HeaderLogo/index.d.ts +17 -0
  270. package/libs-ui/react-core/src/HeaderSection/index.d.ts +9 -0
  271. package/libs-ui/react-core/src/HeaderSubtitle/index.d.ts +9 -0
  272. package/libs-ui/react-core/src/HeaderTitle/index.d.ts +13 -0
  273. package/libs-ui/react-core/src/Heading/index.d.ts +21 -0
  274. package/libs-ui/react-core/src/HeadingCaption/index.d.ts +15 -0
  275. package/libs-ui/react-core/src/HellenicRepublicLogo/index.d.ts +20 -0
  276. package/{govgr/Footer/logos → libs-ui/react-core/src/HellenicRepublicLogo}/logo-el.d.ts +0 -0
  277. package/{govgr/Footer/logos → libs-ui/react-core/src/HellenicRepublicLogo}/logo-en.d.ts +0 -0
  278. package/libs-ui/react-core/src/Layout/index.d.ts +10 -0
  279. package/libs-ui/react-core/src/List/index.d.ts +18 -0
  280. package/libs-ui/react-core/src/ListItem/index.d.ts +9 -0
  281. package/libs-ui/react-core/src/Main/index.d.ts +9 -0
  282. package/libs-ui/react-core/src/Masthead/index.d.ts +9 -0
  283. package/libs-ui/react-core/src/MastheadBody/index.d.ts +9 -0
  284. package/libs-ui/react-core/src/NormalText/index.d.ts +28 -0
  285. package/libs-ui/react-core/src/NotificationBanner/index.d.ts +17 -0
  286. package/libs-ui/react-core/src/NotificationBannerContent/index.d.ts +12 -0
  287. package/libs-ui/react-core/src/NotificationBannerHeader/index.d.ts +11 -0
  288. package/libs-ui/react-core/src/NotificationBannerHeading/index.d.ts +11 -0
  289. package/libs-ui/react-core/src/Paragraph/index.d.ts +26 -0
  290. package/libs-ui/react-core/src/PhaseBanner/index.d.ts +15 -0
  291. package/libs-ui/react-core/src/PhaseBannerTag/index.d.ts +9 -0
  292. package/libs-ui/react-core/src/SectionBreak/index.d.ts +18 -0
  293. package/libs-ui/react-core/src/SummaryList/index.d.ts +10 -0
  294. package/libs-ui/react-core/src/SummaryListItem/index.d.ts +10 -0
  295. package/libs-ui/react-core/src/SummaryListItemAction/index.d.ts +10 -0
  296. package/libs-ui/react-core/src/SummaryListItemKey/index.d.ts +10 -0
  297. package/libs-ui/react-core/src/SummaryListItemValue/index.d.ts +9 -0
  298. package/libs-ui/react-core/src/Tabs/index.d.ts +10 -0
  299. package/libs-ui/react-core/src/TabsHeading/index.d.ts +15 -0
  300. package/libs-ui/react-core/src/TabsList/index.d.ts +10 -0
  301. package/libs-ui/react-core/src/TabsListItem/index.d.ts +20 -0
  302. package/libs-ui/react-core/src/TabsPanel/index.d.ts +16 -0
  303. package/libs-ui/react-core/src/Top/index.d.ts +9 -0
  304. package/libs-ui/react-core/src/WarningText/index.d.ts +11 -0
  305. package/package.json +3 -2
  306. package/themes/grnet.js +1 -1
  307. package/typography/Caption.js +5 -25
  308. package/typography/NormalText.js +9 -16
  309. package/typography/Paragraph.js +3 -39
  310. package/typography/Title.js +42 -88
  311. package/utils/withDeprecation.js +114 -0
  312. package/app/Header/HeaderLogo.d.ts +0 -12
  313. package/app/Header/HeaderSection.d.ts +0 -6
  314. package/app/Header/HeaderTitle.d.ts +0 -26
  315. package/app/Header/index.d.ts +0 -20
  316. package/app/PageTitle.d.ts +0 -21
  317. package/core/Accordion/index.d.ts +0 -23
  318. package/core/Blockquote/index.d.ts +0 -9
  319. package/core/Button/BackButton.d.ts +0 -4
  320. package/core/Button/CallToAction.d.ts +0 -8
  321. package/core/Button/Icon.d.ts +0 -9
  322. package/core/Button/__snapshots__/index.spec.tsx.snap +0 -145
  323. package/core/Button/index.d.js +0 -1
  324. package/core/Button/index.d.ts +0 -26
  325. package/core/Details/index.d.ts +0 -17
  326. package/core/Divider/index.d.ts +0 -6
  327. package/core/ErrorSummary/index.d.ts +0 -8
  328. package/core/List/List.d.ts +0 -10
  329. package/core/List/ListItem.d.ts +0 -10
  330. package/core/NotificationBanner/index.d.ts +0 -7
  331. package/core/ServiceBadge/index.d.ts +0 -7
  332. package/core/SummaryList/index.d.ts +0 -29
  333. package/core/Tabs/index.d.ts +0 -21
  334. package/core/WarningText/index.d.ts +0 -8
  335. package/es/core/Button/__snapshots__/index.spec.tsx.snap +0 -145
  336. package/es/core/Button/index.d.js +0 -0
  337. package/esm/core/Button/__snapshots__/index.spec.tsx.snap +0 -145
  338. package/esm/core/Button/index.d.js +0 -0
  339. package/govgr/Footer/HellenicRepublicLogo.d.ts +0 -6
  340. package/govgr/Logo/index.d.ts +0 -3
  341. package/layouts/Basic/Bottom/index.d.ts +0 -5
  342. package/layouts/Basic/Content/index.d.ts +0 -9
  343. package/layouts/Basic/Main/index.d.ts +0 -8
  344. package/layouts/Basic/Masthead/index.d.ts +0 -7
  345. package/layouts/Basic/Side/index.d.ts +0 -14
  346. package/layouts/Basic/Top/index.d.ts +0 -13
  347. package/layouts/Basic/index.d.ts +0 -31
  348. package/typography/Caption.d.ts +0 -10
  349. package/typography/NormalText.d.ts +0 -6
  350. package/typography/Paragraph.d.ts +0 -7
  351. package/typography/Title.d.ts +0 -16
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { HeaderSectionProps as CoreHeaderSectionProps } from '@digigov/react-core/HeaderSection';
3
+ export declare type HeaderSectionProps = CoreHeaderSectionProps;
4
+ export declare const HeaderSection: import("react").ForwardRefExoticComponent<Pick<CoreHeaderSectionProps, "color" | "className" | "children" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "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" | "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"> & import("react").RefAttributes<HTMLDivElement>>;
5
+ export default HeaderSection;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { HeaderTitleProps as CoreHeaderTitleProps } from '@digigov/react-core/HeaderTitle';
3
+ export declare type HeaderTitleProps = CoreHeaderTitleProps;
4
+ export declare const HeaderTitle: import("react").ForwardRefExoticComponent<Pick<CoreHeaderTitleProps, "color" | "className" | "children" | "key" | "type" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "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" | "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" | "href" | "download" | "hrefLang" | "media" | "ping" | "rel" | "target" | "referrerPolicy"> & import("react").RefAttributes<HTMLAnchorElement>>;
5
+ export default HeaderTitle;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import { HeaderProps as CoreHeaderProps } from '@digigov/react-core/Header';
3
+ export declare type HeaderProps = CoreHeaderProps;
4
+ export declare const Header: import("react").ForwardRefExoticComponent<Pick<CoreHeaderProps, "color" | "className" | "children" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "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" | "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"> & import("react").RefAttributes<HTMLElement>>;
5
+ export * from '@digigov/ui/app/Header/HeaderTitle';
6
+ export * from '@digigov/react-core/HeaderSubtitle';
7
+ export * from '@digigov/ui/app/Header/HeaderLogo';
8
+ export * from '@digigov/ui/app/Header/HeaderSection';
9
+ export default Header;
File without changes
File without changes
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { CaptionProps } from '@digigov/ui/typography/Caption';
3
+ import { TitleProps } from '@digigov/ui/typography/Title';
4
+ export declare const PageTitle: React.FC<{}>;
5
+ export default PageTitle;
6
+ export declare const PageTitleSection: React.FC<{}>;
7
+ export declare const PageTitleCaption: React.FC<CaptionProps>;
8
+ export interface PageTitleHeadingProps extends TitleProps {
9
+ }
10
+ export declare const PageTitleHeading: React.FC<TitleProps>;
File without changes
File without changes
@@ -0,0 +1,21 @@
1
+ import Accordion from '@digigov/react-core/Accordion';
2
+ import AccordionSection from '@digigov/react-core/AccordionSection';
3
+ import AccordionSectionContent from '@digigov/react-core/AccordionSectionContent';
4
+ import AccordionSectionHeader from '@digigov/react-core/AccordionSectionHeader';
5
+ import AccordionControls from '@digigov/react-core/AccordionControls';
6
+ import { UseTogglableSectionsReturn } from '@digigov/ui/hooks/useTogglableSections';
7
+ import React from 'react';
8
+ export declare const AccordionItemDetails: React.ForwardRefExoticComponent<Pick<import("@digigov/react-core/AccordionSectionContent").AccordionSectionContentProps, "color" | "className" | "children" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "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" | "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"> & React.RefAttributes<HTMLDivElement>>;
9
+ export declare const AccordionItemSummary: React.ForwardRefExoticComponent<Pick<import("@digigov/react-core/AccordionSectionHeader").AccordionSectionHeaderProps, "color" | "className" | "children" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "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" | "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"> & React.RefAttributes<HTMLDivElement>>;
10
+ export declare const AccordionItem: React.MemoExoticComponent<React.ForwardRefExoticComponent<Pick<import("@digigov/react-core/AccordionSection").AccordionSectionProps, "color" | "className" | "children" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "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" | "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" | "open"> & React.RefAttributes<HTMLDivElement>>>;
11
+ export interface UseAccordionProps {
12
+ singleOpen?: boolean;
13
+ }
14
+ export interface UseAccordionReturn extends UseTogglableSectionsReturn {
15
+ isOpenAll: boolean;
16
+ openAll: () => void;
17
+ closeAll: () => void;
18
+ }
19
+ declare const useAccordion: (props: UseAccordionProps) => UseAccordionReturn;
20
+ export { Accordion, AccordionControls, AccordionSection, AccordionSectionContent, AccordionSectionHeader, useAccordion, };
21
+ export default Accordion;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ export declare const Blockquote: import("react").ForwardRefExoticComponent<Pick<import("@digigov/react-core/Blockquote").BlockquoteProps, "color" | "className" | "children" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "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" | "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" | "cite"> & import("react").RefAttributes<HTMLElement>>;
3
+ export default Blockquote;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ export declare const BackButton: import("react").ForwardRefExoticComponent<Pick<import("@digigov/react-core/BackLink").BackLinkProps, "color" | "className" | "children" | "key" | "type" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "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" | "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" | "href" | "download" | "hrefLang" | "media" | "ping" | "rel" | "target" | "referrerPolicy"> & import("react").RefAttributes<HTMLAnchorElement>>;
3
+ export default BackButton;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { ButtonLinkProps as CoreButtonLinkProps } from '@digigov/react-core/ButtonLink';
3
+ export declare type ButtonLinkProps = CoreButtonLinkProps;
4
+ export declare const ButtonLink: import("react").ForwardRefExoticComponent<Pick<CoreButtonLinkProps, "color" | "className" | "children" | "key" | "type" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "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" | "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" | "href" | "download" | "hrefLang" | "media" | "ping" | "rel" | "target" | "referrerPolicy"> & import("react").RefAttributes<HTMLAnchorElement>>;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { CallToActionProps as CoreCallToActionProps } from '@digigov/react-core/CallToAction';
3
+ export interface CallToActionProps extends CoreCallToActionProps {
4
+ label?: string;
5
+ }
6
+ export declare const CallToAction: React.FC<CallToActionProps>;
7
+ export default CallToAction;
@@ -0,0 +1,2 @@
1
+ export declare const ButtonIcon: () => void;
2
+ export default ButtonIcon;
@@ -0,0 +1,14 @@
1
+ import React from 'react';
2
+ import { ButtonProps as CoreButtonProps } from '@digigov/react-core/Button';
3
+ export declare type ButtonProps = CoreButtonProps;
4
+ export declare const Button: React.ForwardRefExoticComponent<Pick<CoreButtonProps, "color" | "disabled" | "className" | "children" | "key" | "autoFocus" | "form" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "type" | "value" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "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" | "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"> & React.RefAttributes<HTMLButtonElement>>;
5
+ export default Button;
6
+ export interface ContinueButtonProps extends ButtonProps {
7
+ label?: string;
8
+ ref?: React.Ref<HTMLButtonElement>;
9
+ }
10
+ export declare const ContinueButton: React.FC<ContinueButtonProps>;
11
+ export * from '@digigov/ui/core/Button/BackButton';
12
+ export * from '@digigov/ui/core/Button/CallToAction';
13
+ export * from '@digigov/ui/core/Button/ButtonLink';
14
+ export * from '@digigov/ui/core/Button/Icon';
@@ -0,0 +1,5 @@
1
+ import Details from '@digigov/react-core/Details';
2
+ import DetailsContent from '@digigov/react-core/DetailsContent';
3
+ import DetailsSummary from '@digigov/react-core/DetailsSummary';
4
+ export { Details, DetailsContent, DetailsSummary };
5
+ export default Details;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { SectionBreakProps as CoreSectionBreakProps } from '@digigov/react-core/SectionBreak';
3
+ export declare type SectionBreakProps = CoreSectionBreakProps;
4
+ export declare const SectionBreak: import("react").ForwardRefExoticComponent<Pick<CoreSectionBreakProps, "color" | "className" | "children" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "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" | "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" | "visible" | "size"> & import("react").RefAttributes<HTMLHRElement>>;
5
+ export default SectionBreak;
@@ -0,0 +1,3 @@
1
+ import ErrorSummary from '@digigov/react-core/ErrorSummary';
2
+ export { ErrorSummary };
3
+ export default ErrorSummary;
File without changes
File without changes
@@ -0,0 +1,3 @@
1
+ import List from '@digigov/react-core/List';
2
+ export { List };
3
+ export default List;
@@ -0,0 +1,3 @@
1
+ import ListItem from '@digigov/react-core/ListItem';
2
+ export { ListItem };
3
+ export default ListItem;
@@ -2,6 +2,7 @@ import React from 'react';
2
2
  import { NormalTextProps } from '@digigov/ui/typography/NormalText';
3
3
  export declare const useListItemTextStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"root">;
4
4
  export interface ListItemTextProps extends NormalTextProps {
5
+ ref?: React.Ref<HTMLSpanElement>;
5
6
  }
6
7
  export declare const ListItemText: React.FC<ListItemTextProps>;
7
8
  export default ListItemText;
File without changes
File without changes
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { NavLinkInterface } from '@digigov/ui/core/NavList/NavListContext';
3
3
  import { BaseCSSProperties } from '@material-ui/core/styles/withStyles';
4
- export declare const useNavListStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"root" | "vertical" | "subMenu" | "floating" | "floatClear">;
4
+ export declare const useNavListStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"vertical" | "root" | "subMenu" | "floating" | "floatClear">;
5
5
  export interface NavListProps {
6
6
  children?: React.ReactNode;
7
7
  className?: string;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- export declare const useNavListItemBaseStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"label" | "link" | "root" | "horizontal" | "vertical" | "open" | "icon" | "selected" | "submenu">;
2
+ export declare const useNavListItemBaseStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"label" | "link" | "horizontal" | "vertical" | "open" | "root" | "icon" | "selected" | "submenu">;
3
3
  export interface NavListItemBaseProps {
4
4
  children?: React.ReactNode;
5
5
  href?: string;
File without changes
@@ -0,0 +1,17 @@
1
+ /// <reference types="react" />
2
+ import { NotificationBannerProps as CoreNotificationBannerProps } from '@digigov/react-core/NotificationBanner';
3
+ import NotificationBannerHeader from '@digigov/react-core/NotificationBannerHeader';
4
+ import NotificationBannerHeading from '@digigov/react-core/NotificationBannerHeading';
5
+ import NotificationBannerContent from '@digigov/react-core/NotificationBannerContent';
6
+ export interface NotificationBannerProps extends CoreNotificationBannerProps {
7
+ variant?: 'important' | 'success';
8
+ title?: string;
9
+ }
10
+ export declare const NotificationBanner: ({ variant, title, children, ...props }: {
11
+ [x: string]: any;
12
+ variant?: string | undefined;
13
+ title: any;
14
+ children: any;
15
+ }) => JSX.Element;
16
+ export { NotificationBannerHeader, NotificationBannerContent, NotificationBannerHeading, };
17
+ export default NotificationBanner;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { PhaseBannerProps } from '@digigov/react-core/PhaseBanner';
3
+ interface ServiceBadgeProps extends PhaseBannerProps {
4
+ label?: string;
5
+ ref?: React.Ref<HTMLDivElement>;
6
+ }
7
+ export declare const ServiceBadge: React.FC<ServiceBadgeProps>;
8
+ export default ServiceBadge;
@@ -0,0 +1,7 @@
1
+ import { SummaryList } from '@digigov/react-core/SummaryList';
2
+ export * from '@digigov/react-core/SummaryList';
3
+ export * from '@digigov/react-core/SummaryListItemAction';
4
+ export * from '@digigov/react-core/SummaryListItem';
5
+ export * from '@digigov/react-core/SummaryListItemKey';
6
+ export * from '@digigov/react-core/SummaryListItemValue';
7
+ export default SummaryList;
@@ -0,0 +1,16 @@
1
+ import Tabs from '@digigov/react-core/Tabs';
2
+ import TabsList from '@digigov/react-core/TabsList';
3
+ import TabsListItem from '@digigov/react-core/TabsListItem';
4
+ import TabsPanel from '@digigov/react-core/TabsPanel';
5
+ import TabsHeading from '@digigov/react-core/TabsHeading';
6
+ import { UseTogglableSectionsReturn } from '@digigov/ui/hooks/useTogglableSections';
7
+ export interface UseTabsReturn extends UseTogglableSectionsReturn {
8
+ panel: (key: string) => {
9
+ active: boolean;
10
+ tabIndex: number;
11
+ id: string;
12
+ };
13
+ }
14
+ export { Tabs, TabsList, TabsListItem, TabsPanel, TabsHeading };
15
+ export declare const useTabs: () => UseTabsReturn;
16
+ export default Tabs;
@@ -0,0 +1,3 @@
1
+ import WarningText from '@digigov/react-core/WarningText';
2
+ export { WarningText };
3
+ export default WarningText;
File without changes
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  export interface CopyrightProps {
3
3
  copyright?: string;
4
4
  createdBy?: React.ReactNode;
5
+ minDigitalCopyright?: boolean;
5
6
  }
6
7
  export declare const Copyright: React.FC<CopyrightProps>;
7
- export declare const MinDigitalCopyright: React.FC<CopyrightProps>;
8
8
  export default Copyright;
@@ -0,0 +1,3 @@
1
+ import HellenicRepublicLogo from '@digigov/react-core/HellenicRepublicLogo';
2
+ export { HellenicRepublicLogo };
3
+ export default HellenicRepublicLogo;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
- import { ContentProps } from '@digigov/ui/layouts/Basic';
3
- export interface GovGRFooterProps extends ContentProps {
2
+ import { FooterProps } from '@digigov/react-core/Footer';
3
+ export interface GovGRFooterProps extends FooterProps {
4
4
  copyright?: React.ReactNode;
5
5
  minDigitalCopyright?: boolean;
6
6
  license?: string;
@@ -10,7 +10,7 @@ export interface GovGRFooterProps extends ContentProps {
10
10
  className?: string;
11
11
  }
12
12
  export declare const GovGRFooter: React.FC<GovGRFooterProps>;
13
- export interface FeedbackProps extends ContentProps {
13
+ export interface FeedbackProps {
14
14
  reportBugs?: boolean;
15
15
  }
16
16
  export declare const Feedback: React.FC<FeedbackProps>;
File without changes