@digigov/form 0.4.6 → 0.4.10

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 (110) hide show
  1. package/CHANGELOG.md +28 -1
  2. package/Field/index.js +35 -45
  3. package/Fieldset/index.js +10 -14
  4. package/Questions/Step/index.js +1 -0
  5. package/es/Field/index.js +29 -41
  6. package/es/Fieldset/index.js +9 -14
  7. package/es/Questions/Step/index.js +2 -0
  8. package/es/index.js +2 -0
  9. package/es/index.mdx +0 -3
  10. package/es/inputs/Checkboxes/index.js +19 -51
  11. package/es/inputs/FileInput/index.js +8 -42
  12. package/es/inputs/Input/index.js +24 -18
  13. package/es/inputs/Label/index.js +6 -34
  14. package/es/inputs/Radio/index.js +24 -87
  15. package/es/inputs/Select/index.js +10 -31
  16. package/es/utils.js +1 -0
  17. package/es/validators.js +4 -4
  18. package/esm/Field/index.js +29 -41
  19. package/esm/Fieldset/index.js +9 -14
  20. package/esm/Questions/Step/index.js +2 -0
  21. package/esm/index.js +3 -1
  22. package/esm/index.mdx +0 -3
  23. package/esm/inputs/Checkboxes/index.js +19 -51
  24. package/esm/inputs/FileInput/index.js +8 -42
  25. package/esm/inputs/Input/index.js +24 -18
  26. package/esm/inputs/Label/index.js +6 -34
  27. package/esm/inputs/Radio/index.js +24 -87
  28. package/esm/inputs/Select/index.js +10 -31
  29. package/esm/utils.js +1 -0
  30. package/esm/validators.js +4 -4
  31. package/index.js +1 -0
  32. package/index.mdx +0 -3
  33. package/inputs/Checkboxes/index.js +19 -53
  34. package/inputs/FileInput/index.js +8 -45
  35. package/inputs/Input/index.js +25 -18
  36. package/inputs/Label/index.js +6 -37
  37. package/inputs/Radio/index.js +26 -95
  38. package/inputs/Select/index.js +10 -34
  39. package/libs/form/src/Field/index.d.ts +10 -7
  40. package/libs/form/src/Fieldset/index.d.ts +9 -3
  41. package/libs/form/src/index.d.ts +1 -0
  42. package/libs/form/src/inputs/Checkboxes/index.d.ts +2 -1
  43. package/libs/form/src/inputs/Input/index.d.ts +1 -1
  44. package/libs/form/src/inputs/Radio/index.d.ts +1 -11
  45. package/libs/form/src/validators.d.ts +4 -2
  46. package/libs/ui/src/core/Accordion/index.d.ts +3 -3
  47. package/libs/ui/src/core/Blockquote/index.d.ts +1 -1
  48. package/libs/ui/src/core/Button/BackButton.d.ts +1 -1
  49. package/libs/ui/src/core/Button/ButtonLink.d.ts +1 -1
  50. package/libs/ui/src/core/Button/index.d.ts +1 -1
  51. package/libs/ui/src/core/NavList/NavList.d.ts +1 -1
  52. package/libs/ui/src/core/NavList/NavListItemBase.d.ts +1 -1
  53. package/libs/ui/src/typography/Caption.d.ts +1 -1
  54. package/libs-ui/react-core/src/Accordion/index.d.ts +1 -1
  55. package/libs-ui/react-core/src/AccordionControls/index.d.ts +1 -1
  56. package/libs-ui/react-core/src/AccordionSection/index.d.ts +1 -1
  57. package/libs-ui/react-core/src/AccordionSectionContent/index.d.ts +1 -1
  58. package/libs-ui/react-core/src/AccordionSectionHeader/index.d.ts +1 -1
  59. package/libs-ui/react-core/src/BackLink/index.d.ts +1 -1
  60. package/libs-ui/react-core/src/Blockquote/index.d.ts +1 -1
  61. package/libs-ui/react-core/src/Button/index.d.ts +1 -1
  62. package/libs-ui/react-core/src/ButtonLink/index.d.ts +1 -1
  63. package/libs-ui/react-core/src/CallToAction/index.d.ts +1 -1
  64. package/libs-ui/react-core/src/Checkbox/index.d.ts +11 -0
  65. package/libs-ui/react-core/src/CheckboxItem/index.d.ts +19 -0
  66. package/libs-ui/react-core/src/Details/index.d.ts +1 -1
  67. package/libs-ui/react-core/src/DetailsContent/index.d.ts +1 -1
  68. package/libs-ui/react-core/src/DetailsSummary/index.d.ts +1 -1
  69. package/libs-ui/react-core/src/ErrorMessage/index.d.ts +11 -0
  70. package/libs-ui/react-core/src/ErrorSummary/index.d.ts +1 -1
  71. package/libs-ui/react-core/src/Field/index.d.ts +13 -0
  72. package/libs-ui/react-core/src/Fieldset/index.d.ts +10 -0
  73. package/libs-ui/react-core/src/FieldsetLegend/index.d.ts +19 -0
  74. package/libs-ui/react-core/src/FileUpload/index.d.ts +14 -0
  75. package/libs-ui/react-core/src/Heading/index.d.ts +1 -1
  76. package/libs-ui/react-core/src/HeadingCaption/index.d.ts +1 -1
  77. package/libs-ui/react-core/src/Hint/index.d.ts +9 -0
  78. package/libs-ui/react-core/src/Label/index.d.ts +9 -0
  79. package/libs-ui/react-core/src/LabelTitle/index.d.ts +19 -0
  80. package/libs-ui/react-core/src/List/index.d.ts +1 -1
  81. package/libs-ui/react-core/src/ListItem/index.d.ts +1 -1
  82. package/libs-ui/react-core/src/NormalText/index.d.ts +1 -1
  83. package/libs-ui/react-core/src/NotificationBanner/index.d.ts +1 -1
  84. package/libs-ui/react-core/src/NotificationBannerContent/index.d.ts +1 -1
  85. package/libs-ui/react-core/src/NotificationBannerHeader/index.d.ts +1 -1
  86. package/libs-ui/react-core/src/NotificationBannerHeading/index.d.ts +1 -1
  87. package/libs-ui/react-core/src/Paragraph/index.d.ts +1 -1
  88. package/libs-ui/react-core/src/PhaseBanner/index.d.ts +1 -1
  89. package/libs-ui/react-core/src/PhaseBannerTag/index.d.ts +1 -1
  90. package/libs-ui/react-core/src/Radio/index.d.ts +10 -0
  91. package/libs-ui/react-core/src/RadioItem/index.d.ts +18 -0
  92. package/libs-ui/react-core/src/SectionBreak/index.d.ts +1 -1
  93. package/libs-ui/react-core/src/Select/index.d.ts +14 -0
  94. package/libs-ui/react-core/src/SelectOption/index.d.ts +18 -0
  95. package/libs-ui/react-core/src/SummaryList/index.d.ts +1 -1
  96. package/libs-ui/react-core/src/SummaryListItem/index.d.ts +1 -1
  97. package/libs-ui/react-core/src/SummaryListItemAction/index.d.ts +1 -1
  98. package/libs-ui/react-core/src/SummaryListItemKey/index.d.ts +1 -1
  99. package/libs-ui/react-core/src/SummaryListItemValue/index.d.ts +1 -1
  100. package/libs-ui/react-core/src/Tabs/index.d.ts +1 -1
  101. package/libs-ui/react-core/src/TabsHeading/index.d.ts +1 -1
  102. package/libs-ui/react-core/src/TabsList/index.d.ts +1 -1
  103. package/libs-ui/react-core/src/TabsListItem/index.d.ts +1 -1
  104. package/libs-ui/react-core/src/TabsPanel/index.d.ts +1 -1
  105. package/libs-ui/react-core/src/TextArea/index.d.ts +23 -0
  106. package/libs-ui/react-core/src/TextInput/index.d.ts +28 -0
  107. package/libs-ui/react-core/src/WarningText/index.d.ts +1 -1
  108. package/package.json +2 -2
  109. package/utils.js +1 -0
  110. package/validators.js +4 -4
@@ -13,7 +13,9 @@ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/h
13
13
 
14
14
  var _react = _interopRequireDefault(require("react"));
15
15
 
16
- var _TextField = _interopRequireDefault(require("@material-ui/core/TextField"));
16
+ var _TextInput = _interopRequireDefault(require("@digigov/react-core/TextInput"));
17
+
18
+ var _TextArea = _interopRequireDefault(require("@digigov/react-core/TextArea"));
17
19
 
18
20
  var _excluded = ["name", "type", "extra"];
19
21
  var TYPES_MAP = {
@@ -30,11 +32,12 @@ var Input = /*#__PURE__*/_react["default"].forwardRef(function WrappedInput(_ref
30
32
  props = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
31
33
 
32
34
  var _ref2 = extra || {},
33
- multiline = _ref2.multiline,
34
- rows = _ref2.rows,
35
- _ref2$fullWidth = _ref2.fullWidth,
36
- fullWidth = _ref2$fullWidth === void 0 ? true : _ref2$fullWidth,
37
- className = _ref2.className; // if enforced to multiline use true. Derive from type otherwise.
35
+ _ref2$multiline = _ref2.multiline,
36
+ multiline = _ref2$multiline === void 0 ? false : _ref2$multiline,
37
+ rows = _ref2.rows;
38
+
39
+ var _ref3 = extra || {},
40
+ className = _ref3.className; // if enforced to multiline use true. Derive from type otherwise.
38
41
 
39
42
 
40
43
  multiline = multiline === true || type === 'text'; // use explicit rows value if set. Derive from multiline otherwise.
@@ -42,18 +45,22 @@ var Input = /*#__PURE__*/_react["default"].forwardRef(function WrappedInput(_ref
42
45
  rows = rows || (multiline ? 4 : 1); // translate dilosi type to HTML Input type
43
46
 
44
47
  var fieldType = TYPES_MAP[type || 'text'] || 'text';
45
- return /*#__PURE__*/_react["default"].createElement(_TextField["default"], (0, _extends2["default"])({
46
- id: name,
47
- name: name,
48
- type: fieldType,
49
- className: className,
50
- fullWidth: fullWidth,
51
- multiline: multiline,
52
- rows: rows,
53
- margin: "normal",
54
- variant: "outlined",
55
- inputRef: ref
56
- }, props));
48
+
49
+ if (multiline === true) {
50
+ return /*#__PURE__*/_react["default"].createElement(_TextArea["default"], (0, _extends2["default"])({
51
+ name: name,
52
+ className: className,
53
+ rows: rows,
54
+ ref: ref
55
+ }, props));
56
+ } else {
57
+ return /*#__PURE__*/_react["default"].createElement(_TextInput["default"], (0, _extends2["default"])({
58
+ name: name,
59
+ type: fieldType,
60
+ className: className,
61
+ ref: ref
62
+ }, props));
63
+ }
57
64
  });
58
65
 
59
66
  var _default = Input;
@@ -9,37 +9,16 @@ exports["default"] = exports.Label = void 0;
9
9
 
10
10
  var _react = _interopRequireDefault(require("react"));
11
11
 
12
- var _clsx = _interopRequireDefault(require("clsx"));
12
+ var _LabelTitle = _interopRequireDefault(require("@digigov/react-core/LabelTitle"));
13
13
 
14
- var _Grid = _interopRequireDefault(require("@material-ui/core/Grid"));
15
-
16
- var _styles = require("@material-ui/core/styles");
17
-
18
- var _NormalText = _interopRequireDefault(require("@digigov/ui/typography/NormalText"));
14
+ var _Hint = _interopRequireDefault(require("@digigov/react-core/Hint"));
19
15
 
20
16
  var _i18n = require("@digigov/ui/app/i18n");
21
17
 
22
- var useLabelStyles = (0, _styles.makeStyles)(function (theme) {
23
- return {
24
- labels: {
25
- padding: theme.spacing(1, 0)
26
- },
27
- primaryLabel: {
28
- fontWeight: 500,
29
- lineHeight: '1.5em'
30
- },
31
- secondaryLabel: {
32
- fontWeight: 'normal',
33
- color: theme.palette.grey['700']
34
- }
35
- };
36
- });
37
-
38
18
  var Label = function Label(_ref) {
39
19
  var className = _ref.className,
40
20
  label = _ref.label,
41
21
  value = _ref.value;
42
- var classes = useLabelStyles();
43
22
 
44
23
  var _useTranslation = (0, _i18n.useTranslation)(),
45
24
  t = _useTranslation.t;
@@ -48,20 +27,10 @@ var Label = function Label(_ref) {
48
27
  return null;
49
28
  }
50
29
 
51
- return /*#__PURE__*/_react["default"].createElement(_Grid["default"], {
52
- container: true,
53
- className: (0, _clsx["default"])(classes.labels, className)
54
- }, /*#__PURE__*/_react["default"].createElement(_Grid["default"], {
55
- item: true,
56
- xs: 12
57
- }, /*#__PURE__*/_react["default"].createElement(_NormalText["default"], {
58
- className: classes.primaryLabel
59
- }, label && label.primary && t(label.primary) || value)), label && label.secondary && /*#__PURE__*/_react["default"].createElement(_Grid["default"], {
60
- item: true,
61
- xs: 12
62
- }, /*#__PURE__*/_react["default"].createElement(_NormalText["default"], {
63
- className: classes.secondaryLabel
64
- }, t(label.secondary))));
30
+ return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement(_LabelTitle["default"], {
31
+ className: className,
32
+ size: "s"
33
+ }, label && label.primary && t(label.primary) || value), label && label.secondary && /*#__PURE__*/_react["default"].createElement(_Hint["default"], null, t(label.secondary)));
65
34
  };
66
35
 
67
36
  exports.Label = Label;
@@ -7,101 +7,34 @@ var _typeof = require("@babel/runtime/helpers/typeof");
7
7
  Object.defineProperty(exports, "__esModule", {
8
8
  value: true
9
9
  });
10
- exports["default"] = exports.RadioButtonsGroup = exports.RadioButton = void 0;
10
+ exports["default"] = exports.RadioButtonsGroup = void 0;
11
11
 
12
12
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
13
13
 
14
14
  var _react = _interopRequireWildcard(require("react"));
15
15
 
16
- var _clsx = _interopRequireDefault(require("clsx"));
16
+ var _Radio = _interopRequireDefault(require("@digigov/react-core/Radio"));
17
17
 
18
- var _styles = require("@material-ui/core/styles");
18
+ var _RadioItem = _interopRequireDefault(require("@digigov/react-core/RadioItem"));
19
19
 
20
- var _Radio = _interopRequireDefault(require("@material-ui/core/Radio"));
21
-
22
- var _RadioGroup = _interopRequireDefault(require("@material-ui/core/RadioGroup"));
23
-
24
- var _FormControlLabel = _interopRequireDefault(require("@material-ui/core/FormControlLabel"));
25
-
26
- var _FormControl = _interopRequireDefault(require("@material-ui/core/FormControl"));
27
-
28
- var _Label = _interopRequireDefault(require("@digigov/form/inputs/Label"));
20
+ var _i18n = require("@digigov/ui/app/i18n");
29
21
 
30
22
  var _reactHookForm = require("react-hook-form");
31
23
 
24
+ var _Hint = _interopRequireDefault(require("@digigov/react-core/Hint"));
25
+
32
26
  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); }
33
27
 
34
28
  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; }
35
29
 
36
- var useRadioButtonStyles = (0, _styles.makeStyles)(function (theme) {
37
- return {
38
- dense: {
39
- margin: theme.spacing(1, 0)
40
- },
41
- formControlLabelActive: {
42
- backgroundColor: theme.palette.grey['200'],
43
- border: "2px solid ".concat(theme.palette.primary.main)
44
- },
45
- formControlLabel: {
46
- width: '100%',
47
- alignItems: 'flex-start',
48
- fontWeight: 'bolder',
49
- padding: theme.spacing(0.5),
50
- margin: theme.spacing(0.5, 0)
51
- }
52
- };
53
- });
54
-
55
- var _ref2 = /*#__PURE__*/_react["default"].createElement(_Radio["default"], {
56
- color: "primary"
57
- });
58
-
59
- var RadioButton = function RadioButton(_ref) {
60
- var dense = _ref.dense,
61
- value = _ref.value,
62
- label = _ref.label,
63
- register = _ref.register,
64
- active = _ref.active,
30
+ var RadioButtonsGroup = function RadioButtonsGroup(_ref) {
31
+ var register = _ref.register,
65
32
  name = _ref.name,
33
+ control = _ref.control,
34
+ _ref$extra = _ref.extra,
35
+ options = _ref$extra.options,
36
+ className = _ref$extra.className,
66
37
  disabled = _ref.disabled;
67
- var classes = useRadioButtonStyles();
68
- return /*#__PURE__*/_react["default"].createElement(_FormControlLabel["default"], {
69
- className: (0, _clsx["default"])(classes.formControlLabel, active && classes.formControlLabelActive, dense && classes.dense),
70
- value: value,
71
- name: name,
72
- disabled: disabled,
73
- inputRef: register,
74
- control: _ref2,
75
- label: /*#__PURE__*/_react["default"].createElement(_Label["default"], {
76
- label: label,
77
- value: value
78
- })
79
- });
80
- };
81
-
82
- exports.RadioButton = RadioButton;
83
- var useRadioButtonsGroupStyles = (0, _styles.makeStyles)(function (theme) {
84
- return {
85
- formControl: {
86
- margin: theme.spacing(0, 0, 2, 0),
87
- width: '100%'
88
- },
89
- dense: {
90
- margin: theme.spacing(1, 0)
91
- }
92
- };
93
- });
94
-
95
- var RadioButtonsGroup = function RadioButtonsGroup(_ref3) {
96
- var name = _ref3.name,
97
- register = _ref3.register,
98
- control = _ref3.control,
99
- _ref3$extra = _ref3.extra,
100
- options = _ref3$extra.options,
101
- dense = _ref3$extra.dense,
102
- className = _ref3$extra.className,
103
- disabled = _ref3.disabled;
104
- var classes = useRadioButtonsGroupStyles();
105
38
  var currentValue = (0, _reactHookForm.useWatch)({
106
39
  control: control,
107
40
  name: name
@@ -111,27 +44,25 @@ var RadioButtonsGroup = function RadioButtonsGroup(_ref3) {
111
44
  _useState2 = (0, _slicedToArray2["default"])(_useState, 1),
112
45
  defaultValue = _useState2[0];
113
46
 
114
- return /*#__PURE__*/_react["default"].createElement(_FormControl["default"], {
115
- component: "fieldset",
116
- className: (0, _clsx["default"])(className, classes.formControl, dense && classes.dense)
117
- }, /*#__PURE__*/_react["default"].createElement(_RadioGroup["default"], {
47
+ var _useTranslation = (0, _i18n.useTranslation)(),
48
+ t = _useTranslation.t;
49
+
50
+ return /*#__PURE__*/_react["default"].createElement(_Radio["default"], {
51
+ className: className,
118
52
  defaultValue: defaultValue,
119
- id: name,
120
- name: name
121
- }, options.map(function (_ref4) {
122
- var label = _ref4.label,
123
- v = _ref4.value,
124
- optionDisabled = _ref4.disabled;
125
- return /*#__PURE__*/_react["default"].createElement(RadioButton, {
53
+ id: name
54
+ }, options.map(function (_ref2) {
55
+ var label = _ref2.label,
56
+ v = _ref2.value,
57
+ optionDisabled = _ref2.disabled;
58
+ return /*#__PURE__*/_react["default"].createElement(_RadioItem["default"], {
59
+ ref: register,
126
60
  key: v,
127
- label: label,
128
61
  name: name,
129
- active: v === currentValue,
130
62
  value: v,
131
- register: register,
132
63
  disabled: disabled || optionDisabled
133
- });
134
- })));
64
+ }, label && label.primary && t(label.primary) || v, label && label.secondary && /*#__PURE__*/_react["default"].createElement(_Hint["default"], null, t(label.secondary)));
65
+ }));
135
66
  };
136
67
 
137
68
  exports.RadioButtonsGroup = RadioButtonsGroup;
@@ -9,26 +9,11 @@ exports["default"] = exports.Select = void 0;
9
9
 
10
10
  var _react = _interopRequireDefault(require("react"));
11
11
 
12
- var _clsx = _interopRequireDefault(require("clsx"));
12
+ var _Select = _interopRequireDefault(require("@digigov/react-core/Select"));
13
13
 
14
- var _styles = require("@material-ui/core/styles");
14
+ var _SelectOption = _interopRequireDefault(require("@digigov/react-core/SelectOption"));
15
15
 
16
- var _FormControl = _interopRequireDefault(require("@material-ui/core/FormControl"));
17
-
18
- var _Select = _interopRequireDefault(require("@material-ui/core/Select"));
19
-
20
- var useSelectStyles = (0, _styles.makeStyles)(function (theme) {
21
- return {
22
- formControl: {
23
- minWidth: 120
24
- },
25
- selectEmpty: {
26
- marginTop: theme.spacing(2)
27
- }
28
- };
29
- });
30
-
31
- var _ref2 = /*#__PURE__*/_react["default"].createElement("option", {
16
+ var _ref2 = /*#__PURE__*/_react["default"].createElement(_SelectOption["default"], {
32
17
  value: ""
33
18
  });
34
19
 
@@ -38,28 +23,19 @@ var Select = /*#__PURE__*/_react["default"].forwardRef(function WrappedSelect(_r
38
23
  options = _ref$extra.options,
39
24
  className = _ref$extra.className,
40
25
  disabled = _ref.disabled;
41
- var classes = useSelectStyles();
42
- return /*#__PURE__*/_react["default"].createElement(_FormControl["default"], {
43
- variant: "outlined",
44
- className: (0, _clsx["default"])(className, classes.formControl)
45
- }, /*#__PURE__*/_react["default"].createElement(_Select["default"], {
46
- "native": true,
47
- autoWidth: true,
48
- inputRef: ref,
49
- inputProps: {
50
- name: name,
51
- id: name
52
- },
26
+ return /*#__PURE__*/_react["default"].createElement(_Select["default"], {
27
+ className: className,
28
+ ref: ref,
29
+ name: name,
53
30
  disabled: disabled
54
31
  }, _ref2, options.map(function (_ref3) {
55
32
  var value = _ref3.value,
56
33
  label = _ref3.label;
57
- return /*#__PURE__*/_react["default"].createElement("option", {
34
+ return /*#__PURE__*/_react["default"].createElement(_SelectOption["default"], {
58
35
  key: value,
59
- value: value,
60
- title: label && label.secondary
36
+ value: value
61
37
  }, label && label.primary ? label.primary : value);
62
- })));
38
+ }));
63
39
  });
64
40
 
65
41
  exports.Select = Select;
@@ -4,22 +4,24 @@ import { FieldSpec, FieldError } from '@digigov/form';
4
4
  export declare type FieldComponentItem = {
5
5
  component: any;
6
6
  controlled?: boolean;
7
+ wrapper?: FieldSpec['wrapper'];
7
8
  };
8
9
  export declare type FieldComponentRegistry = Record<string, FieldComponentItem>;
9
- export declare const useFieldContainerStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"error" | "fieldContainer" | "fieldLabel" | "hint" | "errorContainer">;
10
10
  export interface FieldContainerProps {
11
11
  layout?: FieldSpec['layout'];
12
12
  label?: FieldSpec['label'];
13
13
  error?: FieldError;
14
14
  children?: React.ReactNode;
15
+ wrapper?: FieldSpec['wrapper'];
15
16
  }
16
17
  export declare type OmittedFieldSpec = Omit<FieldSpec, 'component'>;
18
+ export declare type UnknownValue = never | never[];
17
19
  export interface ControlledFieldProps {
18
- value: any;
19
- onChange: (v: any) => void;
20
- defaultValue?: any;
20
+ value: UnknownValue;
21
+ onChange: (v: UnknownValue) => void;
22
+ defaultValue?: UnknownValue;
21
23
  onBlur?: (e: Event) => void;
22
- extra?: any;
24
+ extra?: never;
23
25
  error?: boolean;
24
26
  name?: string;
25
27
  disabled?: boolean;
@@ -30,15 +32,16 @@ export interface UncontrolledFieldProps {
30
32
  ref?: FieldBaseProps['register'];
31
33
  control?: FieldBaseProps['control'];
32
34
  error?: boolean;
33
- extra?: Record<string, any>;
35
+ extra?: Record<string, never>;
34
36
  type?: string;
35
37
  disabled?: boolean;
36
38
  }
37
39
  export interface CalculatedField extends OmittedFieldSpec {
38
40
  name: string;
39
41
  component: any;
40
- defaultValue?: any;
42
+ defaultValue?: never;
41
43
  error?: FieldError;
44
+ wrapper?: FieldComponentItem['wrapper'];
42
45
  }
43
46
  export interface FieldBaseProps extends CalculatedField {
44
47
  control: UseFormMethods['control'];
@@ -1,7 +1,13 @@
1
1
  import React from 'react';
2
- export declare const FieldsetLabel: React.FC<{}>;
3
- export declare const FieldsetCaption: React.FC<{}>;
4
- export declare const FieldsetBody: React.FC<{}>;
2
+ export interface FieldsetLabelProps {
3
+ }
4
+ export interface FieldsetCaptionProps {
5
+ }
6
+ export interface FieldsetBodyProps {
7
+ }
8
+ export declare const FieldsetLabel: React.FC<FieldsetLabelProps>;
9
+ export declare const FieldsetCaption: React.FC<FieldsetCaptionProps>;
10
+ export declare const FieldsetBody: React.FC<FieldsetBodyProps>;
5
11
  export declare const FieldsetWithContext: React.FC<{
6
12
  name: string;
7
13
  }>;
@@ -29,6 +29,7 @@ export interface FieldSpec {
29
29
  enabled?: boolean;
30
30
  layout?: Record<string, GridProps['xs']>;
31
31
  validators?: ValidatorSchema[];
32
+ wrapper?: 'label' | 'fieldset';
32
33
  }
33
34
  export interface FieldsetSpec {
34
35
  key: string;
@@ -1,7 +1,8 @@
1
1
  import React from 'react';
2
2
  import { FieldOptionProps } from '@digigov/form/inputs/Label';
3
3
  import { ControlledFieldProps } from '@digigov/form/Field';
4
- export interface CheckboxesProps extends Omit<ControlledFieldProps, 'extra'> {
4
+ export interface CheckboxesProps extends Omit<ControlledFieldProps, 'extra' | 'value'> {
5
+ value?: string[];
5
6
  extra: {
6
7
  className?: string;
7
8
  options: Array<FieldOptionProps>;
@@ -5,7 +5,7 @@ export interface InputProps extends Omit<UncontrolledFieldProps, 'extra'> {
5
5
  fullWidth?: boolean;
6
6
  multiline?: boolean;
7
7
  className?: string;
8
- rows?: number;
8
+ rows?: any;
9
9
  };
10
10
  }
11
11
  declare const Input: React.ExoticComponent<InputProps>;
@@ -1,16 +1,6 @@
1
1
  import React from 'react';
2
- import { FieldLabelProps, FieldOptionProps } from '@digigov/form/inputs/Label';
2
+ import { FieldOptionProps } from '@digigov/form/inputs/Label';
3
3
  import { UncontrolledFieldProps } from '@digigov/form/Field';
4
- export interface RadioButtonProps {
5
- dense?: boolean;
6
- value: string;
7
- active: boolean;
8
- label?: FieldLabelProps;
9
- name: string;
10
- register: RadioButtonsGroupProps['register'];
11
- disabled?: boolean;
12
- }
13
- export declare const RadioButton: React.FC<RadioButtonProps>;
14
4
  export interface RadioButtonsGroupProps extends Omit<UncontrolledFieldProps, 'extra'> {
15
5
  extra: {
16
6
  className?: string;
@@ -2,7 +2,9 @@ import * as yup from 'yup';
2
2
  import { FieldSpec } from '@digigov/form';
3
3
  import { MutableRefObject } from 'react';
4
4
  export declare type ValidatorSchema = yup.BaseTestOptions;
5
- export declare function validateAFM(afm: any): boolean;
5
+ export declare function validateAFM(afm: string): boolean;
6
6
  export declare function validateUUID4(uuid4: string): boolean;
7
7
  export declare function validateIban(value: string, countryCode: string): boolean;
8
- export declare function useValidationSchema(fields: FieldSpec[] | MutableRefObject<{}>, validatorRegistry?: any): Record<string, unknown> | void;
8
+ export interface MutableRefObjectProps {
9
+ }
10
+ export declare function useValidationSchema(fields: FieldSpec[] | MutableRefObject<MutableRefObjectProps>, validatorRegistry?: Record<string, ValidatorSchema>): Record<string, unknown> | void;
@@ -5,9 +5,9 @@ import AccordionSectionHeader from '@digigov/react-core/AccordionSectionHeader';
5
5
  import AccordionControls from '@digigov/react-core/AccordionControls';
6
6
  import { UseTogglableSectionsReturn } from '@digigov/ui/hooks/useTogglableSections';
7
7
  import React from 'react';
8
- export declare const AccordionItemDetails: React.ForwardRefExoticComponent<Pick<import("@digigov/react-core/AccordionSectionContent").AccordionSectionContentProps, "className" | "children" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & React.RefAttributes<HTMLDivElement>>;
9
- export declare const AccordionItemSummary: React.ForwardRefExoticComponent<Pick<import("@digigov/react-core/AccordionSectionHeader").AccordionSectionHeaderProps, "className" | "children" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & React.RefAttributes<HTMLDivElement>>;
10
- export declare const AccordionItem: React.MemoExoticComponent<React.ForwardRefExoticComponent<Pick<import("@digigov/react-core/AccordionSection").AccordionSectionProps, "className" | "children" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "open"> & React.RefAttributes<HTMLDivElement>>>;
8
+ export declare const AccordionItemDetails: React.ForwardRefExoticComponent<Pick<import("@digigov/react-core/AccordionSectionContent").AccordionSectionContentProps, "className" | "style" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "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"> & React.RefAttributes<HTMLDivElement>>;
9
+ export declare const AccordionItemSummary: React.ForwardRefExoticComponent<Pick<import("@digigov/react-core/AccordionSectionHeader").AccordionSectionHeaderProps, "className" | "style" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "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"> & React.RefAttributes<HTMLDivElement>>;
10
+ export declare const AccordionItem: React.MemoExoticComponent<React.ForwardRefExoticComponent<Pick<import("@digigov/react-core/AccordionSection").AccordionSectionProps, "className" | "style" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "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" | "open"> & React.RefAttributes<HTMLDivElement>>>;
11
11
  export interface UseAccordionProps {
12
12
  singleOpen?: boolean;
13
13
  }
@@ -1,3 +1,3 @@
1
1
  /// <reference types="react" />
2
- export declare const Blockquote: import("react").ForwardRefExoticComponent<Pick<import("@digigov/react-core/Blockquote").BlockquoteProps, "className" | "children" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "cite"> & import("react").RefAttributes<HTMLElement>>;
2
+ export declare const Blockquote: import("react").ForwardRefExoticComponent<Pick<import("@digigov/react-core/Blockquote").BlockquoteProps, "className" | "style" | "cite" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "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"> & import("react").RefAttributes<HTMLElement>>;
3
3
  export default Blockquote;