@digigov/form 0.4.4 → 0.4.8

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 (142) hide show
  1. package/CHANGELOG.md +26 -1
  2. package/Field/index.js +35 -45
  3. package/Fieldset/index.js +10 -14
  4. package/es/Field/index.js +29 -41
  5. package/es/Fieldset/index.js +9 -14
  6. package/es/inputs/Checkboxes/index.js +12 -50
  7. package/es/inputs/FileInput/index.js +7 -44
  8. package/es/inputs/Input/index.js +19 -16
  9. package/es/inputs/Label/index.js +6 -34
  10. package/es/inputs/Radio/index.js +24 -87
  11. package/es/inputs/Select/index.js +10 -31
  12. package/esm/Field/index.js +29 -41
  13. package/esm/Fieldset/index.js +9 -14
  14. package/esm/index.js +1 -1
  15. package/esm/inputs/Checkboxes/index.js +12 -50
  16. package/esm/inputs/FileInput/index.js +7 -44
  17. package/esm/inputs/Input/index.js +19 -16
  18. package/esm/inputs/Label/index.js +6 -34
  19. package/esm/inputs/Radio/index.js +24 -87
  20. package/esm/inputs/Select/index.js +10 -31
  21. package/inputs/Checkboxes/index.js +12 -52
  22. package/inputs/FileInput/index.js +7 -47
  23. package/inputs/Input/index.js +20 -16
  24. package/inputs/Label/index.js +6 -37
  25. package/inputs/Radio/index.js +26 -95
  26. package/inputs/Select/index.js +10 -34
  27. package/{Field → libs/form/src/Field}/ConditionalField.d.ts +0 -0
  28. package/{Field → libs/form/src/Field}/index.d.ts +3 -1
  29. package/{Fieldset → libs/form/src/Fieldset}/index.d.ts +0 -0
  30. package/{Questions → libs/form/src/Questions}/Step/ReviewStep.d.ts +0 -0
  31. package/{Questions → libs/form/src/Questions}/Step/StepDescription.d.ts +0 -0
  32. package/{Questions → libs/form/src/Questions}/Step/StepForm.d.ts +0 -0
  33. package/{Questions → libs/form/src/Questions}/Step/StepQuote.d.ts +0 -0
  34. package/{Questions → libs/form/src/Questions}/Step/StepTitle.d.ts +0 -0
  35. package/{Questions → libs/form/src/Questions}/Step/index.d.ts +0 -0
  36. package/{Questions → libs/form/src/Questions}/index.d.ts +0 -0
  37. package/{Questions → libs/form/src/Questions}/index.spec.d.ts +0 -0
  38. package/{index.d.ts → libs/form/src/index.d.ts} +1 -0
  39. package/{inputs → libs/form/src/inputs}/Checkboxes/index.d.ts +0 -0
  40. package/{inputs → libs/form/src/inputs}/FileInput/index.d.ts +0 -0
  41. package/{inputs → libs/form/src/inputs}/Input/index.d.ts +1 -1
  42. package/{inputs → libs/form/src/inputs}/Label/index.d.ts +0 -0
  43. package/{inputs → libs/form/src/inputs}/Radio/index.d.ts +1 -11
  44. package/{inputs → libs/form/src/inputs}/Select/index.d.ts +0 -0
  45. package/{inputs → libs/form/src/inputs}/index.d.ts +0 -0
  46. package/{utils.d.ts → libs/form/src/utils.d.ts} +0 -0
  47. package/{validators.d.ts → libs/form/src/validators.d.ts} +0 -0
  48. package/{validators.spec.d.ts → libs/form/src/validators.spec.d.ts} +0 -0
  49. package/libs/ui/src/app/PageTitle.d.ts +10 -0
  50. package/libs/ui/src/app/i18n.d.ts +10 -0
  51. package/libs/ui/src/core/Accordion/index.d.ts +21 -0
  52. package/libs/ui/src/core/Blockquote/index.d.ts +3 -0
  53. package/libs/ui/src/core/Button/BackButton.d.ts +3 -0
  54. package/libs/ui/src/core/Button/ButtonLink.d.ts +4 -0
  55. package/libs/ui/src/core/Button/CallToAction.d.ts +7 -0
  56. package/libs/ui/src/core/Button/Icon.d.ts +2 -0
  57. package/libs/ui/src/core/Button/index.d.ts +14 -0
  58. package/libs/ui/src/core/Details/index.d.ts +5 -0
  59. package/libs/ui/src/core/ErrorSummary/index.d.ts +3 -0
  60. package/libs/ui/src/core/Link/index.d.ts +17 -0
  61. package/libs/ui/src/core/List/List.d.ts +3 -0
  62. package/libs/ui/src/core/List/ListItem.d.ts +3 -0
  63. package/libs/ui/src/core/List/ListItemContent.d.ts +7 -0
  64. package/libs/ui/src/core/List/ListItemIcon.d.ts +7 -0
  65. package/libs/ui/src/core/List/ListItemText.d.ts +8 -0
  66. package/libs/ui/src/core/List/ListItemTitle.d.ts +10 -0
  67. package/libs/ui/src/core/List/index.d.ts +7 -0
  68. package/libs/ui/src/core/NavList/NavList.d.ts +17 -0
  69. package/libs/ui/src/core/NavList/NavListContext.d.ts +20 -0
  70. package/libs/ui/src/core/NavList/NavListItem.d.ts +13 -0
  71. package/libs/ui/src/core/NavList/NavListItemBase.d.ts +16 -0
  72. package/libs/ui/src/core/NavList/NavListSubMenu.d.ts +8 -0
  73. package/libs/ui/src/core/NavList/index.d.ts +5 -0
  74. package/libs/ui/src/core/NotificationBanner/index.d.ts +17 -0
  75. package/libs/ui/src/core/ServiceBadge/index.d.ts +8 -0
  76. package/libs/ui/src/core/SummaryList/index.d.ts +7 -0
  77. package/libs/ui/src/core/Tabs/index.d.ts +16 -0
  78. package/libs/ui/src/core/WarningText/index.d.ts +3 -0
  79. package/libs/ui/src/core/index.d.ts +14 -0
  80. package/libs/ui/src/hooks/useTogglableSections.d.ts +18 -0
  81. package/libs/ui/src/locales/el.d.ts +46 -0
  82. package/libs/ui/src/router/index.d.ts +9 -0
  83. package/libs/ui/src/typography/Caption.d.ts +7 -0
  84. package/libs/ui/src/typography/NormalText.d.ts +5 -0
  85. package/libs/ui/src/typography/Paragraph.d.ts +6 -0
  86. package/libs/ui/src/typography/Title.d.ts +9 -0
  87. package/libs/ui/src/utils/withDeprecation.d.ts +16 -0
  88. package/libs-ui/react-core/src/Accordion/index.d.ts +10 -0
  89. package/libs-ui/react-core/src/AccordionControls/index.d.ts +9 -0
  90. package/libs-ui/react-core/src/AccordionSection/index.d.ts +15 -0
  91. package/libs-ui/react-core/src/AccordionSectionContent/index.d.ts +10 -0
  92. package/libs-ui/react-core/src/AccordionSectionHeader/index.d.ts +9 -0
  93. package/libs-ui/react-core/src/BackLink/index.d.ts +13 -0
  94. package/libs-ui/react-core/src/Blockquote/index.d.ts +9 -0
  95. package/libs-ui/react-core/src/Button/index.d.ts +25 -0
  96. package/libs-ui/react-core/src/ButtonLink/index.d.ts +17 -0
  97. package/libs-ui/react-core/src/CallToAction/index.d.ts +10 -0
  98. package/libs-ui/react-core/src/Checkbox/index.d.ts +11 -0
  99. package/libs-ui/react-core/src/CheckboxItem/index.d.ts +19 -0
  100. package/libs-ui/react-core/src/Details/index.d.ts +10 -0
  101. package/libs-ui/react-core/src/DetailsContent/index.d.ts +10 -0
  102. package/libs-ui/react-core/src/DetailsSummary/index.d.ts +9 -0
  103. package/libs-ui/react-core/src/ErrorMessage/index.d.ts +11 -0
  104. package/libs-ui/react-core/src/ErrorSummary/index.d.ts +9 -0
  105. package/libs-ui/react-core/src/Field/index.d.ts +13 -0
  106. package/libs-ui/react-core/src/Fieldset/index.d.ts +10 -0
  107. package/libs-ui/react-core/src/FieldsetLegend/index.d.ts +19 -0
  108. package/libs-ui/react-core/src/FileUpload/index.d.ts +14 -0
  109. package/libs-ui/react-core/src/Heading/index.d.ts +21 -0
  110. package/libs-ui/react-core/src/HeadingCaption/index.d.ts +15 -0
  111. package/libs-ui/react-core/src/Hint/index.d.ts +9 -0
  112. package/libs-ui/react-core/src/Label/index.d.ts +9 -0
  113. package/libs-ui/react-core/src/LabelTitle/index.d.ts +19 -0
  114. package/libs-ui/react-core/src/List/index.d.ts +18 -0
  115. package/libs-ui/react-core/src/ListItem/index.d.ts +9 -0
  116. package/libs-ui/react-core/src/NormalText/index.d.ts +28 -0
  117. package/libs-ui/react-core/src/NotificationBanner/index.d.ts +17 -0
  118. package/libs-ui/react-core/src/NotificationBannerContent/index.d.ts +12 -0
  119. package/libs-ui/react-core/src/NotificationBannerHeader/index.d.ts +11 -0
  120. package/libs-ui/react-core/src/NotificationBannerHeading/index.d.ts +11 -0
  121. package/libs-ui/react-core/src/Paragraph/index.d.ts +26 -0
  122. package/libs-ui/react-core/src/PhaseBanner/index.d.ts +15 -0
  123. package/libs-ui/react-core/src/PhaseBannerTag/index.d.ts +9 -0
  124. package/libs-ui/react-core/src/Radio/index.d.ts +10 -0
  125. package/libs-ui/react-core/src/RadioItem/index.d.ts +18 -0
  126. package/libs-ui/react-core/src/SectionBreak/index.d.ts +18 -0
  127. package/libs-ui/react-core/src/Select/index.d.ts +14 -0
  128. package/libs-ui/react-core/src/SelectOption/index.d.ts +18 -0
  129. package/libs-ui/react-core/src/SummaryList/index.d.ts +10 -0
  130. package/libs-ui/react-core/src/SummaryListItem/index.d.ts +10 -0
  131. package/libs-ui/react-core/src/SummaryListItemAction/index.d.ts +10 -0
  132. package/libs-ui/react-core/src/SummaryListItemKey/index.d.ts +10 -0
  133. package/libs-ui/react-core/src/SummaryListItemValue/index.d.ts +9 -0
  134. package/libs-ui/react-core/src/Tabs/index.d.ts +10 -0
  135. package/libs-ui/react-core/src/TabsHeading/index.d.ts +15 -0
  136. package/libs-ui/react-core/src/TabsList/index.d.ts +10 -0
  137. package/libs-ui/react-core/src/TabsListItem/index.d.ts +20 -0
  138. package/libs-ui/react-core/src/TabsPanel/index.d.ts +16 -0
  139. package/libs-ui/react-core/src/TextArea/index.d.ts +23 -0
  140. package/libs-ui/react-core/src/TextInput/index.d.ts +28 -0
  141. package/libs-ui/react-core/src/WarningText/index.d.ts +11 -0
  142. package/package.json +2 -2
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ declare type UlElementAttributes = JSX.IntrinsicElements['ul'];
3
+ export interface TabsListProps extends UlElementAttributes {
4
+ }
5
+ /**
6
+ * TabsList should be inside the Tabs component.
7
+ * Inside the TabsList should be a list of TabsListItem components.
8
+ */
9
+ export declare const TabsList: React.ForwardRefExoticComponent<Pick<TabsListProps, "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<HTMLUListElement>>;
10
+ export default TabsList;
@@ -0,0 +1,20 @@
1
+ import React from 'react';
2
+ declare type AnchorElementAttributes = JSX.IntrinsicElements['a'];
3
+ export interface TabsListItemProps extends AnchorElementAttributes {
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, "type" | "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" | "selected" | "media" | "target" | "href" | "download" | "hrefLang" | "ping" | "rel" | "referrerPolicy"> & React.RefAttributes<HTMLAnchorElement>>;
20
+ export default TabsListItem;
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ declare type DivElementAttributes = JSX.IntrinsicElements['div'];
3
+ export interface TabsPanelProps extends DivElementAttributes {
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, "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" | "active"> & React.RefAttributes<HTMLDivElement>>;
16
+ export default TabsPanel;
@@ -0,0 +1,23 @@
1
+ import React from 'react';
2
+ declare type TextareaElementAttributes = JSX.IntrinsicElements['textarea'];
3
+ export interface TextAreaProps extends TextareaElementAttributes {
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, "className" | "children" | "key" | "disabled" | "form" | "name" | "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" | "required" | "error" | "wrap" | "maxLength" | "minLength" | "autoComplete" | "autoFocus" | "readOnly" | "value" | "rows" | "cols" | "dirName"> & React.RefAttributes<HTMLTextAreaElement>>;
23
+ export default TextArea;
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ declare type InputElementAttributes = JSX.IntrinsicElements['input'];
3
+ export interface TextInputProps extends InputElementAttributes {
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, "type" | "className" | "children" | "key" | "disabled" | "form" | "name" | "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" | "pattern" | "list" | "step" | "size" | "required" | "error" | "min" | "max" | "maxLength" | "minLength" | "characterWidth" | "cellWidth" | "accept" | "alt" | "autoComplete" | "autoFocus" | "capture" | "checked" | "crossOrigin" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "height" | "multiple" | "readOnly" | "src" | "value" | "width"> & React.RefAttributes<HTMLInputElement>>;
28
+ export default TextInput;
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ declare type DivElementAttributes = JSX.IntrinsicElements['div'];
3
+ export interface WarningTextProps extends DivElementAttributes {
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, "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>>;
11
+ export default WarningText;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digigov/form",
3
- "version": "0.4.4",
3
+ "version": "0.4.8",
4
4
  "description": "@digigov form builder",
5
5
  "author": "GRNET Developers <devs@lists.grnet.gr>",
6
6
  "license": "MIT",
@@ -16,7 +16,7 @@
16
16
  "google-libphonenumber": "3.2.8"
17
17
  },
18
18
  "peerDependencies": {
19
- "@digigov/ui": "*",
19
+ "@digigov/ui": "0.10.2",
20
20
  "@material-ui/core": "4.11.3",
21
21
  "@material-ui/icons": "4.11.2",
22
22
  "clsx": "1.1.1",