@tap-payments/os-micro-frontend-shared 0.1.8 → 0.1.9-test.1-test.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. package/build/components/ActionMenu/style.d.ts +1 -1
  2. package/build/components/Chip/style.d.ts +1 -1
  3. package/build/components/CountBadge/style.d.ts +1 -1
  4. package/build/components/Dialog/style.d.ts +1 -1
  5. package/build/components/FlippingCard/style.d.ts +1 -1
  6. package/build/components/ImageWrapper/ImageWrapper.d.ts +1 -1
  7. package/build/components/JSONViewer/style.d.ts +2 -2
  8. package/build/components/SearchButton/styles.d.ts +3 -3
  9. package/build/components/StatusIcons/AuthIcons/style.d.ts +2 -2
  10. package/build/components/StatusIcons/AuthorizationAutoIcons/style.d.ts +1 -1
  11. package/build/components/StatusIcons/ChargeStatusIcon/style.d.ts +6 -6
  12. package/build/components/StatusIcons/SourceIcons/style.d.ts +1 -1
  13. package/build/components/TableCells/CustomCells/ActionCell/hooks/useActionCell.d.ts +1 -1
  14. package/build/components/TableCells/CustomCells/ActionCell/style.d.ts +2 -2
  15. package/build/components/TableCells/CustomCells/ApplicationStatusCell/style.d.ts +1 -1
  16. package/build/components/TableCells/CustomCells/AuthenticationCell/style.d.ts +2 -2
  17. package/build/components/TableCells/CustomCells/AuthenticationStatusCell/style.d.ts +5 -5
  18. package/build/components/TableCells/CustomCells/AuthenticationTypeCell/style.d.ts +5 -5
  19. package/build/components/TableCells/CustomCells/BalanceCell/style.d.ts +1 -1
  20. package/build/components/TableCells/CustomCells/ChannelsCell/style.d.ts +1 -1
  21. package/build/components/TableCells/CustomCells/CheckoutStatusCell/style.d.ts +1 -1
  22. package/build/components/TableCells/CustomCells/DestinationStatusCell/style.d.ts +5 -5
  23. package/build/components/TableCells/CustomCells/DueDateCell/style.d.ts +1 -1
  24. package/build/components/TableCells/CustomCells/IDButton/style.d.ts +2 -2
  25. package/build/components/TableCells/CustomCells/IntentsStatusCell/style.d.ts +1 -1
  26. package/build/components/TableCells/CustomCells/InvoiceStatusCell/style.d.ts +1 -1
  27. package/build/components/TableCells/CustomCells/PayoutStatusCell/style.d.ts +5 -5
  28. package/build/components/TableCells/CustomCells/ProductsCell/style.d.ts +1 -1
  29. package/build/components/TableCells/CustomCells/ReferenceCell/style.d.ts +1 -1
  30. package/build/components/TableCells/CustomCells/RefundChargeCell/style.d.ts +2 -2
  31. package/build/components/TableCells/CustomCells/RefundStatusCell/style.d.ts +1 -1
  32. package/build/components/TableCells/CustomCells/SalesChannelCell/style.d.ts +1 -1
  33. package/build/components/TableCells/CustomCells/SegmentsCell/style.d.ts +1 -1
  34. package/build/components/TableCells/CustomCells/SourceCell/style.d.ts +1 -1
  35. package/build/components/TableCells/CustomCells/SourceMergedCell/style.d.ts +6 -6
  36. package/build/components/TableCells/CustomCells/StatusCell/style.d.ts +6 -6
  37. package/build/components/TableCells/CustomCells/TokenStatusCell/style.d.ts +5 -5
  38. package/build/components/TableCells/CustomCells/style.d.ts +1 -1
  39. package/build/components/VirtualTables/SheetViewVirtualTable/SheetViewVirtualTable.js +34 -174
  40. package/build/components/VirtualTables/SheetViewVirtualTable/components/NoDataSection.d.ts +32 -0
  41. package/build/components/VirtualTables/SheetViewVirtualTable/components/NoDataSection.js +30 -0
  42. package/build/components/VirtualTables/SheetViewVirtualTable/components/PinnedColumnSection.d.ts +51 -0
  43. package/build/components/VirtualTables/SheetViewVirtualTable/components/PinnedColumnSection.js +20 -0
  44. package/build/components/VirtualTables/SheetViewVirtualTable/components/SheetViewTableHeader/SheetViewTableHeader.js +1 -1
  45. package/build/components/VirtualTables/SheetViewVirtualTable/components/SheetViewTableHeader/TableCell.js +1 -1
  46. package/build/components/VirtualTables/SheetViewVirtualTable/components/SheetViewTableLoading.js +1 -1
  47. package/build/components/VirtualTables/SheetViewVirtualTable/components/SheetViewTableNoData.js +1 -1
  48. package/build/components/VirtualTables/SheetViewVirtualTable/components/VirtualListSection.d.ts +34 -0
  49. package/build/components/VirtualTables/SheetViewVirtualTable/components/VirtualListSection.js +76 -0
  50. package/build/components/VirtualTables/SheetViewVirtualTable/components/index.d.ts +3 -0
  51. package/build/components/VirtualTables/SheetViewVirtualTable/components/index.js +3 -0
  52. package/build/components/VirtualTables/SheetViewVirtualTable/hooks/usePinnedWidths.d.ts +5 -0
  53. package/build/components/VirtualTables/SheetViewVirtualTable/hooks/usePinnedWidths.js +12 -0
  54. package/build/components/VirtualTables/SheetViewVirtualTable/hooks/useSelection.d.ts +6 -0
  55. package/build/components/VirtualTables/SheetViewVirtualTable/hooks/useSelection.js +17 -0
  56. package/build/components/VirtualTables/SheetViewVirtualTable/hooks/useSharedItemSize.d.ts +10 -0
  57. package/build/components/VirtualTables/SheetViewVirtualTable/hooks/useSharedItemSize.js +21 -0
  58. package/build/components/VirtualTables/SheetViewVirtualTable/hooks/useSheetViewStates.d.ts +14 -0
  59. package/build/components/VirtualTables/SheetViewVirtualTable/hooks/useSheetViewStates.js +20 -0
  60. package/build/components/VirtualTables/SheetViewVirtualTable/style.d.ts +0 -2
  61. package/build/components/VirtualTables/SheetViewVirtualTable/style.js +0 -10
  62. package/build/components/VirtualTables/VirtualTable/VirtualTable.d.ts +1 -1
  63. package/build/components/VirtualTables/VirtualTable/VirtualTable.js +19 -79
  64. package/build/components/VirtualTables/VirtualTable/VirtualTableList.d.ts +19 -0
  65. package/build/components/VirtualTables/VirtualTable/VirtualTableList.js +27 -0
  66. package/build/components/VirtualTables/VirtualTable/useVirtualTable.d.ts +31 -0
  67. package/build/components/VirtualTables/VirtualTable/useVirtualTable.js +70 -0
  68. package/build/components/VirtualTables/components/TableRow.js +1 -1
  69. package/build/components/VirtualTables/components/style.d.ts +1 -1
  70. package/build/components/Window/style.d.ts +2 -2
  71. package/build/constants/assets.d.ts +1 -0
  72. package/build/constants/assets.js +1 -0
  73. package/build/types/table.d.ts +0 -1
  74. package/package.json +134 -134
  75. /package/build/components/VirtualTables/{utils/getSelectionStyles.d.ts → components/utils.d.ts} +0 -0
  76. /package/build/components/VirtualTables/{utils/getSelectionStyles.js → components/utils.js} +0 -0
@@ -15,7 +15,7 @@ export declare const Charge: import("@emotion/styled").StyledComponent<import("@
15
15
  export declare const DropDownChargeGapColumn: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
16
16
  export declare const StyledAmount: import("@emotion/styled").StyledComponent<Pick<Omit<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & {
17
17
  ref?: ((instance: HTMLInputElement | null) => void) | import("react").RefObject<HTMLInputElement> | null | undefined;
18
- }, "width" | "height" | "hidden" | "type" | "value" | "list" | "form" | "slot" | "style" | "title" | "color" | "name" | "ref" | "pattern" | "key" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "children" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "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-rowindextext" | "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" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "multiple" | "autoComplete" | "readOnly" | "required" | "max" | "src" | "alt" | "formAction" | "formMethod" | "formNoValidate" | "formTarget" | "min" | "accept" | "capture" | "checked" | "formEncType" | "minLength"> & {
18
+ }, "width" | "height" | "hidden" | "type" | "list" | "form" | "slot" | "style" | "title" | "value" | "color" | "name" | "ref" | "pattern" | "key" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "children" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "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-rowindextext" | "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" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "multiple" | "autoComplete" | "readOnly" | "required" | "max" | "src" | "alt" | "formAction" | "formMethod" | "formNoValidate" | "formTarget" | "min" | "accept" | "capture" | "checked" | "formEncType" | "minLength"> & {
19
19
  allowDecimals?: boolean | undefined;
20
20
  allowNegativeValue?: boolean | undefined;
21
21
  id?: string | undefined;
@@ -77,7 +77,7 @@ export declare const SourcesContainer: import("@emotion/styled").StyledComponent
77
77
  "aria-description"?: string | undefined;
78
78
  "aria-details"?: string | undefined;
79
79
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
80
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
80
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
81
81
  "aria-errormessage"?: string | undefined;
82
82
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
83
83
  "aria-flowto"?: string | undefined;
@@ -67,7 +67,7 @@ export declare const AgreementImageWrapper: import("@emotion/styled").StyledComp
67
67
  "aria-description"?: string | undefined;
68
68
  "aria-details"?: string | undefined;
69
69
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
70
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
70
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
71
71
  "aria-errormessage"?: string | undefined;
72
72
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
73
73
  "aria-flowto"?: string | undefined;
@@ -67,7 +67,7 @@ export declare const DialogWrapper: import("@emotion/styled").StyledComponent<{
67
67
  "aria-description"?: string | undefined;
68
68
  "aria-details"?: string | undefined;
69
69
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
70
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
70
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
71
71
  "aria-errormessage"?: string | undefined;
72
72
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
73
73
  "aria-flowto"?: string | undefined;
@@ -67,7 +67,7 @@ export declare const Wrapper: import("@emotion/styled").StyledComponent<{
67
67
  "aria-description"?: string | undefined;
68
68
  "aria-details"?: string | undefined;
69
69
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
70
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
70
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
71
71
  "aria-errormessage"?: string | undefined;
72
72
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
73
73
  "aria-flowto"?: string | undefined;
@@ -67,7 +67,7 @@ declare const ImageWrapper: import("@emotion/styled").StyledComponent<{
67
67
  "aria-description"?: string | undefined;
68
68
  "aria-details"?: string | undefined;
69
69
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
70
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
70
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
71
71
  "aria-errormessage"?: string | undefined;
72
72
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
73
73
  "aria-flowto"?: string | undefined;
@@ -158,7 +158,7 @@ export declare const JSONViewerWrapper: import("@emotion/styled").StyledComponen
158
158
  "aria-description"?: string | undefined;
159
159
  "aria-details"?: string | undefined;
160
160
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
161
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
161
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
162
162
  "aria-errormessage"?: string | undefined;
163
163
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
164
164
  "aria-flowto"?: string | undefined;
@@ -423,7 +423,7 @@ export declare const JSONViewerWrapperRequest: import("@emotion/styled").StyledC
423
423
  "aria-description"?: string | undefined;
424
424
  "aria-details"?: string | undefined;
425
425
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
426
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
426
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
427
427
  "aria-errormessage"?: string | undefined;
428
428
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
429
429
  "aria-flowto"?: string | undefined;
@@ -6,11 +6,11 @@ export declare const StyledInput: import("@emotion/styled").StyledComponent<{
6
6
  disabled?: boolean | undefined;
7
7
  id?: string | undefined;
8
8
  type?: import("react").HTMLInputTypeAttribute | undefined;
9
- value?: string | number | readonly string[] | undefined;
10
9
  list?: string | undefined;
11
10
  form?: string | undefined;
12
11
  slot?: string | undefined;
13
12
  title?: string | undefined;
13
+ value?: string | number | readonly string[] | undefined;
14
14
  color?: string | undefined;
15
15
  name?: string | undefined;
16
16
  className?: string | undefined;
@@ -76,7 +76,7 @@ export declare const StyledInput: import("@emotion/styled").StyledComponent<{
76
76
  "aria-description"?: string | undefined;
77
77
  "aria-details"?: string | undefined;
78
78
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
79
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
79
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
80
80
  "aria-errormessage"?: string | undefined;
81
81
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
82
82
  "aria-flowto"?: string | undefined;
@@ -362,7 +362,7 @@ export declare const Icon: import("@emotion/styled").StyledComponent<{
362
362
  "aria-description"?: string | undefined;
363
363
  "aria-details"?: string | undefined;
364
364
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
365
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
365
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
366
366
  "aria-errormessage"?: string | undefined;
367
367
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
368
368
  "aria-flowto"?: string | undefined;
@@ -69,7 +69,7 @@ export declare const PaymentSourcesContainer: import("@emotion/styled").StyledCo
69
69
  "aria-description"?: string | undefined;
70
70
  "aria-details"?: string | undefined;
71
71
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
72
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
72
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
73
73
  "aria-errormessage"?: string | undefined;
74
74
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
75
75
  "aria-flowto"?: string | undefined;
@@ -336,7 +336,7 @@ export declare const AuthCellContainer: import("@emotion/styled").StyledComponen
336
336
  "aria-description"?: string | undefined;
337
337
  "aria-details"?: string | undefined;
338
338
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
339
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
339
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
340
340
  "aria-errormessage"?: string | undefined;
341
341
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
342
342
  "aria-flowto"?: string | undefined;
@@ -67,7 +67,7 @@ export declare const BalanceCellContainer: import("@emotion/styled").StyledCompo
67
67
  "aria-description"?: string | undefined;
68
68
  "aria-details"?: string | undefined;
69
69
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
70
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
70
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
71
71
  "aria-errormessage"?: string | undefined;
72
72
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
73
73
  "aria-flowto"?: string | undefined;
@@ -67,7 +67,7 @@ export declare const ErrorCodeLabel: import("@emotion/styled").StyledComponent<{
67
67
  "aria-description"?: string | undefined;
68
68
  "aria-details"?: string | undefined;
69
69
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
70
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
70
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
71
71
  "aria-errormessage"?: string | undefined;
72
72
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
73
73
  "aria-flowto"?: string | undefined;
@@ -329,7 +329,7 @@ export declare const ErrorCodeWrapper: import("@emotion/styled").StyledComponent
329
329
  "aria-description"?: string | undefined;
330
330
  "aria-details"?: string | undefined;
331
331
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
332
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
332
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
333
333
  "aria-errormessage"?: string | undefined;
334
334
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
335
335
  "aria-flowto"?: string | undefined;
@@ -592,7 +592,7 @@ export declare const GatewayIconWrapper: import("@emotion/styled").StyledCompone
592
592
  "aria-description"?: string | undefined;
593
593
  "aria-details"?: string | undefined;
594
594
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
595
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
595
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
596
596
  "aria-errormessage"?: string | undefined;
597
597
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
598
598
  "aria-flowto"?: string | undefined;
@@ -854,7 +854,7 @@ export declare const GatewaysContainer: import("@emotion/styled").StyledComponen
854
854
  "aria-description"?: string | undefined;
855
855
  "aria-details"?: string | undefined;
856
856
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
857
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
857
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
858
858
  "aria-errormessage"?: string | undefined;
859
859
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
860
860
  "aria-flowto"?: string | undefined;
@@ -1118,7 +1118,7 @@ export declare const UnCapturedBadge: import("@emotion/styled").StyledComponent<
1118
1118
  "aria-description"?: string | undefined;
1119
1119
  "aria-details"?: string | undefined;
1120
1120
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
1121
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
1121
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
1122
1122
  "aria-errormessage"?: string | undefined;
1123
1123
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
1124
1124
  "aria-flowto"?: string | undefined;
@@ -1380,7 +1380,7 @@ export declare const UnCapturedContainer: import("@emotion/styled").StyledCompon
1380
1380
  "aria-description"?: string | undefined;
1381
1381
  "aria-details"?: string | undefined;
1382
1382
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
1383
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
1383
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
1384
1384
  "aria-errormessage"?: string | undefined;
1385
1385
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
1386
1386
  "aria-flowto"?: string | undefined;
@@ -69,7 +69,7 @@ export declare const PaymentSourcesContainer: import("@emotion/styled").StyledCo
69
69
  "aria-description"?: string | undefined;
70
70
  "aria-details"?: string | undefined;
71
71
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
72
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
72
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
73
73
  "aria-errormessage"?: string | undefined;
74
74
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
75
75
  "aria-flowto"?: string | undefined;
@@ -13,7 +13,7 @@ export declare function useActionCell({ actions, isDropdownShown, onCloseDropdow
13
13
  label: string;
14
14
  onClick: (e: React.MouseEvent<HTMLLIElement, MouseEvent>) => void;
15
15
  onRightClick?: ((e: React.MouseEvent<HTMLLIElement, MouseEvent>) => void) | undefined;
16
- icon: "brand" | "users" | "cancel" | "reverse" | "refund" | "destination" | "capture" | "flag" | "dispute" | "void" | "clock" | "invoice" | "clipboard";
16
+ icon: "brand" | "users" | "reverse" | "cancel" | "refund" | "destination" | "capture" | "flag" | "dispute" | "void" | "clock" | "invoice" | "clipboard";
17
17
  isLoading?: boolean | undefined;
18
18
  isError?: boolean | undefined;
19
19
  isSuccess?: boolean | undefined;
@@ -80,7 +80,7 @@ export declare const ActionIcon: import("@emotion/styled").StyledComponent<{
80
80
  "aria-description"?: string | undefined;
81
81
  "aria-details"?: string | undefined;
82
82
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
83
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
83
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
84
84
  "aria-errormessage"?: string | undefined;
85
85
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
86
86
  "aria-flowto"?: string | undefined;
@@ -283,5 +283,5 @@ export declare const ActionIcon: import("@emotion/styled").StyledComponent<{
283
283
  fetchPriority?: "auto" | "high" | "low" | undefined;
284
284
  srcSet?: string | undefined;
285
285
  } & import("framer-motion").MotionProps & import("react").RefAttributes<HTMLImageElement> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
286
- icon?: "brand" | "users" | "cancel" | "reverse" | "refund" | "destination" | "capture" | "flag" | "dispute" | "void" | "clock" | "invoice" | "clipboard" | undefined;
286
+ icon?: "brand" | "users" | "reverse" | "cancel" | "refund" | "destination" | "capture" | "flag" | "dispute" | "void" | "clock" | "invoice" | "clipboard" | undefined;
287
287
  }, {}, {}>;
@@ -68,7 +68,7 @@ export declare const AppsStatusContainer: import("@emotion/styled").StyledCompon
68
68
  "aria-description"?: string | undefined;
69
69
  "aria-details"?: string | undefined;
70
70
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
71
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
71
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
72
72
  "aria-errormessage"?: string | undefined;
73
73
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
74
74
  "aria-flowto"?: string | undefined;
@@ -68,7 +68,7 @@ export declare const AuthCellContainer: import("@emotion/styled").StyledComponen
68
68
  "aria-description"?: string | undefined;
69
69
  "aria-details"?: string | undefined;
70
70
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
71
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
71
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
72
72
  "aria-errormessage"?: string | undefined;
73
73
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
74
74
  "aria-flowto"?: string | undefined;
@@ -335,7 +335,7 @@ export declare const AuthenticationStatusesContainer: import("@emotion/styled").
335
335
  "aria-description"?: string | undefined;
336
336
  "aria-details"?: string | undefined;
337
337
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
338
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
338
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
339
339
  "aria-errormessage"?: string | undefined;
340
340
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
341
341
  "aria-flowto"?: string | undefined;
@@ -67,7 +67,7 @@ export declare const UnCapturedContainer: import("@emotion/styled").StyledCompon
67
67
  "aria-description"?: string | undefined;
68
68
  "aria-details"?: string | undefined;
69
69
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
70
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
70
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
71
71
  "aria-errormessage"?: string | undefined;
72
72
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
73
73
  "aria-flowto"?: string | undefined;
@@ -329,7 +329,7 @@ export declare const ErrorCodeWrapper: import("@emotion/styled").StyledComponent
329
329
  "aria-description"?: string | undefined;
330
330
  "aria-details"?: string | undefined;
331
331
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
332
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
332
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
333
333
  "aria-errormessage"?: string | undefined;
334
334
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
335
335
  "aria-flowto"?: string | undefined;
@@ -591,7 +591,7 @@ export declare const ErrorCodeLabel: import("@emotion/styled").StyledComponent<{
591
591
  "aria-description"?: string | undefined;
592
592
  "aria-details"?: string | undefined;
593
593
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
594
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
594
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
595
595
  "aria-errormessage"?: string | undefined;
596
596
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
597
597
  "aria-flowto"?: string | undefined;
@@ -854,7 +854,7 @@ export declare const GatewayIconWrapper: import("@emotion/styled").StyledCompone
854
854
  "aria-description"?: string | undefined;
855
855
  "aria-details"?: string | undefined;
856
856
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
857
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
857
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
858
858
  "aria-errormessage"?: string | undefined;
859
859
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
860
860
  "aria-flowto"?: string | undefined;
@@ -1116,7 +1116,7 @@ export declare const GatewaysContainer: import("@emotion/styled").StyledComponen
1116
1116
  "aria-description"?: string | undefined;
1117
1117
  "aria-details"?: string | undefined;
1118
1118
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
1119
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
1119
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
1120
1120
  "aria-errormessage"?: string | undefined;
1121
1121
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
1122
1122
  "aria-flowto"?: string | undefined;
@@ -67,7 +67,7 @@ export declare const UnCapturedContainer: import("@emotion/styled").StyledCompon
67
67
  "aria-description"?: string | undefined;
68
68
  "aria-details"?: string | undefined;
69
69
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
70
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
70
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
71
71
  "aria-errormessage"?: string | undefined;
72
72
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
73
73
  "aria-flowto"?: string | undefined;
@@ -329,7 +329,7 @@ export declare const ErrorCodeWrapper: import("@emotion/styled").StyledComponent
329
329
  "aria-description"?: string | undefined;
330
330
  "aria-details"?: string | undefined;
331
331
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
332
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
332
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
333
333
  "aria-errormessage"?: string | undefined;
334
334
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
335
335
  "aria-flowto"?: string | undefined;
@@ -591,7 +591,7 @@ export declare const ErrorCodeLabel: import("@emotion/styled").StyledComponent<{
591
591
  "aria-description"?: string | undefined;
592
592
  "aria-details"?: string | undefined;
593
593
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
594
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
594
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
595
595
  "aria-errormessage"?: string | undefined;
596
596
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
597
597
  "aria-flowto"?: string | undefined;
@@ -854,7 +854,7 @@ export declare const GatewayIconWrapper: import("@emotion/styled").StyledCompone
854
854
  "aria-description"?: string | undefined;
855
855
  "aria-details"?: string | undefined;
856
856
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
857
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
857
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
858
858
  "aria-errormessage"?: string | undefined;
859
859
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
860
860
  "aria-flowto"?: string | undefined;
@@ -1116,7 +1116,7 @@ export declare const GatewaysContainer: import("@emotion/styled").StyledComponen
1116
1116
  "aria-description"?: string | undefined;
1117
1117
  "aria-details"?: string | undefined;
1118
1118
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
1119
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
1119
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
1120
1120
  "aria-errormessage"?: string | undefined;
1121
1121
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
1122
1122
  "aria-flowto"?: string | undefined;
@@ -67,7 +67,7 @@ export declare const BalanceCellContainer: import("@emotion/styled").StyledCompo
67
67
  "aria-description"?: string | undefined;
68
68
  "aria-details"?: string | undefined;
69
69
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
70
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
70
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
71
71
  "aria-errormessage"?: string | undefined;
72
72
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
73
73
  "aria-flowto"?: string | undefined;
@@ -69,7 +69,7 @@ export declare const PaymentSourcesContainer: import("@emotion/styled").StyledCo
69
69
  "aria-description"?: string | undefined;
70
70
  "aria-details"?: string | undefined;
71
71
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
72
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
72
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
73
73
  "aria-errormessage"?: string | undefined;
74
74
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
75
75
  "aria-flowto"?: string | undefined;
@@ -67,7 +67,7 @@ export declare const DueDateCellContainer: import("@emotion/styled").StyledCompo
67
67
  "aria-description"?: string | undefined;
68
68
  "aria-details"?: string | undefined;
69
69
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
70
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
70
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
71
71
  "aria-errormessage"?: string | undefined;
72
72
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
73
73
  "aria-flowto"?: string | undefined;
@@ -67,7 +67,7 @@ export declare const UnCapturedContainer: import("@emotion/styled").StyledCompon
67
67
  "aria-description"?: string | undefined;
68
68
  "aria-details"?: string | undefined;
69
69
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
70
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
70
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
71
71
  "aria-errormessage"?: string | undefined;
72
72
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
73
73
  "aria-flowto"?: string | undefined;
@@ -329,7 +329,7 @@ export declare const ErrorCodeWrapper: import("@emotion/styled").StyledComponent
329
329
  "aria-description"?: string | undefined;
330
330
  "aria-details"?: string | undefined;
331
331
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
332
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
332
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
333
333
  "aria-errormessage"?: string | undefined;
334
334
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
335
335
  "aria-flowto"?: string | undefined;
@@ -591,7 +591,7 @@ export declare const ErrorCodeLabel: import("@emotion/styled").StyledComponent<{
591
591
  "aria-description"?: string | undefined;
592
592
  "aria-details"?: string | undefined;
593
593
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
594
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
594
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
595
595
  "aria-errormessage"?: string | undefined;
596
596
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
597
597
  "aria-flowto"?: string | undefined;
@@ -854,7 +854,7 @@ export declare const GatewayIconWrapper: import("@emotion/styled").StyledCompone
854
854
  "aria-description"?: string | undefined;
855
855
  "aria-details"?: string | undefined;
856
856
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
857
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
857
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
858
858
  "aria-errormessage"?: string | undefined;
859
859
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
860
860
  "aria-flowto"?: string | undefined;
@@ -1116,7 +1116,7 @@ export declare const GatewaysContainer: import("@emotion/styled").StyledComponen
1116
1116
  "aria-description"?: string | undefined;
1117
1117
  "aria-details"?: string | undefined;
1118
1118
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
1119
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
1119
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
1120
1120
  "aria-errormessage"?: string | undefined;
1121
1121
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
1122
1122
  "aria-flowto"?: string | undefined;
@@ -67,7 +67,7 @@ export declare const DueDateCellContainer: import("@emotion/styled").StyledCompo
67
67
  "aria-description"?: string | undefined;
68
68
  "aria-details"?: string | undefined;
69
69
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
70
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
70
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
71
71
  "aria-errormessage"?: string | undefined;
72
72
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
73
73
  "aria-flowto"?: string | undefined;
@@ -67,7 +67,7 @@ export declare const Button: import("@emotion/styled").StyledComponent<{
67
67
  "aria-description"?: string | undefined;
68
68
  "aria-details"?: string | undefined;
69
69
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
70
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
70
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
71
71
  "aria-errormessage"?: string | undefined;
72
72
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
73
73
  "aria-flowto"?: string | undefined;
@@ -331,7 +331,7 @@ export declare const RowId: import("@emotion/styled").StyledComponent<{
331
331
  "aria-description"?: string | undefined;
332
332
  "aria-details"?: string | undefined;
333
333
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
334
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
334
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
335
335
  "aria-errormessage"?: string | undefined;
336
336
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
337
337
  "aria-flowto"?: string | undefined;
@@ -67,7 +67,7 @@ export declare const DueDateCellContainer: import("@emotion/styled").StyledCompo
67
67
  "aria-description"?: string | undefined;
68
68
  "aria-details"?: string | undefined;
69
69
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
70
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
70
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
71
71
  "aria-errormessage"?: string | undefined;
72
72
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
73
73
  "aria-flowto"?: string | undefined;
@@ -67,7 +67,7 @@ export declare const DueDateCellContainer: import("@emotion/styled").StyledCompo
67
67
  "aria-description"?: string | undefined;
68
68
  "aria-details"?: string | undefined;
69
69
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
70
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
70
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
71
71
  "aria-errormessage"?: string | undefined;
72
72
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
73
73
  "aria-flowto"?: string | undefined;
@@ -67,7 +67,7 @@ export declare const UnCapturedContainer: import("@emotion/styled").StyledCompon
67
67
  "aria-description"?: string | undefined;
68
68
  "aria-details"?: string | undefined;
69
69
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
70
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
70
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
71
71
  "aria-errormessage"?: string | undefined;
72
72
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
73
73
  "aria-flowto"?: string | undefined;
@@ -329,7 +329,7 @@ export declare const ErrorCodeWrapper: import("@emotion/styled").StyledComponent
329
329
  "aria-description"?: string | undefined;
330
330
  "aria-details"?: string | undefined;
331
331
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
332
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
332
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
333
333
  "aria-errormessage"?: string | undefined;
334
334
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
335
335
  "aria-flowto"?: string | undefined;
@@ -591,7 +591,7 @@ export declare const ErrorCodeLabel: import("@emotion/styled").StyledComponent<{
591
591
  "aria-description"?: string | undefined;
592
592
  "aria-details"?: string | undefined;
593
593
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
594
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
594
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
595
595
  "aria-errormessage"?: string | undefined;
596
596
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
597
597
  "aria-flowto"?: string | undefined;
@@ -854,7 +854,7 @@ export declare const GatewayIconWrapper: import("@emotion/styled").StyledCompone
854
854
  "aria-description"?: string | undefined;
855
855
  "aria-details"?: string | undefined;
856
856
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
857
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
857
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
858
858
  "aria-errormessage"?: string | undefined;
859
859
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
860
860
  "aria-flowto"?: string | undefined;
@@ -1116,7 +1116,7 @@ export declare const GatewaysContainer: import("@emotion/styled").StyledComponen
1116
1116
  "aria-description"?: string | undefined;
1117
1117
  "aria-details"?: string | undefined;
1118
1118
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
1119
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
1119
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
1120
1120
  "aria-errormessage"?: string | undefined;
1121
1121
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
1122
1122
  "aria-flowto"?: string | undefined;
@@ -67,7 +67,7 @@ export declare const ProductCellContainer: import("@emotion/styled").StyledCompo
67
67
  "aria-description"?: string | undefined;
68
68
  "aria-details"?: string | undefined;
69
69
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
70
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
70
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
71
71
  "aria-errormessage"?: string | undefined;
72
72
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
73
73
  "aria-flowto"?: string | undefined;
@@ -69,7 +69,7 @@ export declare const ReferenceSourcesContainer: import("@emotion/styled").Styled
69
69
  "aria-description"?: string | undefined;
70
70
  "aria-details"?: string | undefined;
71
71
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
72
- "aria-dropeffect"?: "none" | "copy" | "link" | "move" | "execute" | "popup" | undefined;
72
+ "aria-dropeffect"?: "none" | "link" | "copy" | "move" | "execute" | "popup" | undefined;
73
73
  "aria-errormessage"?: string | undefined;
74
74
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
75
75
  "aria-flowto"?: string | undefined;