@digigov/form 0.8.3 → 0.8.4

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 (307) hide show
  1. package/CHANGELOG.md +10 -1
  2. package/{libs/form/src/Field → Field}/FieldBase.d.ts +0 -0
  3. package/Field/FieldBase.js +1 -0
  4. package/{libs/form/src/Field → Field}/FieldConditional.d.ts +0 -0
  5. package/{libs/form/src/Field → Field}/FieldContainer.d.ts +0 -0
  6. package/{libs/form/src/Field → Field}/index.d.ts +0 -0
  7. package/{libs/form/src/Field → Field}/types.d.ts +0 -0
  8. package/{libs/form/src/Field → Field}/utils.d.ts +0 -0
  9. package/Field/utils.js +6 -0
  10. package/{libs/form/src/FieldArray → FieldArray}/FieldArray.stories.d.ts +0 -0
  11. package/{libs/form/src/FieldArray → FieldArray}/__stories__/Default.d.ts +0 -0
  12. package/{libs/form/src/FieldArray → FieldArray}/__stories__/WithExactLength.d.ts +0 -0
  13. package/{libs/form/src/FieldArray → FieldArray}/index.d.ts +0 -0
  14. package/{libs/form/src/FieldObject → FieldObject}/index.d.ts +0 -0
  15. package/{libs/form/src/Fieldset → Fieldset}/FieldsetWithContext.d.ts +0 -0
  16. package/{libs/form/src/Fieldset → Fieldset}/index.d.ts +0 -0
  17. package/{libs/form/src/Fieldset → Fieldset}/types.d.ts +0 -0
  18. package/{libs/form/src/Form.stories.d.ts → Form.stories.d.ts} +1 -0
  19. package/Form.stories.js +14 -0
  20. package/{libs/form/src/FormBuilder.d.ts → FormBuilder.d.ts} +0 -0
  21. package/{libs/form/src/FormContext.d.ts → FormContext.d.ts} +0 -0
  22. package/{libs/form/src/MultiplicityField → MultiplicityField}/MultiplicityField.stories.d.ts +0 -0
  23. package/{libs/form/src/MultiplicityField → MultiplicityField}/__stories__/Default.d.ts +0 -0
  24. package/{libs/form/src/MultiplicityField → MultiplicityField}/__stories__/WithExactLength.d.ts +0 -0
  25. package/{libs/form/src/MultiplicityField → MultiplicityField}/__stories__/WithMaxLength.d.ts +0 -0
  26. package/{libs/form/src/MultiplicityField → MultiplicityField}/__stories__/WithMinAndMaxLength.d.ts +0 -0
  27. package/{libs/form/src/MultiplicityField → MultiplicityField}/__stories__/WithMinLength.d.ts +0 -0
  28. package/{libs/form/src/MultiplicityField → MultiplicityField}/add-objects.d.ts +0 -0
  29. package/{libs/form/src/MultiplicityField → MultiplicityField}/index.d.ts +0 -0
  30. package/{libs/form/src/Questions → Questions}/Questions.d.ts +0 -0
  31. package/{libs/form/src/Questions → Questions}/QuestionsContext.d.ts +0 -0
  32. package/{libs/form/src/Questions → Questions}/Step/ReviewStep.d.ts +0 -0
  33. package/{libs/form/src/Questions → Questions}/Step/Step.d.ts +0 -0
  34. package/{libs/form/src/Questions → Questions}/Step/StepArrayReview.d.ts +0 -0
  35. package/{libs/form/src/Questions → Questions}/Step/StepContext.d.ts +0 -0
  36. package/{libs/form/src/Questions → Questions}/Step/StepDescription.d.ts +0 -0
  37. package/{libs/form/src/Questions → Questions}/Step/StepForm.d.ts +0 -0
  38. package/{libs/form/src/Questions → Questions}/Step/StepQuote.d.ts +0 -0
  39. package/{libs/form/src/Questions → Questions}/Step/StepTitle.d.ts +0 -0
  40. package/{libs/form/src/Questions → Questions}/Step/getAddMoreFields.d.ts +0 -0
  41. package/{libs/form/src/Questions → Questions}/Step/index.d.ts +0 -0
  42. package/{libs/form/src/Questions → Questions}/Step/types.d.ts +0 -0
  43. package/{libs/form/src/Questions → Questions}/getNextStep.d.ts +0 -0
  44. package/{libs/form/src/Questions → Questions}/index.d.ts +0 -0
  45. package/{libs/form/src/Questions → Questions}/index.spec.d.ts +0 -0
  46. package/{libs/form/src/Questions → Questions}/types.d.ts +0 -0
  47. package/__stories__/AutoCompleteField.d.ts +1 -0
  48. package/__stories__/AutoCompleteField.js +61 -0
  49. package/{libs/form/src/__stories__ → __stories__}/IntField.d.ts +0 -0
  50. package/__stories__/IntField.js +5 -9
  51. package/es/Field/FieldBase.js +1 -0
  52. package/es/Field/utils.js +5 -0
  53. package/es/Form.stories.js +2 -1
  54. package/es/__stories__/AutoCompleteField.js +45 -0
  55. package/es/__stories__/IntField.js +2 -1
  56. package/es/inputs/AutoComplete/index.js +45 -0
  57. package/es/inputs/Radio/index.js +3 -2
  58. package/esm/Field/FieldBase.js +1 -0
  59. package/esm/Field/utils.js +5 -0
  60. package/esm/Form.stories.js +2 -1
  61. package/esm/__stories__/AutoCompleteField.js +45 -0
  62. package/esm/__stories__/IntField.js +2 -1
  63. package/esm/index.js +1 -1
  64. package/esm/inputs/AutoComplete/index.js +45 -0
  65. package/esm/inputs/Radio/index.js +3 -2
  66. package/{libs/form/src/index.d.ts → index.d.ts} +0 -0
  67. package/inputs/AutoComplete/index.d.ts +14 -0
  68. package/inputs/AutoComplete/index.js +68 -0
  69. package/{libs/form/src/inputs → inputs}/Checkboxes/index.d.ts +0 -0
  70. package/{libs/form/src/inputs → inputs}/DateInput/index.d.ts +0 -0
  71. package/{libs/form/src/inputs → inputs}/FileInput/FileInput.stories.d.ts +0 -0
  72. package/{libs/form/src/inputs → inputs}/FileInput/__stories__/Default.d.ts +0 -0
  73. package/{libs/form/src/inputs → inputs}/FileInput/index.d.ts +0 -0
  74. package/{libs/form/src/inputs → inputs}/Input/index.d.ts +0 -0
  75. package/{libs/form/src/inputs → inputs}/Label/index.d.ts +0 -0
  76. package/{libs/form/src/inputs → inputs}/Radio/index.d.ts +0 -0
  77. package/inputs/Radio/index.js +3 -2
  78. package/{libs/form/src/inputs → inputs}/Select/index.d.ts +0 -0
  79. package/{libs/form/src/inputs → inputs}/index.d.ts +0 -0
  80. package/{libs/form/src/internal.d.ts → internal.d.ts} +0 -0
  81. package/package.json +3 -2
  82. package/{libs/form/src/types.d.ts → types.d.ts} +0 -0
  83. package/{libs/form/src/utils.d.ts → utils.d.ts} +0 -0
  84. package/{libs/form/src/validators → validators}/index.d.ts +0 -0
  85. package/{libs/form/src/validators → validators}/types.d.ts +0 -0
  86. package/{libs/form/src/validators → validators}/utils/afm.d.ts +0 -0
  87. package/{libs/form/src/validators → validators}/utils/file.d.ts +0 -0
  88. package/{libs/form/src/validators → validators}/utils/iban.d.ts +0 -0
  89. package/{libs/form/src/validators → validators}/utils/index.d.ts +0 -0
  90. package/{libs/form/src/validators → validators}/utils/int.d.ts +0 -0
  91. package/{libs/form/src/validators → validators}/utils/number.d.ts +0 -0
  92. package/{libs/form/src/validators → validators}/utils/phone.d.ts +0 -0
  93. package/{libs/form/src/validators → validators}/utils/postal_code.d.ts +0 -0
  94. package/{libs/form/src/validators → validators}/utils/uuid4.d.ts +0 -0
  95. package/{libs/form/src/validators → validators}/validators.spec.d.ts +0 -0
  96. package/libs/ui/src/app/PageTitle.d.ts +0 -10
  97. package/libs/ui/src/app/i18n.d.ts +0 -12
  98. package/libs/ui/src/core/Accordion/index.d.ts +0 -23
  99. package/libs/ui/src/core/BackLink/index.d.ts +0 -3
  100. package/libs/ui/src/core/Base/index.d.ts +0 -3
  101. package/libs/ui/src/core/Blockquote/index.d.ts +0 -3
  102. package/libs/ui/src/core/Breadcrumbs/index.d.ts +0 -5
  103. package/libs/ui/src/core/Button/BackButton.d.ts +0 -3
  104. package/libs/ui/src/core/Button/ButtonLink.d.ts +0 -4
  105. package/libs/ui/src/core/Button/CallToAction.d.ts +0 -7
  106. package/libs/ui/src/core/Button/Icon.d.ts +0 -2
  107. package/libs/ui/src/core/Button/index.d.ts +0 -15
  108. package/libs/ui/src/core/Card/index.d.ts +0 -6
  109. package/libs/ui/src/core/Confirmation/index.d.ts +0 -5
  110. package/libs/ui/src/core/Details/index.d.ts +0 -5
  111. package/libs/ui/src/core/Divider/index.d.ts +0 -5
  112. package/libs/ui/src/core/ErrorSummary/index.d.ts +0 -3
  113. package/libs/ui/src/core/FileUpload/index.d.ts +0 -3
  114. package/libs/ui/src/core/Form/index.d.ts +0 -3
  115. package/libs/ui/src/core/Hidden/index.d.ts +0 -1
  116. package/libs/ui/src/core/Label/index.d.ts +0 -4
  117. package/libs/ui/src/core/Link/index.d.ts +0 -13
  118. package/libs/ui/src/core/List/List.d.ts +0 -3
  119. package/libs/ui/src/core/List/ListItem.d.ts +0 -3
  120. package/libs/ui/src/core/List/ListItemContent.d.ts +0 -6
  121. package/libs/ui/src/core/List/ListItemIcon.d.ts +0 -5
  122. package/libs/ui/src/core/List/ListItemText.d.ts +0 -7
  123. package/libs/ui/src/core/List/ListItemTitle.d.ts +0 -9
  124. package/libs/ui/src/core/List/index.d.ts +0 -7
  125. package/libs/ui/src/core/NavList/NavHorizontal.d.ts +0 -3
  126. package/libs/ui/src/core/NavList/NavHorizontalList.d.ts +0 -3
  127. package/libs/ui/src/core/NavList/NavHorizontalListItem.d.ts +0 -3
  128. package/libs/ui/src/core/NavList/NavList.d.ts +0 -4
  129. package/libs/ui/src/core/NavList/NavListBase.d.ts +0 -4
  130. package/libs/ui/src/core/NavList/NavListContext.d.ts +0 -20
  131. package/libs/ui/src/core/NavList/NavListItem.d.ts +0 -14
  132. package/libs/ui/src/core/NavList/NavListItemBase.d.ts +0 -17
  133. package/libs/ui/src/core/NavList/NavListSubMenu.d.ts +0 -8
  134. package/libs/ui/src/core/NavList/NavVertical.d.ts +0 -3
  135. package/libs/ui/src/core/NavList/NavVerticalItem.d.ts +0 -3
  136. package/libs/ui/src/core/NavList/index.d.ts +0 -10
  137. package/libs/ui/src/core/NavList/types.d.ts +0 -14
  138. package/libs/ui/src/core/NotificationBanner/index.d.ts +0 -18
  139. package/libs/ui/src/core/PhaseBanner/index.d.ts +0 -6
  140. package/libs/ui/src/core/ServiceBadge/index.d.ts +0 -8
  141. package/libs/ui/src/core/SkipLink/index.d.ts +0 -3
  142. package/libs/ui/src/core/SummaryList/index.d.ts +0 -7
  143. package/libs/ui/src/core/SvgIcon/index.d.ts +0 -10
  144. package/libs/ui/src/core/Table/TableFloatingScroll.d.ts +0 -2
  145. package/libs/ui/src/core/Table/index.d.ts +0 -10
  146. package/libs/ui/src/core/Tabs/index.d.ts +0 -16
  147. package/libs/ui/src/core/TextArea/index.d.ts +0 -3
  148. package/libs/ui/src/core/TextInput/index.d.ts +0 -3
  149. package/libs/ui/src/core/VisuallyHidden/index.d.ts +0 -3
  150. package/libs/ui/src/core/WarningText/index.d.ts +0 -3
  151. package/libs/ui/src/core/index.d.ts +0 -32
  152. package/libs/ui/src/hooks/useTogglableSections.d.ts +0 -19
  153. package/libs/ui/src/layouts/Grid/index.d.ts +0 -4
  154. package/libs/ui/src/locales/el.d.ts +0 -84
  155. package/libs/ui/src/router/index.d.ts +0 -9
  156. package/libs/ui/src/typography/Caption/index.d.ts +0 -8
  157. package/libs/ui/src/typography/NormalText/index.d.ts +0 -5
  158. package/libs/ui/src/typography/Paragraph/index.d.ts +0 -6
  159. package/libs/ui/src/typography/Title/index.d.ts +0 -10
  160. package/libs/ui/src/utils/withDeprecation.d.ts +0 -16
  161. package/libs-ui/react-core/src/Accordion/index.d.ts +0 -10
  162. package/libs-ui/react-core/src/AccordionControls/index.d.ts +0 -9
  163. package/libs-ui/react-core/src/AccordionSection/index.d.ts +0 -16
  164. package/libs-ui/react-core/src/AccordionSectionContent/index.d.ts +0 -10
  165. package/libs-ui/react-core/src/AccordionSectionHeader/index.d.ts +0 -9
  166. package/libs-ui/react-core/src/AccordionSectionSummary/index.d.ts +0 -10
  167. package/libs-ui/react-core/src/AccordionSectionSummaryHeading/index.d.ts +0 -9
  168. package/libs-ui/react-core/src/ArrowIcon/index.d.ts +0 -16
  169. package/libs-ui/react-core/src/Aside/index.d.ts +0 -10
  170. package/libs-ui/react-core/src/BackLink/index.d.ts +0 -13
  171. package/libs-ui/react-core/src/Base/index.d.ts +0 -43
  172. package/libs-ui/react-core/src/Blockquote/index.d.ts +0 -9
  173. package/libs-ui/react-core/src/Bottom/index.d.ts +0 -9
  174. package/libs-ui/react-core/src/Breadcrumbs/index.d.ts +0 -10
  175. package/libs-ui/react-core/src/BreadcrumbsList/index.d.ts +0 -9
  176. package/libs-ui/react-core/src/BreadcrumbsListItem/index.d.ts +0 -14
  177. package/libs-ui/react-core/src/BurgerIcon/index.d.ts +0 -28
  178. package/libs-ui/react-core/src/Button/index.d.ts +0 -25
  179. package/libs-ui/react-core/src/ButtonGroup/index.d.ts +0 -9
  180. package/libs-ui/react-core/src/ButtonLink/index.d.ts +0 -17
  181. package/libs-ui/react-core/src/CallToAction/index.d.ts +0 -10
  182. package/libs-ui/react-core/src/Card/index.d.ts +0 -29
  183. package/libs-ui/react-core/src/CardAction/index.d.ts +0 -11
  184. package/libs-ui/react-core/src/CardHeading/index.d.ts +0 -10
  185. package/libs-ui/react-core/src/CardText/index.d.ts +0 -10
  186. package/libs-ui/react-core/src/CaretIcon/index.d.ts +0 -16
  187. package/libs-ui/react-core/src/CheckIcon/index.d.ts +0 -15
  188. package/libs-ui/react-core/src/Checkbox/index.d.ts +0 -11
  189. package/libs-ui/react-core/src/CheckboxConditional/index.d.ts +0 -11
  190. package/libs-ui/react-core/src/CheckboxItem/index.d.ts +0 -19
  191. package/libs-ui/react-core/src/CloseIcon/index.d.ts +0 -16
  192. package/libs-ui/react-core/src/Confirmation/index.d.ts +0 -9
  193. package/libs-ui/react-core/src/ConfirmationBody/index.d.ts +0 -9
  194. package/libs-ui/react-core/src/ConfirmationTitle/index.d.ts +0 -9
  195. package/libs-ui/react-core/src/Container/index.d.ts +0 -17
  196. package/libs-ui/react-core/src/Copyright/index.d.ts +0 -10
  197. package/libs-ui/react-core/src/DateInput/index.d.ts +0 -12
  198. package/libs-ui/react-core/src/DateInputItem/index.d.ts +0 -25
  199. package/libs-ui/react-core/src/Details/index.d.ts +0 -10
  200. package/libs-ui/react-core/src/DetailsContent/index.d.ts +0 -10
  201. package/libs-ui/react-core/src/DetailsSummary/index.d.ts +0 -9
  202. package/libs-ui/react-core/src/ErrorMessage/index.d.ts +0 -11
  203. package/libs-ui/react-core/src/ErrorSummary/index.d.ts +0 -9
  204. package/libs-ui/react-core/src/Field/index.d.ts +0 -13
  205. package/libs-ui/react-core/src/Fieldset/index.d.ts +0 -10
  206. package/libs-ui/react-core/src/FieldsetLegend/index.d.ts +0 -19
  207. package/libs-ui/react-core/src/FileUpload/index.d.ts +0 -22
  208. package/libs-ui/react-core/src/FileUploadContainer/index.d.ts +0 -14
  209. package/libs-ui/react-core/src/Footer/index.d.ts +0 -9
  210. package/libs-ui/react-core/src/FooterContainer/index.d.ts +0 -16
  211. package/libs-ui/react-core/src/FooterContent/index.d.ts +0 -10
  212. package/libs-ui/react-core/src/FooterContentLogos/index.d.ts +0 -11
  213. package/libs-ui/react-core/src/FooterHeading/index.d.ts +0 -15
  214. package/libs-ui/react-core/src/FooterImage/index.d.ts +0 -15
  215. package/libs-ui/react-core/src/FooterInlineList/index.d.ts +0 -11
  216. package/libs-ui/react-core/src/FooterInlineListItem/index.d.ts +0 -9
  217. package/libs-ui/react-core/src/FooterLink/index.d.ts +0 -13
  218. package/libs-ui/react-core/src/FooterList/index.d.ts +0 -15
  219. package/libs-ui/react-core/src/FooterListItem/index.d.ts +0 -10
  220. package/libs-ui/react-core/src/FooterMeta/index.d.ts +0 -11
  221. package/libs-ui/react-core/src/FooterMetaItem/index.d.ts +0 -14
  222. package/libs-ui/react-core/src/FooterNavigation/index.d.ts +0 -11
  223. package/libs-ui/react-core/src/FooterSection/index.d.ts +0 -11
  224. package/libs-ui/react-core/src/Form/index.d.ts +0 -11
  225. package/libs-ui/react-core/src/GovGRFooter/index.d.ts +0 -9
  226. package/libs-ui/react-core/src/GovGRLogo/govgr-logo-base64.d.ts +0 -2
  227. package/libs-ui/react-core/src/GovGRLogo/index.d.ts +0 -9
  228. package/libs-ui/react-core/src/Grid/index.d.ts +0 -20
  229. package/libs-ui/react-core/src/Header/index.d.ts +0 -10
  230. package/libs-ui/react-core/src/HeaderContent/index.d.ts +0 -9
  231. package/libs-ui/react-core/src/HeaderLogo/index.d.ts +0 -21
  232. package/libs-ui/react-core/src/HeaderSecondaryLogo/index.d.ts +0 -21
  233. package/libs-ui/react-core/src/HeaderSection/index.d.ts +0 -9
  234. package/libs-ui/react-core/src/HeaderSubtitle/index.d.ts +0 -9
  235. package/libs-ui/react-core/src/HeaderTitle/index.d.ts +0 -13
  236. package/libs-ui/react-core/src/Heading/index.d.ts +0 -21
  237. package/libs-ui/react-core/src/HeadingCaption/index.d.ts +0 -15
  238. package/libs-ui/react-core/src/HellenicRepublicLogo/index.d.ts +0 -20
  239. package/libs-ui/react-core/src/HellenicRepublicLogo/logo-el.d.ts +0 -2
  240. package/libs-ui/react-core/src/HellenicRepublicLogo/logo-en.d.ts +0 -2
  241. package/libs-ui/react-core/src/Hidden/index.d.ts +0 -17
  242. package/libs-ui/react-core/src/Hint/index.d.ts +0 -14
  243. package/libs-ui/react-core/src/Label/index.d.ts +0 -9
  244. package/libs-ui/react-core/src/LabelTitle/index.d.ts +0 -19
  245. package/libs-ui/react-core/src/Layout/index.d.ts +0 -10
  246. package/libs-ui/react-core/src/Link/index.d.ts +0 -14
  247. package/libs-ui/react-core/src/List/index.d.ts +0 -18
  248. package/libs-ui/react-core/src/ListItem/index.d.ts +0 -9
  249. package/libs-ui/react-core/src/Main/index.d.ts +0 -9
  250. package/libs-ui/react-core/src/Masthead/index.d.ts +0 -9
  251. package/libs-ui/react-core/src/MastheadBody/index.d.ts +0 -9
  252. package/libs-ui/react-core/src/MoreVertIcon/index.d.ts +0 -15
  253. package/libs-ui/react-core/src/NavHorizontal/index.d.ts +0 -16
  254. package/libs-ui/react-core/src/NavHorizontalList/index.d.ts +0 -10
  255. package/libs-ui/react-core/src/NavHorizontalListItem/index.d.ts +0 -18
  256. package/libs-ui/react-core/src/NavVertical/index.d.ts +0 -11
  257. package/libs-ui/react-core/src/NavVerticalItem/index.d.ts +0 -14
  258. package/libs-ui/react-core/src/NormalText/index.d.ts +0 -28
  259. package/libs-ui/react-core/src/NotificationBanner/index.d.ts +0 -17
  260. package/libs-ui/react-core/src/NotificationBannerContent/index.d.ts +0 -12
  261. package/libs-ui/react-core/src/NotificationBannerHeader/index.d.ts +0 -11
  262. package/libs-ui/react-core/src/NotificationBannerHeading/index.d.ts +0 -11
  263. package/libs-ui/react-core/src/NotificationBannerLink/index.d.ts +0 -15
  264. package/libs-ui/react-core/src/PageTitle/index.d.ts +0 -9
  265. package/libs-ui/react-core/src/PageTitleCaption/index.d.ts +0 -14
  266. package/libs-ui/react-core/src/PageTitleHeading/index.d.ts +0 -13
  267. package/libs-ui/react-core/src/PageTitleSection/index.d.ts +0 -10
  268. package/libs-ui/react-core/src/Paragraph/index.d.ts +0 -26
  269. package/libs-ui/react-core/src/PhaseBanner/index.d.ts +0 -15
  270. package/libs-ui/react-core/src/PhaseBannerHeaderContainer/index.d.ts +0 -8
  271. package/libs-ui/react-core/src/PhaseBannerTag/index.d.ts +0 -9
  272. package/libs-ui/react-core/src/PhaseBannerText/index.d.ts +0 -11
  273. package/libs-ui/react-core/src/Radio/index.d.ts +0 -14
  274. package/libs-ui/react-core/src/RadioConditional/index.d.ts +0 -11
  275. package/libs-ui/react-core/src/RadioItem/index.d.ts +0 -18
  276. package/libs-ui/react-core/src/SectionBreak/index.d.ts +0 -18
  277. package/libs-ui/react-core/src/Select/index.d.ts +0 -14
  278. package/libs-ui/react-core/src/SelectOption/index.d.ts +0 -18
  279. package/libs-ui/react-core/src/ServiceBadge/index.d.ts +0 -11
  280. package/libs-ui/react-core/src/SkipLink/index.d.ts +0 -10
  281. package/libs-ui/react-core/src/SummaryList/index.d.ts +0 -16
  282. package/libs-ui/react-core/src/SummaryListItem/index.d.ts +0 -10
  283. package/libs-ui/react-core/src/SummaryListItemAction/index.d.ts +0 -10
  284. package/libs-ui/react-core/src/SummaryListItemKey/index.d.ts +0 -10
  285. package/libs-ui/react-core/src/SummaryListItemValue/index.d.ts +0 -9
  286. package/libs-ui/react-core/src/SvgIcon/index.d.ts +0 -20
  287. package/libs-ui/react-core/src/Table/index.d.ts +0 -34
  288. package/libs-ui/react-core/src/TableBody/index.d.ts +0 -9
  289. package/libs-ui/react-core/src/TableCaption/index.d.ts +0 -15
  290. package/libs-ui/react-core/src/TableContainer/index.d.ts +0 -13
  291. package/libs-ui/react-core/src/TableDataCell/index.d.ts +0 -15
  292. package/libs-ui/react-core/src/TableHead/index.d.ts +0 -9
  293. package/libs-ui/react-core/src/TableHeadCell/index.d.ts +0 -21
  294. package/libs-ui/react-core/src/TableNoDataRow/index.d.ts +0 -10
  295. package/libs-ui/react-core/src/TableRow/index.d.ts +0 -9
  296. package/libs-ui/react-core/src/Tabs/index.d.ts +0 -10
  297. package/libs-ui/react-core/src/TabsHeading/index.d.ts +0 -15
  298. package/libs-ui/react-core/src/TabsList/index.d.ts +0 -10
  299. package/libs-ui/react-core/src/TabsListItem/index.d.ts +0 -20
  300. package/libs-ui/react-core/src/TabsPanel/index.d.ts +0 -16
  301. package/libs-ui/react-core/src/TextArea/index.d.ts +0 -23
  302. package/libs-ui/react-core/src/TextInput/index.d.ts +0 -28
  303. package/libs-ui/react-core/src/Top/index.d.ts +0 -9
  304. package/libs-ui/react-core/src/UncheckIcon/index.d.ts +0 -15
  305. package/libs-ui/react-core/src/VisuallyHidden/index.d.ts +0 -10
  306. package/libs-ui/react-core/src/WarningText/index.d.ts +0 -11
  307. package/libs-ui/react-core/src/index.d.ts +0 -141
@@ -0,0 +1,68 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ var _typeof = require("@babel/runtime/helpers/typeof");
6
+
7
+ Object.defineProperty(exports, "__esModule", {
8
+ value: true
9
+ });
10
+ exports["default"] = exports.AutoComplete = void 0;
11
+
12
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
13
+
14
+ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
15
+
16
+ var _react = _interopRequireWildcard(require("react"));
17
+
18
+ var _AutoComplete = _interopRequireDefault(require("@digigov/ui/admin/AutoComplete"));
19
+
20
+ var _reactCore = require("@digigov/react-core");
21
+
22
+ var _excluded = ["name", "extra", "onChange", "value"];
23
+
24
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
25
+
26
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
27
+
28
+ var AutoComplete = function AutoComplete(_ref) {
29
+ var name = _ref.name,
30
+ options = _ref.extra.options,
31
+ onChange = _ref.onChange,
32
+ value = _ref.value,
33
+ props = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
34
+ var suggest = (0, _react.useCallback)(function suggest(query, syncResults) {
35
+ syncResults(query ? options.filter(function (option) {
36
+ var _option$label, _option$label2;
37
+
38
+ return "".concat(option.value, " ").concat(((_option$label = option.label) === null || _option$label === void 0 ? void 0 : _option$label.primary) || '', " ").concat(((_option$label2 = option.label) === null || _option$label2 === void 0 ? void 0 : _option$label2.secondary) || '').toLowerCase().indexOf(query.toLowerCase()) !== -1;
39
+ }) : []);
40
+ }, []);
41
+ return /*#__PURE__*/_react["default"].createElement(_AutoComplete["default"], (0, _extends2["default"])({
42
+ source: suggest,
43
+ onConfirm: function onConfirm(value) {
44
+ onChange(value.value);
45
+ },
46
+ templates: {
47
+ suggestion: function suggestion(_ref2) {
48
+ var label = _ref2.label,
49
+ value = _ref2.value;
50
+ return /*#__PURE__*/_react["default"].createElement("div", null, label && label.primary && label.primary || value, label && label.secondary && /*#__PURE__*/_react["default"].createElement(_reactCore.Hint, null, label.secondary));
51
+ },
52
+ inputValue: function inputValue(option) {
53
+ if (!option) {
54
+ return '';
55
+ }
56
+
57
+ return option.label.primary || option.value;
58
+ }
59
+ }
60
+ }, props, {
61
+ id: "".concat(name, "-id"),
62
+ defaultValue: value
63
+ }));
64
+ };
65
+
66
+ exports.AutoComplete = AutoComplete;
67
+ var _default = AutoComplete;
68
+ exports["default"] = _default;
@@ -23,11 +23,12 @@ var _reactHookForm = require("react-hook-form");
23
23
 
24
24
  var _Hint = _interopRequireDefault(require("@digigov/react-core/Hint"));
25
25
 
26
- var _excluded = ["name", "control", "extra", "disabled"];
26
+ var _excluded = ["name", "control", "register", "extra", "disabled"];
27
27
 
28
28
  var RadioButtonsGroup = function RadioButtonsGroup(_ref) {
29
29
  var name = _ref.name,
30
30
  control = _ref.control,
31
+ register = _ref.register,
31
32
  _ref$extra = _ref.extra,
32
33
  options = _ref$extra.options,
33
34
  className = _ref$extra.className,
@@ -52,7 +53,7 @@ var RadioButtonsGroup = function RadioButtonsGroup(_ref) {
52
53
  selected = _ref2.selected;
53
54
  return /*#__PURE__*/_react["default"].createElement("div", {
54
55
  key: "".concat(name, ".").concat(v)
55
- }, /*#__PURE__*/_react["default"].createElement(_RadioItem["default"], (0, _extends2["default"])({
56
+ }, /*#__PURE__*/_react["default"].createElement(_RadioItem["default"], (0, _extends2["default"])({}, register(name), {
56
57
  value: v,
57
58
  disabled: disabled || optionDisabled
58
59
  }, (0, _extends2["default"])({}, props, {
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digigov/form",
3
- "version": "0.8.3",
3
+ "version": "0.8.4",
4
4
  "description": "@digigov form builder",
5
5
  "author": "GRNET Developers <devs@lists.grnet.gr>",
6
6
  "license": "BSD-2-Clause",
@@ -18,8 +18,9 @@
18
18
  "@hookform/resolvers": "2.9.6"
19
19
  },
20
20
  "peerDependencies": {
21
- "@digigov/ui": "0.26.3",
21
+ "@digigov/ui": "0.26.4",
22
22
  "@digigov/react-core": "0.16.3",
23
+ "@digigov/react-extensions": "0.18.2",
23
24
  "clsx": "1.1.1",
24
25
  "react": "16.14.0",
25
26
  "react-dom": "16.14.0"
File without changes
File without changes
@@ -1,10 +0,0 @@
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>;
@@ -1,12 +0,0 @@
1
- import React from 'react';
2
- export interface I18NContextProps {
3
- Trans?: any;
4
- t: (str: string, context?: any) => string;
5
- children?: React.ReactNode;
6
- i18n?: any;
7
- }
8
- export declare const defaultTranslate: (key: string, context?: Record<string, any> | undefined) => string;
9
- export declare const I18NContext: React.Context<I18NContextProps>;
10
- export declare const I18NProvider: React.FC<I18NContextProps>;
11
- export declare const useTranslation: () => I18NContextProps;
12
- export default I18NProvider;
@@ -1,23 +0,0 @@
1
- import React from 'react';
2
- import Accordion from '@digigov/react-core/Accordion';
3
- import AccordionSection from '@digigov/react-core/AccordionSection';
4
- import AccordionSectionContent from '@digigov/react-core/AccordionSectionContent';
5
- import AccordionSectionSummaryHeading from '@digigov/react-core/AccordionSectionSummaryHeading';
6
- import AccordionSectionSummary from '@digigov/react-core/AccordionSectionSummary';
7
- import AccordionControls from '@digigov/react-core/AccordionControls';
8
- import { UseTogglableSectionsReturn } from '@digigov/ui/hooks/useTogglableSections';
9
- export declare const AccordionSectionHeader: React.ForwardRefExoticComponent<Pick<import("@digigov/react-core/AccordionSectionHeader").AccordionSectionHeaderProps, "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" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden"> & React.RefAttributes<HTMLElement>>;
10
- export declare const AccordionItemDetails: React.ForwardRefExoticComponent<Pick<import("@digigov/react-core/AccordionSectionContent").AccordionSectionContentProps, "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" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden"> & React.RefAttributes<HTMLDivElement>>;
11
- export declare const AccordionItemSummary: ({ children, ...props }: {
12
- [x: string]: any;
13
- children: any;
14
- }) => JSX.Element;
15
- export declare const AccordionItem: React.MemoExoticComponent<React.ForwardRefExoticComponent<Pick<import("@digigov/react-core/AccordionSection").AccordionSectionProps, "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" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden"> & React.RefAttributes<HTMLDetailsElement>>>;
16
- export interface UseAccordionProps {
17
- singleOpen?: boolean;
18
- }
19
- export interface UseAccordionReturn extends UseTogglableSectionsReturn {
20
- }
21
- declare const useAccordion: (props: UseAccordionProps) => UseAccordionReturn;
22
- export { Accordion, AccordionControls, AccordionSection, AccordionSectionContent, AccordionSectionSummary, AccordionSectionSummaryHeading, useAccordion, };
23
- export default Accordion;
@@ -1,3 +0,0 @@
1
- export * from '@digigov/react-core/BackLink';
2
- import BackLink from '@digigov/react-core/BackLink';
3
- export default BackLink;
@@ -1,3 +0,0 @@
1
- import Base from '@digigov/react-core/Base';
2
- export default Base;
3
- export { Base };
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const Blockquote: import("react").ForwardRefExoticComponent<Pick<import("@digigov/react-core/Blockquote").BlockquoteProps, "cite" | "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" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden"> & import("react").RefAttributes<HTMLElement>>;
3
- export default Blockquote;
@@ -1,5 +0,0 @@
1
- export * from '@digigov/react-core/Breadcrumbs';
2
- export * from '@digigov/react-core/BreadcrumbsList';
3
- export * from '@digigov/react-core/BreadcrumbsListItem';
4
- import Breadcrumbs from '@digigov/react-core/Breadcrumbs';
5
- export default Breadcrumbs;
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const BackButton: import("react").ForwardRefExoticComponent<Pick<import("@digigov/react-core/BackLink").BackLinkProps, "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "media" | "target" | "type" | "role" | "tabIndex" | "href" | "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" | "download" | "hrefLang" | "ping" | "rel" | "referrerPolicy" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden"> & import("react").RefAttributes<HTMLAnchorElement>>;
3
- export default BackButton;
@@ -1,4 +0,0 @@
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, "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "media" | "target" | "type" | "role" | "tabIndex" | "href" | "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" | "download" | "hrefLang" | "ping" | "rel" | "referrerPolicy" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden"> & import("react").RefAttributes<HTMLAnchorElement>>;
@@ -1,7 +0,0 @@
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;
@@ -1,2 +0,0 @@
1
- export declare const ButtonIcon: () => void;
2
- export default ButtonIcon;
@@ -1,15 +0,0 @@
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, "form" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "name" | "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" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden" | "variant"> & 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';
15
- export * from '@digigov/react-core/ButtonGroup';
@@ -1,6 +0,0 @@
1
- export * from '@digigov/react-core/Card';
2
- export * from '@digigov/react-core/CardAction';
3
- export * from '@digigov/react-core/CardHeading';
4
- export * from '@digigov/react-core/CardText';
5
- import Card from '@digigov/react-core/Card';
6
- export default Card;
@@ -1,5 +0,0 @@
1
- export * from '@digigov/react-core/Confirmation';
2
- export * from '@digigov/react-core/ConfirmationTitle';
3
- export * from '@digigov/react-core/ConfirmationBody';
4
- import Confirmation from '@digigov/react-core/Confirmation';
5
- export default Confirmation;
@@ -1,5 +0,0 @@
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;
@@ -1,5 +0,0 @@
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, "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" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden" | "visible"> & import("react").RefAttributes<HTMLHRElement>>;
5
- export default SectionBreak;
@@ -1,3 +0,0 @@
1
- import ErrorSummary from '@digigov/react-core/ErrorSummary';
2
- export { ErrorSummary };
3
- export default ErrorSummary;
@@ -1,3 +0,0 @@
1
- export * from '@digigov/react-core/FileUpload';
2
- import FileUpload from '@digigov/react-core/FileUpload';
3
- export default FileUpload;
@@ -1,3 +0,0 @@
1
- import Form from '@digigov/react-core/Form';
2
- export { Form };
3
- export default Form;
@@ -1 +0,0 @@
1
- export * from '@digigov/react-core/Hidden';
@@ -1,4 +0,0 @@
1
- export * from '@digigov/react-core/Label';
2
- export * from '@digigov/react-core/LabelTitle';
3
- import Label from '@digigov/react-core/Label';
4
- export default Label;
@@ -1,13 +0,0 @@
1
- import * as React from 'react';
2
- import { LinkProps as CoreLinkProps } from '@digigov/react-core/Link';
3
- export interface LinkComponentContextProps {
4
- component: React.ElementType<LinkProps>;
5
- }
6
- export declare const CommonLink: React.FC<LinkProps>;
7
- export declare const LinkProvider: React.FC<LinkComponentContextProps>;
8
- export interface LinkProps extends CoreLinkProps {
9
- ref?: React.Ref<HTMLAnchorElement>;
10
- }
11
- declare const Link: React.ExoticComponent<LinkProps>;
12
- export default Link;
13
- export { Link };
@@ -1,3 +0,0 @@
1
- import List from '@digigov/react-core/List';
2
- export { List };
3
- export default List;
@@ -1,3 +0,0 @@
1
- import ListItem from '@digigov/react-core/ListItem';
2
- export { ListItem };
3
- export default ListItem;
@@ -1,6 +0,0 @@
1
- import React from 'react';
2
- export interface ListItemContentProps {
3
- className?: string;
4
- }
5
- export declare const ListItemContent: React.FC<ListItemContentProps>;
6
- export default ListItemContent;
@@ -1,5 +0,0 @@
1
- import React from 'react';
2
- export interface ListItemIconProps {
3
- }
4
- export declare const ListItemIcon: React.FC<ListItemIconProps>;
5
- export default ListItemIcon;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import { NormalTextProps } from '@digigov/ui/typography/NormalText';
3
- export interface ListItemTextProps extends NormalTextProps {
4
- ref?: React.Ref<HTMLSpanElement>;
5
- }
6
- export declare const ListItemText: React.FC<ListItemTextProps>;
7
- export default ListItemText;
@@ -1,9 +0,0 @@
1
- import React from 'react';
2
- import { TitleProps } from '@digigov/ui/typography/Title';
3
- import { LinkProps } from '@digigov/ui/core/Link';
4
- export interface ListItemTitleProps extends TitleProps {
5
- href?: string;
6
- linkProps?: Omit<LinkProps, 'href'>;
7
- }
8
- export declare const ListItemTitle: React.FC<ListItemTitleProps>;
9
- export default ListItemTitle;
@@ -1,7 +0,0 @@
1
- export { List as default } from '@digigov/ui/core/List/List';
2
- export * from '@digigov/ui/core/List/List';
3
- export * from '@digigov/ui/core/List/ListItem';
4
- export * from '@digigov/ui/core/List/ListItemContent';
5
- export * from '@digigov/ui/core/List/ListItemTitle';
6
- export * from '@digigov/ui/core/List/ListItemText';
7
- export * from '@digigov/ui/core/List/ListItemIcon';
@@ -1,3 +0,0 @@
1
- import NavHorizontal from '@digigov/react-core/NavHorizontal';
2
- export { NavHorizontal };
3
- export default NavHorizontal;
@@ -1,3 +0,0 @@
1
- import NavHorizontalList from '@digigov/react-core/NavHorizontalList';
2
- export { NavHorizontalList };
3
- export default NavHorizontalList;
@@ -1,3 +0,0 @@
1
- import NavHorizontalListItem from '@digigov/react-core/NavHorizontalListItem';
2
- export { NavHorizontalListItem };
3
- export default NavHorizontalListItem;
@@ -1,4 +0,0 @@
1
- import React from 'react';
2
- import { NavListProps } from '@digigov/ui/core/NavList/types';
3
- export declare const NavList: React.FC<NavListProps>;
4
- export default NavList;
@@ -1,4 +0,0 @@
1
- import React from 'react';
2
- import { NavListProps } from '@digigov/ui/core/NavList/types';
3
- export declare const useNavListStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"vertical" | "root" | "subMenu" | "floating" | "floatClear">;
4
- export declare const NavListBase: React.FC<NavListProps>;
@@ -1,20 +0,0 @@
1
- import React from 'react';
2
- export interface NavLinkInterface {
3
- name?: string;
4
- label?: string;
5
- href?: string;
6
- children?: React.ReactNode;
7
- subMenu?: NavLinkInterface[];
8
- }
9
- export interface NavListContextInterface {
10
- openSubMenus?: boolean;
11
- horizontal?: boolean;
12
- showDividers?: boolean;
13
- links: NavLinkInterface[];
14
- activeLink?: NavLinkInterface;
15
- activeSubMenu?: NavLinkInterface[];
16
- onSubMenuActive?: (name: string) => void;
17
- }
18
- export declare const NavListContext: React.Context<NavListContextInterface>;
19
- export declare const NavListProvider: React.FC<NavListContextInterface>;
20
- export default NavListContext;