@digigov/form 0.8.2 → 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 (318) hide show
  1. package/CHANGELOG.md +17 -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/Checkboxes/index.js +1 -0
  58. package/es/inputs/FileInput/index.js +4 -6
  59. package/es/inputs/Input/index.js +2 -0
  60. package/es/inputs/Radio/index.js +4 -3
  61. package/es/inputs/Select/index.js +1 -0
  62. package/esm/Field/FieldBase.js +1 -0
  63. package/esm/Field/utils.js +5 -0
  64. package/esm/Form.stories.js +2 -1
  65. package/esm/__stories__/AutoCompleteField.js +45 -0
  66. package/esm/__stories__/IntField.js +2 -1
  67. package/esm/index.js +1 -1
  68. package/esm/inputs/AutoComplete/index.js +45 -0
  69. package/esm/inputs/Checkboxes/index.js +1 -0
  70. package/esm/inputs/FileInput/index.js +4 -6
  71. package/esm/inputs/Input/index.js +2 -0
  72. package/esm/inputs/Radio/index.js +4 -3
  73. package/esm/inputs/Select/index.js +1 -0
  74. package/{libs/form/src/index.d.ts → index.d.ts} +0 -0
  75. package/inputs/AutoComplete/index.d.ts +14 -0
  76. package/inputs/AutoComplete/index.js +68 -0
  77. package/{libs/form/src/inputs → inputs}/Checkboxes/index.d.ts +0 -0
  78. package/inputs/Checkboxes/index.js +1 -0
  79. package/{libs/form/src/inputs → inputs}/DateInput/index.d.ts +0 -0
  80. package/{libs/form/src/inputs → inputs}/FileInput/FileInput.stories.d.ts +0 -0
  81. package/{libs/form/src/inputs → inputs}/FileInput/__stories__/Default.d.ts +0 -0
  82. package/{libs/form/src/inputs → inputs}/FileInput/index.d.ts +0 -0
  83. package/inputs/FileInput/index.js +5 -8
  84. package/{libs/form/src/inputs → inputs}/Input/index.d.ts +0 -0
  85. package/inputs/Input/index.js +2 -0
  86. package/{libs/form/src/inputs → inputs}/Label/index.d.ts +0 -0
  87. package/{libs/form/src/inputs → inputs}/Radio/index.d.ts +0 -0
  88. package/inputs/Radio/index.js +4 -3
  89. package/{libs/form/src/inputs → inputs}/Select/index.d.ts +0 -0
  90. package/inputs/Select/index.js +1 -0
  91. package/{libs/form/src/inputs → inputs}/index.d.ts +0 -0
  92. package/{libs/form/src/internal.d.ts → internal.d.ts} +0 -0
  93. package/package.json +4 -3
  94. package/{libs/form/src/types.d.ts → types.d.ts} +0 -0
  95. package/{libs/form/src/utils.d.ts → utils.d.ts} +0 -0
  96. package/{libs/form/src/validators → validators}/index.d.ts +0 -0
  97. package/{libs/form/src/validators → validators}/types.d.ts +0 -0
  98. package/{libs/form/src/validators → validators}/utils/afm.d.ts +0 -0
  99. package/{libs/form/src/validators → validators}/utils/file.d.ts +0 -0
  100. package/{libs/form/src/validators → validators}/utils/iban.d.ts +0 -0
  101. package/{libs/form/src/validators → validators}/utils/index.d.ts +0 -0
  102. package/{libs/form/src/validators → validators}/utils/int.d.ts +0 -0
  103. package/{libs/form/src/validators → validators}/utils/number.d.ts +0 -0
  104. package/{libs/form/src/validators → validators}/utils/phone.d.ts +0 -0
  105. package/{libs/form/src/validators → validators}/utils/postal_code.d.ts +0 -0
  106. package/{libs/form/src/validators → validators}/utils/uuid4.d.ts +0 -0
  107. package/{libs/form/src/validators → validators}/validators.spec.d.ts +0 -0
  108. package/libs/ui/src/app/PageTitle.d.ts +0 -10
  109. package/libs/ui/src/app/i18n.d.ts +0 -12
  110. package/libs/ui/src/core/Accordion/index.d.ts +0 -23
  111. package/libs/ui/src/core/BackLink/index.d.ts +0 -3
  112. package/libs/ui/src/core/Base/index.d.ts +0 -3
  113. package/libs/ui/src/core/Blockquote/index.d.ts +0 -3
  114. package/libs/ui/src/core/Breadcrumbs/index.d.ts +0 -5
  115. package/libs/ui/src/core/Button/BackButton.d.ts +0 -3
  116. package/libs/ui/src/core/Button/ButtonLink.d.ts +0 -4
  117. package/libs/ui/src/core/Button/CallToAction.d.ts +0 -7
  118. package/libs/ui/src/core/Button/Icon.d.ts +0 -2
  119. package/libs/ui/src/core/Button/index.d.ts +0 -15
  120. package/libs/ui/src/core/Card/index.d.ts +0 -6
  121. package/libs/ui/src/core/Confirmation/index.d.ts +0 -5
  122. package/libs/ui/src/core/Details/index.d.ts +0 -5
  123. package/libs/ui/src/core/Divider/index.d.ts +0 -5
  124. package/libs/ui/src/core/ErrorSummary/index.d.ts +0 -3
  125. package/libs/ui/src/core/FileUpload/index.d.ts +0 -3
  126. package/libs/ui/src/core/Form/index.d.ts +0 -3
  127. package/libs/ui/src/core/Hidden/index.d.ts +0 -1
  128. package/libs/ui/src/core/Label/index.d.ts +0 -4
  129. package/libs/ui/src/core/Link/index.d.ts +0 -13
  130. package/libs/ui/src/core/List/List.d.ts +0 -3
  131. package/libs/ui/src/core/List/ListItem.d.ts +0 -3
  132. package/libs/ui/src/core/List/ListItemContent.d.ts +0 -6
  133. package/libs/ui/src/core/List/ListItemIcon.d.ts +0 -5
  134. package/libs/ui/src/core/List/ListItemText.d.ts +0 -7
  135. package/libs/ui/src/core/List/ListItemTitle.d.ts +0 -9
  136. package/libs/ui/src/core/List/index.d.ts +0 -7
  137. package/libs/ui/src/core/NavList/NavHorizontal.d.ts +0 -3
  138. package/libs/ui/src/core/NavList/NavHorizontalList.d.ts +0 -3
  139. package/libs/ui/src/core/NavList/NavHorizontalListItem.d.ts +0 -3
  140. package/libs/ui/src/core/NavList/NavList.d.ts +0 -4
  141. package/libs/ui/src/core/NavList/NavListBase.d.ts +0 -4
  142. package/libs/ui/src/core/NavList/NavListContext.d.ts +0 -20
  143. package/libs/ui/src/core/NavList/NavListItem.d.ts +0 -14
  144. package/libs/ui/src/core/NavList/NavListItemBase.d.ts +0 -17
  145. package/libs/ui/src/core/NavList/NavListSubMenu.d.ts +0 -8
  146. package/libs/ui/src/core/NavList/NavVertical.d.ts +0 -3
  147. package/libs/ui/src/core/NavList/NavVerticalItem.d.ts +0 -3
  148. package/libs/ui/src/core/NavList/index.d.ts +0 -10
  149. package/libs/ui/src/core/NavList/types.d.ts +0 -14
  150. package/libs/ui/src/core/NotificationBanner/index.d.ts +0 -18
  151. package/libs/ui/src/core/PhaseBanner/index.d.ts +0 -6
  152. package/libs/ui/src/core/ServiceBadge/index.d.ts +0 -8
  153. package/libs/ui/src/core/SkipLink/index.d.ts +0 -3
  154. package/libs/ui/src/core/SummaryList/index.d.ts +0 -7
  155. package/libs/ui/src/core/SvgIcon/index.d.ts +0 -10
  156. package/libs/ui/src/core/Table/TableFloatingScroll.d.ts +0 -2
  157. package/libs/ui/src/core/Table/index.d.ts +0 -10
  158. package/libs/ui/src/core/Tabs/index.d.ts +0 -16
  159. package/libs/ui/src/core/TextArea/index.d.ts +0 -3
  160. package/libs/ui/src/core/TextInput/index.d.ts +0 -3
  161. package/libs/ui/src/core/VisuallyHidden/index.d.ts +0 -3
  162. package/libs/ui/src/core/WarningText/index.d.ts +0 -3
  163. package/libs/ui/src/core/index.d.ts +0 -32
  164. package/libs/ui/src/hooks/useTogglableSections.d.ts +0 -19
  165. package/libs/ui/src/layouts/Grid/index.d.ts +0 -4
  166. package/libs/ui/src/locales/el.d.ts +0 -84
  167. package/libs/ui/src/router/index.d.ts +0 -9
  168. package/libs/ui/src/typography/Caption/index.d.ts +0 -8
  169. package/libs/ui/src/typography/NormalText/index.d.ts +0 -5
  170. package/libs/ui/src/typography/Paragraph/index.d.ts +0 -6
  171. package/libs/ui/src/typography/Title/index.d.ts +0 -10
  172. package/libs/ui/src/utils/withDeprecation.d.ts +0 -16
  173. package/libs-ui/react-core/src/Accordion/index.d.ts +0 -10
  174. package/libs-ui/react-core/src/AccordionControls/index.d.ts +0 -9
  175. package/libs-ui/react-core/src/AccordionSection/index.d.ts +0 -16
  176. package/libs-ui/react-core/src/AccordionSectionContent/index.d.ts +0 -10
  177. package/libs-ui/react-core/src/AccordionSectionHeader/index.d.ts +0 -9
  178. package/libs-ui/react-core/src/AccordionSectionSummary/index.d.ts +0 -10
  179. package/libs-ui/react-core/src/AccordionSectionSummaryHeading/index.d.ts +0 -9
  180. package/libs-ui/react-core/src/ArrowIcon/index.d.ts +0 -16
  181. package/libs-ui/react-core/src/Aside/index.d.ts +0 -10
  182. package/libs-ui/react-core/src/BackLink/index.d.ts +0 -13
  183. package/libs-ui/react-core/src/Base/index.d.ts +0 -43
  184. package/libs-ui/react-core/src/Blockquote/index.d.ts +0 -9
  185. package/libs-ui/react-core/src/Bottom/index.d.ts +0 -9
  186. package/libs-ui/react-core/src/Breadcrumbs/index.d.ts +0 -10
  187. package/libs-ui/react-core/src/BreadcrumbsList/index.d.ts +0 -9
  188. package/libs-ui/react-core/src/BreadcrumbsListItem/index.d.ts +0 -14
  189. package/libs-ui/react-core/src/BurgerIcon/index.d.ts +0 -28
  190. package/libs-ui/react-core/src/Button/index.d.ts +0 -25
  191. package/libs-ui/react-core/src/ButtonGroup/index.d.ts +0 -9
  192. package/libs-ui/react-core/src/ButtonLink/index.d.ts +0 -17
  193. package/libs-ui/react-core/src/CallToAction/index.d.ts +0 -10
  194. package/libs-ui/react-core/src/Card/index.d.ts +0 -29
  195. package/libs-ui/react-core/src/CardAction/index.d.ts +0 -11
  196. package/libs-ui/react-core/src/CardHeading/index.d.ts +0 -10
  197. package/libs-ui/react-core/src/CardText/index.d.ts +0 -10
  198. package/libs-ui/react-core/src/CaretIcon/index.d.ts +0 -16
  199. package/libs-ui/react-core/src/CheckIcon/index.d.ts +0 -15
  200. package/libs-ui/react-core/src/Checkbox/index.d.ts +0 -11
  201. package/libs-ui/react-core/src/CheckboxConditional/index.d.ts +0 -11
  202. package/libs-ui/react-core/src/CheckboxItem/index.d.ts +0 -19
  203. package/libs-ui/react-core/src/CloseIcon/index.d.ts +0 -16
  204. package/libs-ui/react-core/src/Confirmation/index.d.ts +0 -9
  205. package/libs-ui/react-core/src/ConfirmationBody/index.d.ts +0 -9
  206. package/libs-ui/react-core/src/ConfirmationTitle/index.d.ts +0 -9
  207. package/libs-ui/react-core/src/Container/index.d.ts +0 -17
  208. package/libs-ui/react-core/src/Copyright/index.d.ts +0 -10
  209. package/libs-ui/react-core/src/DateInput/index.d.ts +0 -12
  210. package/libs-ui/react-core/src/DateInputItem/index.d.ts +0 -25
  211. package/libs-ui/react-core/src/Details/index.d.ts +0 -10
  212. package/libs-ui/react-core/src/DetailsContent/index.d.ts +0 -10
  213. package/libs-ui/react-core/src/DetailsSummary/index.d.ts +0 -9
  214. package/libs-ui/react-core/src/ErrorMessage/index.d.ts +0 -11
  215. package/libs-ui/react-core/src/ErrorSummary/index.d.ts +0 -9
  216. package/libs-ui/react-core/src/Field/index.d.ts +0 -13
  217. package/libs-ui/react-core/src/Fieldset/index.d.ts +0 -10
  218. package/libs-ui/react-core/src/FieldsetLegend/index.d.ts +0 -19
  219. package/libs-ui/react-core/src/FileUpload/index.d.ts +0 -22
  220. package/libs-ui/react-core/src/Footer/index.d.ts +0 -9
  221. package/libs-ui/react-core/src/FooterContainer/index.d.ts +0 -16
  222. package/libs-ui/react-core/src/FooterContent/index.d.ts +0 -10
  223. package/libs-ui/react-core/src/FooterContentLogos/index.d.ts +0 -11
  224. package/libs-ui/react-core/src/FooterHeading/index.d.ts +0 -15
  225. package/libs-ui/react-core/src/FooterImage/index.d.ts +0 -15
  226. package/libs-ui/react-core/src/FooterInlineList/index.d.ts +0 -11
  227. package/libs-ui/react-core/src/FooterInlineListItem/index.d.ts +0 -9
  228. package/libs-ui/react-core/src/FooterLink/index.d.ts +0 -13
  229. package/libs-ui/react-core/src/FooterList/index.d.ts +0 -15
  230. package/libs-ui/react-core/src/FooterListItem/index.d.ts +0 -10
  231. package/libs-ui/react-core/src/FooterMeta/index.d.ts +0 -11
  232. package/libs-ui/react-core/src/FooterMetaItem/index.d.ts +0 -14
  233. package/libs-ui/react-core/src/FooterNavigation/index.d.ts +0 -11
  234. package/libs-ui/react-core/src/FooterSection/index.d.ts +0 -11
  235. package/libs-ui/react-core/src/Form/index.d.ts +0 -11
  236. package/libs-ui/react-core/src/GovGRFooter/index.d.ts +0 -9
  237. package/libs-ui/react-core/src/GovGRLogo/govgr-logo-base64.d.ts +0 -2
  238. package/libs-ui/react-core/src/GovGRLogo/index.d.ts +0 -9
  239. package/libs-ui/react-core/src/Grid/index.d.ts +0 -20
  240. package/libs-ui/react-core/src/Header/index.d.ts +0 -10
  241. package/libs-ui/react-core/src/HeaderContent/index.d.ts +0 -9
  242. package/libs-ui/react-core/src/HeaderLogo/index.d.ts +0 -21
  243. package/libs-ui/react-core/src/HeaderSecondaryLogo/index.d.ts +0 -21
  244. package/libs-ui/react-core/src/HeaderSection/index.d.ts +0 -9
  245. package/libs-ui/react-core/src/HeaderSubtitle/index.d.ts +0 -9
  246. package/libs-ui/react-core/src/HeaderTitle/index.d.ts +0 -13
  247. package/libs-ui/react-core/src/Heading/index.d.ts +0 -21
  248. package/libs-ui/react-core/src/HeadingCaption/index.d.ts +0 -15
  249. package/libs-ui/react-core/src/HellenicRepublicLogo/index.d.ts +0 -20
  250. package/libs-ui/react-core/src/HellenicRepublicLogo/logo-el.d.ts +0 -2
  251. package/libs-ui/react-core/src/HellenicRepublicLogo/logo-en.d.ts +0 -2
  252. package/libs-ui/react-core/src/Hidden/index.d.ts +0 -17
  253. package/libs-ui/react-core/src/Hint/index.d.ts +0 -14
  254. package/libs-ui/react-core/src/Label/index.d.ts +0 -9
  255. package/libs-ui/react-core/src/LabelTitle/index.d.ts +0 -19
  256. package/libs-ui/react-core/src/Layout/index.d.ts +0 -10
  257. package/libs-ui/react-core/src/Link/index.d.ts +0 -14
  258. package/libs-ui/react-core/src/List/index.d.ts +0 -18
  259. package/libs-ui/react-core/src/ListItem/index.d.ts +0 -9
  260. package/libs-ui/react-core/src/Main/index.d.ts +0 -9
  261. package/libs-ui/react-core/src/Masthead/index.d.ts +0 -9
  262. package/libs-ui/react-core/src/MastheadBody/index.d.ts +0 -9
  263. package/libs-ui/react-core/src/MoreVertIcon/index.d.ts +0 -15
  264. package/libs-ui/react-core/src/NavHorizontal/index.d.ts +0 -16
  265. package/libs-ui/react-core/src/NavHorizontalList/index.d.ts +0 -10
  266. package/libs-ui/react-core/src/NavHorizontalListItem/index.d.ts +0 -18
  267. package/libs-ui/react-core/src/NavVertical/index.d.ts +0 -11
  268. package/libs-ui/react-core/src/NavVerticalItem/index.d.ts +0 -14
  269. package/libs-ui/react-core/src/NormalText/index.d.ts +0 -28
  270. package/libs-ui/react-core/src/NotificationBanner/index.d.ts +0 -17
  271. package/libs-ui/react-core/src/NotificationBannerContent/index.d.ts +0 -12
  272. package/libs-ui/react-core/src/NotificationBannerHeader/index.d.ts +0 -11
  273. package/libs-ui/react-core/src/NotificationBannerHeading/index.d.ts +0 -11
  274. package/libs-ui/react-core/src/NotificationBannerLink/index.d.ts +0 -15
  275. package/libs-ui/react-core/src/PageTitle/index.d.ts +0 -9
  276. package/libs-ui/react-core/src/PageTitleCaption/index.d.ts +0 -14
  277. package/libs-ui/react-core/src/PageTitleHeading/index.d.ts +0 -13
  278. package/libs-ui/react-core/src/PageTitleSection/index.d.ts +0 -10
  279. package/libs-ui/react-core/src/Paragraph/index.d.ts +0 -26
  280. package/libs-ui/react-core/src/PhaseBanner/index.d.ts +0 -15
  281. package/libs-ui/react-core/src/PhaseBannerHeaderContainer/index.d.ts +0 -8
  282. package/libs-ui/react-core/src/PhaseBannerTag/index.d.ts +0 -9
  283. package/libs-ui/react-core/src/PhaseBannerText/index.d.ts +0 -11
  284. package/libs-ui/react-core/src/Radio/index.d.ts +0 -14
  285. package/libs-ui/react-core/src/RadioConditional/index.d.ts +0 -11
  286. package/libs-ui/react-core/src/RadioItem/index.d.ts +0 -18
  287. package/libs-ui/react-core/src/SectionBreak/index.d.ts +0 -18
  288. package/libs-ui/react-core/src/Select/index.d.ts +0 -14
  289. package/libs-ui/react-core/src/SelectOption/index.d.ts +0 -18
  290. package/libs-ui/react-core/src/ServiceBadge/index.d.ts +0 -11
  291. package/libs-ui/react-core/src/SkipLink/index.d.ts +0 -10
  292. package/libs-ui/react-core/src/SummaryList/index.d.ts +0 -16
  293. package/libs-ui/react-core/src/SummaryListItem/index.d.ts +0 -10
  294. package/libs-ui/react-core/src/SummaryListItemAction/index.d.ts +0 -10
  295. package/libs-ui/react-core/src/SummaryListItemKey/index.d.ts +0 -10
  296. package/libs-ui/react-core/src/SummaryListItemValue/index.d.ts +0 -9
  297. package/libs-ui/react-core/src/SvgIcon/index.d.ts +0 -20
  298. package/libs-ui/react-core/src/Table/index.d.ts +0 -34
  299. package/libs-ui/react-core/src/TableBody/index.d.ts +0 -9
  300. package/libs-ui/react-core/src/TableCaption/index.d.ts +0 -15
  301. package/libs-ui/react-core/src/TableContainer/index.d.ts +0 -13
  302. package/libs-ui/react-core/src/TableDataCell/index.d.ts +0 -15
  303. package/libs-ui/react-core/src/TableHead/index.d.ts +0 -9
  304. package/libs-ui/react-core/src/TableHeadCell/index.d.ts +0 -21
  305. package/libs-ui/react-core/src/TableNoDataRow/index.d.ts +0 -10
  306. package/libs-ui/react-core/src/TableRow/index.d.ts +0 -9
  307. package/libs-ui/react-core/src/Tabs/index.d.ts +0 -10
  308. package/libs-ui/react-core/src/TabsHeading/index.d.ts +0 -15
  309. package/libs-ui/react-core/src/TabsList/index.d.ts +0 -10
  310. package/libs-ui/react-core/src/TabsListItem/index.d.ts +0 -20
  311. package/libs-ui/react-core/src/TabsPanel/index.d.ts +0 -16
  312. package/libs-ui/react-core/src/TextArea/index.d.ts +0 -23
  313. package/libs-ui/react-core/src/TextInput/index.d.ts +0 -28
  314. package/libs-ui/react-core/src/Top/index.d.ts +0 -9
  315. package/libs-ui/react-core/src/UncheckIcon/index.d.ts +0 -15
  316. package/libs-ui/react-core/src/VisuallyHidden/index.d.ts +0 -10
  317. package/libs-ui/react-core/src/WarningText/index.d.ts +0 -11
  318. package/libs-ui/react-core/src/index.d.ts +0 -141
@@ -1,20 +0,0 @@
1
- import React from 'react';
2
- import { BaseProps } from '@digigov/react-core/Base';
3
- export interface TabsListItemProps extends BaseProps<'a'> {
4
- /**
5
- * selected is optional.
6
- * Exaclty one TabsListItem should be selected every time.
7
- * This declares that this tab is selected.
8
- */
9
- selected?: boolean;
10
- /**
11
- * href is optional.
12
- */
13
- href?: string;
14
- }
15
- /**
16
- * TabsListItem should be inside the TabsList.
17
- * In here we declare the title of the tab.
18
- */
19
- export declare const TabsListItem: React.ForwardRefExoticComponent<Pick<TabsListItemProps, "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" | "selected" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden"> & React.RefAttributes<HTMLAnchorElement>>;
20
- export default TabsListItem;
@@ -1,16 +0,0 @@
1
- import React from 'react';
2
- import { BaseProps } from '@digigov/react-core/Base';
3
- export interface TabsPanelProps extends BaseProps<'div'> {
4
- /**
5
- * active is optional.
6
- * Exaclty one TabsPanel should be active every time.
7
- * This declares that this content is active and should depend of the 'selected' TabsList.
8
- */
9
- active?: boolean;
10
- }
11
- /**
12
- * TabsPanel is inside the Tabs component.
13
- * Every TabsListItem relates to a TabsPanel.
14
- */
15
- export declare const TabsPanel: React.ForwardRefExoticComponent<Pick<TabsPanelProps, "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" | "active"> & React.RefAttributes<HTMLDivElement>>;
16
- export default TabsPanel;
@@ -1,23 +0,0 @@
1
- import React from 'react';
2
- import { BaseProps } from '@digigov/react-core/Base';
3
- export interface TextAreaProps extends BaseProps<'textarea'> {
4
- /**
5
- * name is optional but strongly recommended.
6
- */
7
- name?: string;
8
- /**
9
- * row is optional. The default value is 6.
10
- */
11
- rows?: 4 | 5 | 6 | 7 | 8;
12
- /**
13
- * error is optional. The default value is false.
14
- * Use this prop when there is an error at the input.
15
- */
16
- error?: boolean;
17
- }
18
- /**
19
- * Textarea component is used when you need to let users enter an
20
- * amount of text that’s longer than a single line.
21
- */
22
- export declare const TextArea: React.ForwardRefExoticComponent<Pick<TextAreaProps, "form" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "name" | "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" | "value" | "autoComplete" | "maxLength" | "minLength" | "readOnly" | "required" | "cols" | "dirName" | "rows" | "wrap" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden" | "error"> & React.RefAttributes<HTMLTextAreaElement>>;
23
- export default TextArea;
@@ -1,28 +0,0 @@
1
- import React from 'react';
2
- import { BaseProps } from '@digigov/react-core/Base';
3
- export interface TextInputProps extends BaseProps<'input'> {
4
- /**
5
- * name is optional but strongly recommended.
6
- */
7
- name?: string;
8
- /**
9
- * characterWidth is optional.
10
- */
11
- characterWidth?: 2 | 3 | 4 | 5 | 10 | 20;
12
- /**
13
- * cellWidth is optional.
14
- * Use cellWidth prop to define a custom width for a specific reference number in your components.
15
- */
16
- cellWidth?: 'one-quarter' | 'one-third' | 'one-half' | 'two-thirds' | 'three-quarters' | 'full';
17
- /**
18
- * error is optional. The default value is false.
19
- * Use this prop when there is an error at the input.
20
- */
21
- error?: boolean;
22
- }
23
- /**
24
- * TextInput component when you need to let users enter text that’s no
25
- * longer than a single line, such as their name or phone number.
26
- */
27
- export declare const TextInput: React.ForwardRefExoticComponent<Pick<TextInputProps, "form" | "slot" | "style" | "title" | "pattern" | "as" | "className" | "color" | "height" | "id" | "lang" | "max" | "min" | "name" | "type" | "width" | "role" | "tabIndex" | "crossOrigin" | "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" | "alt" | "src" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value" | "autoComplete" | "accept" | "capture" | "checked" | "list" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "size" | "step" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden" | "error" | "characterWidth" | "cellWidth"> & React.RefAttributes<HTMLInputElement>>;
28
- export default TextInput;
@@ -1,9 +0,0 @@
1
- import React from 'react';
2
- import { BaseProps } from '@digigov/react-core/Base';
3
- export interface TopProps extends BaseProps<'div'> {
4
- }
5
- /**
6
- * Top is used inside the Layout component and it must be the first component in order.
7
- */
8
- export declare const Top: React.ForwardRefExoticComponent<Pick<TopProps, "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>>;
9
- export default Top;
@@ -1,15 +0,0 @@
1
- import React from 'react';
2
- import { SvgIconProps } from '@digigov/react-core/SvgIcon';
3
- export interface UncheckIconProps extends SvgIconProps {
4
- /**
5
- * ref is optional.
6
- * ref prop declares the reference of the svg icon component.
7
- * It can be used to to access the DOM element and the React element.
8
- */
9
- ref?: React.Ref<SVGSVGElement>;
10
- }
11
- /**
12
- * Use UnUncheckIcon component when you need a uncheck/decline icon.
13
- */
14
- export declare const UncheckIcon: React.FC<UncheckIconProps>;
15
- export default UncheckIcon;
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
- import { BaseProps } from '@digigov/react-core/Base';
3
- export interface VisuallyHiddenProps extends BaseProps<'span'> {
4
- }
5
- /**
6
- * Details for the VisuallyHidden.
7
- * VisuallyHidden component provides text for screen readers that is visually hidden.
8
- */
9
- export declare const VisuallyHidden: React.ForwardRefExoticComponent<Pick<VisuallyHiddenProps, "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<HTMLSpanElement>>;
10
- export default VisuallyHidden;
@@ -1,11 +0,0 @@
1
- import React from 'react';
2
- import { BaseProps } from '@digigov/react-core/Base';
3
- export interface WarningTextProps extends BaseProps<'div'> {
4
- }
5
- /**
6
- * WarningText.
7
- * Use the WarningText component when you need to warn users about something important.
8
- * The component is used with a text inside it.
9
- */
10
- export declare const WarningText: React.ForwardRefExoticComponent<Pick<WarningTextProps, "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 default WarningText;
@@ -1,141 +0,0 @@
1
- export { default as Accordion } from '@digigov/react-core/Accordion';
2
- export { default as AccordionControls } from '@digigov/react-core/AccordionControls';
3
- export { default as AccordionSection } from '@digigov/react-core/AccordionSection';
4
- export { default as AccordionSectionContent } from '@digigov/react-core/AccordionSectionContent';
5
- export { default as AccordionSectionHeader } from '@digigov/react-core/AccordionSectionHeader';
6
- export { default as AccordionSectionSummary } from '@digigov/react-core/AccordionSectionSummary';
7
- export { default as AccordionSectionSummaryHeading } from '@digigov/react-core/AccordionSectionSummaryHeading';
8
- export { default as ArrowIcon } from '@digigov/react-core/ArrowIcon';
9
- export { default as Aside } from '@digigov/react-core/Aside';
10
- export { default as BackLink } from '@digigov/react-core/BackLink';
11
- export { default as Blockquote } from '@digigov/react-core/Blockquote';
12
- export { default as Bottom } from '@digigov/react-core/Bottom';
13
- export { default as Breadcrumbs } from '@digigov/react-core/Breadcrumbs';
14
- export { default as BreadcrumbsList } from '@digigov/react-core/BreadcrumbsList';
15
- export { default as BreadcrumbsListItem } from '@digigov/react-core/BreadcrumbsListItem';
16
- export { default as BurgerIcon } from '@digigov/react-core/BurgerIcon';
17
- export { default as Button } from '@digigov/react-core/Button';
18
- export { default as ButtonGroup } from '@digigov/react-core/ButtonGroup';
19
- export { default as ButtonLink } from '@digigov/react-core/ButtonLink';
20
- export { default as CallToAction } from '@digigov/react-core/CallToAction';
21
- export { default as Card } from '@digigov/react-core/Card';
22
- export { default as CardAction } from '@digigov/react-core/CardAction';
23
- export { default as CardHeading } from '@digigov/react-core/CardHeading';
24
- export { default as CardText } from '@digigov/react-core/CardText';
25
- export { default as CaretIcon } from '@digigov/react-core/CaretIcon';
26
- export { default as Checkbox } from '@digigov/react-core/Checkbox';
27
- export { default as CheckboxConditional } from '@digigov/react-core/CheckboxConditional';
28
- export { default as CheckboxItem } from '@digigov/react-core/CheckboxItem';
29
- export { default as CheckIcon } from '@digigov/react-core/CheckIcon';
30
- export { default as UncheckIcon } from '@digigov/react-core/UncheckIcon';
31
- export { default as CloseIcon } from '@digigov/react-core/CloseIcon';
32
- export { default as Confirmation } from '@digigov/react-core/Confirmation';
33
- export { default as ConfirmationBody } from '@digigov/react-core/ConfirmationBody';
34
- export { default as ConfirmationTitle } from '@digigov/react-core/ConfirmationTitle';
35
- export { default as Container } from '@digigov/react-core/Container';
36
- export { default as Copyright } from '@digigov/react-core/Copyright';
37
- export { default as DateInput } from '@digigov/react-core/DateInput';
38
- export { default as DateInputItem } from '@digigov/react-core/DateInputItem';
39
- export { default as Details } from '@digigov/react-core/Details';
40
- export { default as DetailsContent } from '@digigov/react-core/DetailsContent';
41
- export { default as DetailsSummary } from '@digigov/react-core/DetailsSummary';
42
- export { default as ErrorMessage } from '@digigov/react-core/ErrorMessage';
43
- export { default as ErrorSummary } from '@digigov/react-core/ErrorSummary';
44
- export { default as Fieldset } from '@digigov/react-core/Fieldset';
45
- export { default as FieldsetLegend } from '@digigov/react-core/FieldsetLegend';
46
- export { default as FileUpload } from '@digigov/react-core/FileUpload';
47
- export { default as Footer } from '@digigov/react-core/Footer';
48
- export { default as FooterContainer } from '@digigov/react-core/FooterContainer';
49
- export { default as FooterContent } from '@digigov/react-core/FooterContent';
50
- export { default as FooterContentLogos } from '@digigov/react-core/FooterContentLogos';
51
- export { default as FooterHeading } from '@digigov/react-core/FooterHeading';
52
- export { default as FooterImage } from '@digigov/react-core/FooterImage';
53
- export { default as FooterInlineList } from '@digigov/react-core/FooterInlineList';
54
- export { default as FooterInlineListItem } from '@digigov/react-core/FooterInlineListItem';
55
- export { default as FooterLink } from '@digigov/react-core/FooterLink';
56
- export { default as FooterList } from '@digigov/react-core/FooterList';
57
- export { default as FooterListItem } from '@digigov/react-core/FooterListItem';
58
- export { default as FooterMeta } from '@digigov/react-core/FooterMeta';
59
- export { default as FooterMetaItem } from '@digigov/react-core/FooterMetaItem';
60
- export { default as FooterNavigation } from '@digigov/react-core/FooterNavigation';
61
- export { default as FooterSection } from '@digigov/react-core/FooterSection';
62
- export { default as Field } from '@digigov/react-core/Field';
63
- export { default as GovGRFooter } from '@digigov/react-core/GovGRFooter';
64
- export { default as GovGRLogo } from '@digigov/react-core/GovGRLogo';
65
- export { default as Grid } from '@digigov/react-core/Grid';
66
- export { default as Header } from '@digigov/react-core/Header';
67
- export { default as HeaderContent } from '@digigov/react-core/HeaderContent';
68
- export { default as HeaderLogo } from '@digigov/react-core/HeaderLogo';
69
- export { default as HeaderSecondaryLogo } from '@digigov/react-core/HeaderSecondaryLogo';
70
- export { default as HeaderSection } from '@digigov/react-core/HeaderSection';
71
- export { default as HeaderSubtitle } from '@digigov/react-core/HeaderSubtitle';
72
- export { default as HeaderTitle } from '@digigov/react-core/HeaderTitle';
73
- export { default as Heading } from '@digigov/react-core/Heading';
74
- export { default as HeadingCaption } from '@digigov/react-core/HeadingCaption';
75
- export { default as HellenicRepublicLogo } from '@digigov/react-core/HellenicRepublicLogo';
76
- export { default as Hidden } from '@digigov/react-core/Hidden';
77
- export { default as Hint } from '@digigov/react-core/Hint';
78
- export { default as Label } from '@digigov/react-core/Label';
79
- export { default as LabelTitle } from '@digigov/react-core/LabelTitle';
80
- export { default as Layout } from '@digigov/react-core/Layout';
81
- export { default as Link } from '@digigov/react-core/Link';
82
- export { default as List } from '@digigov/react-core/List';
83
- export { default as ListItem } from '@digigov/react-core/ListItem';
84
- export { default as Main } from '@digigov/react-core/Main';
85
- export { default as Masthead } from '@digigov/react-core/Masthead';
86
- export { default as MastheadBody } from '@digigov/react-core/MastheadBody';
87
- export { default as MoreVertIcon } from '@digigov/react-core/MoreVertIcon';
88
- export { default as NavHorizontal } from '@digigov/react-core/NavHorizontal';
89
- export { default as NavHorizontalList } from '@digigov/react-core/NavHorizontalList';
90
- export { default as NavHorizontalListItem } from '@digigov/react-core/NavHorizontalListItem';
91
- export { default as NavVertical } from '@digigov/react-core/NavVertical';
92
- export { default as NavVerticalItem } from '@digigov/react-core/NavVerticalItem';
93
- export { default as NormalText } from '@digigov/react-core/NormalText';
94
- export { default as NotificationBanner } from '@digigov/react-core/NotificationBanner';
95
- export { default as NotificationBannerContent } from '@digigov/react-core/NotificationBannerContent';
96
- export { default as NotificationBannerHeader } from '@digigov/react-core/NotificationBannerHeader';
97
- export { default as NotificationBannerHeading } from '@digigov/react-core/NotificationBannerHeading';
98
- export { default as NotificationBannerLink } from '@digigov/react-core/NotificationBannerLink';
99
- export { default as PageTitle } from '@digigov/react-core/PageTitle';
100
- export { default as PageTitleCaption } from '@digigov/react-core/PageTitleCaption';
101
- export { default as PageTitleHeading } from '@digigov/react-core/PageTitleHeading';
102
- export { default as PageTitleSection } from '@digigov/react-core/PageTitleSection';
103
- export { default as Paragraph } from '@digigov/react-core/Paragraph';
104
- export { default as PhaseBannerHeaderContainer } from '@digigov/react-core/PhaseBannerHeaderContainer';
105
- export { default as PhaseBanner } from '@digigov/react-core/PhaseBanner';
106
- export { default as PhaseBannerTag } from '@digigov/react-core/PhaseBannerTag';
107
- export { default as PhaseBannerText } from '@digigov/react-core/PhaseBannerText';
108
- export { default as Radio } from '@digigov/react-core/Radio';
109
- export { default as RadioItem } from '@digigov/react-core/RadioItem';
110
- export { default as RadioConditional } from '@digigov/react-core/RadioConditional';
111
- export { default as SectionBreak } from '@digigov/react-core/SectionBreak';
112
- export { default as Select } from '@digigov/react-core/Select';
113
- export { default as SelectOption } from '@digigov/react-core/SelectOption';
114
- export { default as ServiceBadge } from '@digigov/react-core/ServiceBadge';
115
- export { default as SkipLink } from '@digigov/react-core/SkipLink';
116
- export { default as SummaryList } from '@digigov/react-core/SummaryList';
117
- export { default as SummaryListItem } from '@digigov/react-core/SummaryListItem';
118
- export { default as SummaryListItemAction } from '@digigov/react-core/SummaryListItemAction';
119
- export { default as SummaryListItemKey } from '@digigov/react-core/SummaryListItemKey';
120
- export { default as SummaryListItemValue } from '@digigov/react-core/SummaryListItemValue';
121
- export { default as SvgIcon } from '@digigov/react-core/SvgIcon';
122
- export { default as Table } from '@digigov/react-core/Table';
123
- export { default as TableBody } from '@digigov/react-core/TableBody';
124
- export { default as TableCaption } from '@digigov/react-core/TableCaption';
125
- export { default as TableContainer } from '@digigov/react-core/TableContainer';
126
- export { default as TableDataCell } from '@digigov/react-core/TableDataCell';
127
- export { default as TableNoDataRow } from '@digigov/react-core/TableNoDataRow';
128
- export { default as TableHead } from '@digigov/react-core/TableHead';
129
- export { default as TableHeadCell } from '@digigov/react-core/TableHeadCell';
130
- export { default as TableRow } from '@digigov/react-core/TableRow';
131
- export { default as Tabs } from '@digigov/react-core/Tabs';
132
- export { default as TabsHeading } from '@digigov/react-core/TabsHeading';
133
- export { default as TabsList } from '@digigov/react-core/TabsList';
134
- export { default as TabsListItem } from '@digigov/react-core/TabsListItem';
135
- export { default as TabsPanel } from '@digigov/react-core/TabsPanel';
136
- export { default as TextArea } from '@digigov/react-core/TextArea';
137
- export { default as TextInput } from '@digigov/react-core/TextInput';
138
- export { default as Top } from '@digigov/react-core/Top';
139
- export { default as Base } from '@digigov/react-core/Base';
140
- export { default as VisuallyHidden } from '@digigov/react-core/VisuallyHidden';
141
- export { default as WarningText } from '@digigov/react-core/WarningText';