@transferwise/components 0.0.0-experimental-da6dbbf → 0.0.0-experimental-4c1cb43

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 (96) hide show
  1. package/build/index.js +635 -933
  2. package/build/index.js.map +1 -1
  3. package/build/index.mjs +625 -922
  4. package/build/index.mjs.map +1 -1
  5. package/build/main.css +0 -135
  6. package/build/styles/main.css +0 -135
  7. package/build/types/accordion/AccordionItem/AccordionItem.d.ts.map +1 -1
  8. package/build/types/common/card/Card.d.ts +2 -2
  9. package/build/types/common/card/Card.d.ts.map +1 -1
  10. package/build/types/common/hooks/useMedia.d.ts.map +1 -1
  11. package/build/types/common/panel/Panel.d.ts.map +1 -1
  12. package/build/types/common/responsivePanel/ResponsivePanel.d.ts.map +1 -1
  13. package/build/types/dateLookup/DateLookup.d.ts +6 -5
  14. package/build/types/dateLookup/DateLookup.d.ts.map +1 -1
  15. package/build/types/dimmer/Dimmer.d.ts +1 -11
  16. package/build/types/dimmer/Dimmer.d.ts.map +1 -1
  17. package/build/types/drawer/Drawer.d.ts +4 -4
  18. package/build/types/index.d.ts +3 -4
  19. package/build/types/index.d.ts.map +1 -1
  20. package/build/types/inputWithDisplayFormat/InputWithDisplayFormat.d.ts +2 -1
  21. package/build/types/inputWithDisplayFormat/InputWithDisplayFormat.d.ts.map +1 -1
  22. package/build/types/inputs/SelectInput.d.ts.map +1 -1
  23. package/build/types/inputs/contexts.d.ts +2 -2
  24. package/build/types/inputs/contexts.d.ts.map +1 -1
  25. package/build/types/modal/Modal.d.ts.map +1 -1
  26. package/build/types/processIndicator/ProcessIndicator.d.ts +36 -19
  27. package/build/types/processIndicator/ProcessIndicator.d.ts.map +1 -1
  28. package/build/types/processIndicator/index.d.ts +2 -2
  29. package/build/types/processIndicator/index.d.ts.map +1 -1
  30. package/build/types/promoCard/PromoCard.d.ts +5 -16
  31. package/build/types/promoCard/PromoCard.d.ts.map +1 -1
  32. package/build/types/select/searchBox/SearchBox.d.ts +1 -1
  33. package/build/types/textareaWithDisplayFormat/TextareaWithDisplayFormat.d.ts +2 -1
  34. package/build/types/textareaWithDisplayFormat/TextareaWithDisplayFormat.d.ts.map +1 -1
  35. package/build/types/tooltip/Tooltip.d.ts +1 -1
  36. package/build/types/tooltip/Tooltip.d.ts.map +1 -1
  37. package/build/types/uploadInput/uploadItem/UploadItem.d.ts.map +1 -1
  38. package/build/types/withDisplayFormat/WithDisplayFormat.d.ts +14 -14
  39. package/build/types/withDisplayFormat/WithDisplayFormat.d.ts.map +1 -1
  40. package/package.json +9 -13
  41. package/src/accordion/AccordionItem/AccordionItem.tsx +2 -4
  42. package/src/avatarWrapper/AvatarWrapper.story.tsx +1 -3
  43. package/src/button/Button.tsx +1 -1
  44. package/src/common/card/Card.tsx +43 -51
  45. package/src/common/hooks/useConditionalListener/useConditionalListener.spec.js +1 -1
  46. package/src/common/hooks/useHasIntersected/useHasIntersected.spec.js +3 -3
  47. package/src/common/hooks/useMedia.spec.ts +1 -1
  48. package/src/common/hooks/useMedia.ts +1 -2
  49. package/src/common/panel/Panel.tsx +90 -92
  50. package/src/common/responsivePanel/ResponsivePanel.tsx +34 -38
  51. package/src/dateLookup/DateLookup.rtl.spec.tsx +181 -5
  52. package/src/dateLookup/DateLookup.testingLibrary.spec.js +171 -124
  53. package/src/dateLookup/DateLookup.tsx +14 -9
  54. package/src/drawer/Drawer.js +3 -3
  55. package/src/field/Field.tsx +3 -3
  56. package/src/index.ts +3 -4
  57. package/src/inputWithDisplayFormat/InputWithDisplayFormat.tsx +2 -1
  58. package/src/inputs/SelectInput.story.tsx +2 -1
  59. package/src/inputs/SelectInput.tsx +10 -2
  60. package/src/inputs/contexts.tsx +4 -4
  61. package/src/main.css +0 -135
  62. package/src/main.less +0 -1
  63. package/src/modal/Modal.tsx +1 -2
  64. package/src/processIndicator/ProcessIndicator.rtl.spec.tsx +45 -0
  65. package/src/processIndicator/ProcessIndicator.tsx +110 -0
  66. package/src/promoCard/PromoCard.story.tsx +2 -2
  67. package/src/promoCard/PromoCard.tsx +9 -31
  68. package/src/radio/__snapshots__/Radio.rtl.spec.tsx.snap +0 -1
  69. package/src/snackbar/Snackbar.spec.js +4 -1
  70. package/src/snackbar/Snackbar.story.tsx +4 -2
  71. package/src/tabs/Tabs.spec.js +46 -27
  72. package/src/test-utils/index.js +5 -7
  73. package/src/test-utils/jest.setup.js +9 -3
  74. package/src/textareaWithDisplayFormat/TextareaWithDisplayFormat.tsx +2 -1
  75. package/src/tooltip/Tooltip.tsx +44 -46
  76. package/src/tooltip/__snapshots__/Tooltip.spec.tsx.snap +2 -2
  77. package/src/upload/Upload.spec.js +34 -13
  78. package/src/uploadInput/UploadInput.spec.tsx +21 -23
  79. package/src/uploadInput/uploadItem/UploadItem.tsx +1 -3
  80. package/src/withDisplayFormat/WithDisplayFormat.spec.js +63 -32
  81. package/src/withDisplayFormat/WithDisplayFormat.tsx +28 -28
  82. package/build/styles/carousel/Carousel.css +0 -135
  83. package/build/types/carousel/Carousel.d.ts +0 -26
  84. package/build/types/carousel/Carousel.d.ts.map +0 -1
  85. package/build/types/carousel/index.d.ts +0 -3
  86. package/build/types/carousel/index.d.ts.map +0 -1
  87. package/src/carousel/Carousel.css +0 -135
  88. package/src/carousel/Carousel.less +0 -133
  89. package/src/carousel/Carousel.spec.tsx +0 -221
  90. package/src/carousel/Carousel.story.tsx +0 -63
  91. package/src/carousel/Carousel.tsx +0 -345
  92. package/src/carousel/index.ts +0 -3
  93. package/src/dateLookup/DateLookup.keyboardEvents.spec.js +0 -180
  94. package/src/processIndicator/ProcessIndicator.js +0 -117
  95. package/src/processIndicator/ProcessIndicator.spec.js +0 -101
  96. /package/src/processIndicator/{index.js → index.ts} +0 -0
@@ -1,3 +1,3 @@
1
- export { default } from "./ProcessIndicator";
2
- export * from "./ProcessIndicator";
1
+ export { default } from './ProcessIndicator';
2
+ export * from './ProcessIndicator';
3
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/processIndicator/index.js"],"names":[],"mappings":""}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/processIndicator/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAC7C,cAAc,oBAAoB,CAAC"}
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
- import { type CardProps } from '../common/card';
3
- import { type PromoCardIndicatorProps } from './PromoCardIndicator';
4
- export type ReferenceType = React.Ref<HTMLInputElement> | React.Ref<HTMLDivElement>;
2
+ import { CardProps } from '../common/card';
3
+ import { PromoCardIndicatorProps } from './PromoCardIndicator';
4
+ export type ReferenceType = React.Ref<HTMLInputElement>;
5
5
  export type RelatedTypes = '' | 'alternate' | 'author' | 'bookmark' | 'external' | 'help' | 'license' | 'next' | 'nofollow' | 'noreferrer' | 'noopener' | 'prev' | 'search' | 'tag';
6
6
  export interface PromoCardCommonProps {
7
7
  /** Optional prop to specify classNames onto the PromoCard */
@@ -30,15 +30,12 @@ export interface PromoCardCommonProps {
30
30
  isDisabled?: boolean;
31
31
  /** Specify an onClick event handler */
32
32
  onClick?: () => void;
33
- /** Specify an onKeyDown event handler */
34
- onKeyDown?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
35
33
  /** Optional prop to specify the ID used for testing */
36
34
  testId?: string;
37
35
  /** Required prop to specify the title text of the PromoCard */
38
36
  title: string;
39
37
  /** Set to false to use body font style for the title */
40
38
  useDisplayFont?: boolean;
41
- ref?: ReferenceType;
42
39
  }
43
40
  export interface PromoCardLinkProps extends PromoCardCommonProps, Omit<CardProps, 'children'> {
44
41
  /**
@@ -50,12 +47,6 @@ export interface PromoCardLinkProps extends PromoCardCommonProps, Omit<CardProps
50
47
  href?: string;
51
48
  /** Optionally specify the language of the linked URL */
52
49
  hrefLang?: string;
53
- /** Optional property that can be pass a ref for the anchor. */
54
- anchorRef?: React.Ref<HTMLAnchorElement>;
55
- /**
56
- * Optional prop to specify the ID of the anchor element which can be useful when using a ref.
57
- */
58
- anchorId?: string;
59
50
  /**
60
51
  * Relationship between the PromoCard href URL and the current page. See
61
52
  * [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel).
@@ -68,7 +59,7 @@ export interface PromoCardLinkProps extends PromoCardCommonProps, Omit<CardProps
68
59
  isChecked?: never;
69
60
  tabIndex?: never;
70
61
  type?: never;
71
- ref?: ReferenceType;
62
+ reference?: never;
72
63
  value?: never;
73
64
  }
74
65
  export interface PromoCardCheckedProps extends PromoCardCommonProps, Omit<CardProps, 'children'> {
@@ -79,7 +70,7 @@ export interface PromoCardCheckedProps extends PromoCardCommonProps, Omit<CardPr
79
70
  /** Optional prop to specify the tabIndex of the PromoCard */
80
71
  tabIndex?: number;
81
72
  /** Optional property to provide component Ref */
82
- ref?: ReferenceType;
73
+ reference?: ReferenceType;
83
74
  /** Optional prop to specify the input type of the PromoCard */
84
75
  type?: 'checkbox' | 'radio';
85
76
  /** Specify the value attribute of the PromoCard if Checkbox or Radio */
@@ -87,8 +78,6 @@ export interface PromoCardCheckedProps extends PromoCardCommonProps, Omit<CardPr
87
78
  /** Only applies to <a />s */
88
79
  download?: never;
89
80
  href?: never;
90
- anchorRef?: never;
91
- anchorId?: never;
92
81
  hrefLang?: never;
93
82
  rel?: never;
94
83
  target?: never;
@@ -1 +1 @@
1
- {"version":3,"file":"PromoCard.d.ts","sourceRoot":"","sources":["../../../src/promoCard/PromoCard.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"PromoCard.d.ts","sourceRoot":"","sources":["../../../src/promoCard/PromoCard.tsx"],"names":[],"mappings":"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"}
@@ -3,6 +3,6 @@ declare const SearchBox: import("react").ForwardRefExoticComponent<{
3
3
  id?: string | undefined;
4
4
  classNames?: Record<string, string> | undefined;
5
5
  focusedOptionId?: string | undefined;
6
- } & Pick<InputHTMLAttributes<HTMLInputElement>, "placeholder" | "onChange" | "onClick" | "value"> & import("react").RefAttributes<HTMLInputElement>>;
6
+ } & Pick<InputHTMLAttributes<HTMLInputElement>, "onChange" | "onClick" | "value" | "placeholder"> & import("react").RefAttributes<HTMLInputElement>>;
7
7
  export default SearchBox;
8
8
  //# sourceMappingURL=SearchBox.d.ts.map
@@ -1,6 +1,7 @@
1
1
  /// <reference types="react" />
2
+ import { type TextAreaProps } from '../inputs/TextArea';
2
3
  import { type WithDisplayFormatProps } from '../withDisplayFormat';
3
- export interface TextareaWithDisplayFormatProps extends Omit<WithDisplayFormatProps, 'render'> {
4
+ export interface TextareaWithDisplayFormatProps extends Omit<WithDisplayFormatProps<TextAreaProps>, 'render'> {
4
5
  }
5
6
  declare const TextareaWithDisplayFormat: (props: TextareaWithDisplayFormatProps) => import("react").JSX.Element;
6
7
  export default TextareaWithDisplayFormat;
@@ -1 +1 @@
1
- {"version":3,"file":"TextareaWithDisplayFormat.d.ts","sourceRoot":"","sources":["../../../src/textareaWithDisplayFormat/TextareaWithDisplayFormat.tsx"],"names":[],"mappings":";AACA,OAA0B,EAAE,KAAK,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAEtF,MAAM,WAAW,8BAA+B,SAAQ,IAAI,CAAC,sBAAsB,EAAE,QAAQ,CAAC;CAAG;AAEjG,QAAA,MAAM,yBAAyB,UAAW,8BAA8B,gCAKvE,CAAC;AAEF,eAAe,yBAAyB,CAAC"}
1
+ {"version":3,"file":"TextareaWithDisplayFormat.d.ts","sourceRoot":"","sources":["../../../src/textareaWithDisplayFormat/TextareaWithDisplayFormat.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAY,KAAK,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAClE,OAA0B,EAAE,KAAK,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAEtF,MAAM,WAAW,8BACf,SAAQ,IAAI,CAAC,sBAAsB,CAAC,aAAa,CAAC,EAAE,QAAQ,CAAC;CAAG;AAElE,QAAA,MAAM,yBAAyB,UAAW,8BAA8B,gCAKvE,CAAC;AAEF,eAAe,yBAAyB,CAAC"}
@@ -1,4 +1,4 @@
1
- import { ReactNode, PropsWithChildren } from 'react';
1
+ import { PropsWithChildren, ReactNode } from 'react';
2
2
  import { CommonProps } from '../common';
3
3
  import { PositionBottom, PositionLeft, PositionRight, PositionTop } from '../common/propsValues/position';
4
4
  export type TooltipProps = PropsWithChildren<{
@@ -1 +1 @@
1
- {"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../../../src/tooltip/Tooltip.tsx"],"names":[],"mappings":"AAGA,OAAO,EAKL,SAAS,EAET,iBAAiB,EAClB,MAAM,OAAO,CAAC;AAGf,OAAO,EAAE,WAAW,EAAY,MAAM,WAAW,CAAC;AAClD,OAAO,EACL,cAAc,EACd,YAAY,EACZ,aAAa,EACb,WAAW,EACZ,MAAM,gCAAgC,CAAC;AAExC,MAAM,MAAM,YAAY,GAAG,iBAAiB,CAAC;IAC3C,QAAQ,CAAC,EAAE,WAAW,GAAG,aAAa,GAAG,cAAc,GAAG,YAAY,CAAC;IACvE,KAAK,EAAE,SAAS,CAAC;IACjB,EAAE,CAAC,EAAE,MAAM,CAAC;CACb,CAAC,GACA,WAAW,CAAC;AAEd,QAAA,MAAM,OAAO,kDAMV,YAAY,gCAsFd,CAAC;AAEF,eAAe,OAAO,CAAC"}
1
+ {"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../../../src/tooltip/Tooltip.tsx"],"names":[],"mappings":"AAEA,OAAO,EACL,iBAAiB,EAEjB,SAAS,EAMV,MAAM,OAAO,CAAC;AAGf,OAAO,EAAE,WAAW,EAAY,MAAM,WAAW,CAAC;AAClD,OAAO,EACL,cAAc,EACd,YAAY,EACZ,aAAa,EACb,WAAW,EACZ,MAAM,gCAAgC,CAAC;AAExC,MAAM,MAAM,YAAY,GAAG,iBAAiB,CAAC;IAC3C,QAAQ,CAAC,EAAE,WAAW,GAAG,aAAa,GAAG,cAAc,GAAG,YAAY,CAAC;IACvE,KAAK,EAAE,SAAS,CAAC;IACjB,EAAE,CAAC,EAAE,MAAM,CAAC;CACb,CAAC,GACA,WAAW,CAAC;AAEd,QAAA,MAAM,OAAO,kDAMV,YAAY,gCAoFd,CAAC;AAEF,eAAe,OAAO,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"UploadItem.d.ts","sourceRoot":"","sources":["../../../../src/uploadInput/uploadItem/UploadItem.tsx"],"names":[],"mappings":";AAUA,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAKxC,MAAM,MAAM,eAAe,GAAG,GAAG,CAAC,mBAAmB,GAAG;IACtD,IAAI,EAAE,YAAY,CAAC;IACnB;;OAEG;IACH,gBAAgB,EAAE,OAAO,CAAC;IAC1B,SAAS,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,MAAM,IAAI,CAAC;IAErB;;;;;OAKG;IACH,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,YAAY,KAAK,IAAI,CAAC;CAC3C,CAAC;AAEF,oBAAY,QAAQ;IAClB,UAAU,eAAe;IACzB,SAAS,cAAc;CACxB;AAED,QAAA,MAAM,UAAU,iEAMb,eAAe,gCAqHjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
1
+ {"version":3,"file":"UploadItem.d.ts","sourceRoot":"","sources":["../../../../src/uploadInput/uploadItem/UploadItem.tsx"],"names":[],"mappings":";AAUA,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAKxC,MAAM,MAAM,eAAe,GAAG,GAAG,CAAC,mBAAmB,GAAG;IACtD,IAAI,EAAE,YAAY,CAAC;IACnB;;OAEG;IACH,gBAAgB,EAAE,OAAO,CAAC;IAC1B,SAAS,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,MAAM,IAAI,CAAC;IAErB;;;;;OAKG;IACH,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,YAAY,KAAK,IAAI,CAAC;CAC3C,CAAC;AAEF,oBAAY,QAAQ;IAClB,UAAU,eAAe;IACzB,SAAS,cAAc;CACxB;AAED,QAAA,MAAM,UAAU,iEAMb,eAAe,gCAmHjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -5,17 +5,17 @@ import { TextAreaProps } from '../inputs/TextArea';
5
5
  type HTMLTextElement = HTMLInputElement | HTMLTextAreaElement;
6
6
  type TextElementProps = InputProps | TextAreaProps;
7
7
  export type EventType = 'KeyDown' | 'Paste' | 'Cut' | 'Undo' | 'Redo' | 'Backspace' | 'Delete' | 'Initial';
8
- interface WithDisplayFormatState {
8
+ interface WithDisplayFormatState<T extends HTMLTextElement> {
9
9
  value: string;
10
10
  historyNavigator: HistoryNavigator;
11
11
  prevDisplayPattern: string;
12
12
  triggerType: EventType;
13
- triggerEvent: React.KeyboardEvent<HTMLTextElement> | null;
13
+ triggerEvent: React.KeyboardEvent<T> | null;
14
14
  pastedLength: number;
15
15
  selectionStart: number;
16
16
  selectionEnd: number;
17
17
  }
18
- export interface WithDisplayFormatProps<T extends TextElementProps = TextElementProps> extends Pick<TextElementProps, 'className' | 'disabled' | 'id' | 'maxLength' | 'minLength' | 'name' | 'placeholder' | 'readOnly' | 'required' | 'inputMode'> {
18
+ export interface WithDisplayFormatProps<T extends TextElementProps = TextElementProps> extends Pick<T, 'className' | 'disabled' | 'id' | 'maxLength' | 'minLength' | 'name' | 'placeholder' | 'readOnly' | 'required' | 'inputMode'> {
19
19
  value?: string;
20
20
  displayPattern: string;
21
21
  /**
@@ -29,15 +29,15 @@ export interface WithDisplayFormatProps<T extends TextElementProps = TextElement
29
29
  onFocus?: (value: string) => void;
30
30
  render: (renderProps: T) => JSX.Element;
31
31
  }
32
- declare class WithDisplayFormat<T extends TextElementProps> extends Component<WithDisplayFormatProps<T>, WithDisplayFormatState> {
33
- props: WithDisplayFormatProps<T> & Required<Pick<WithDisplayFormatProps<T>, keyof typeof WithDisplayFormat.defaultProps>>;
32
+ declare class WithDisplayFormat<T extends TextElementProps = TextElementProps, U extends HTMLTextElement = HTMLTextElement> extends Component<WithDisplayFormatProps<T>, WithDisplayFormatState<U>> {
33
+ props: WithDisplayFormatProps<T> & Required<Pick<WithDisplayFormatProps<T>, keyof (typeof WithDisplayFormat<T, U>)['defaultProps']>>;
34
34
  static defaultProps: {
35
35
  autoComplete: string;
36
36
  displayPattern: string;
37
37
  value: string;
38
38
  };
39
- constructor(props: WithDisplayFormatProps);
40
- static getDerivedStateFromProps({ displayPattern }: WithDisplayFormatProps, { prevDisplayPattern, value, historyNavigator }: WithDisplayFormatState): {
39
+ constructor(props: WithDisplayFormat<T, U>['props']);
40
+ static getDerivedStateFromProps({ displayPattern }: WithDisplayFormat['props'], { prevDisplayPattern, value, historyNavigator }: WithDisplayFormat['state']): {
41
41
  prevDisplayPattern: string;
42
42
  value: string;
43
43
  triggerType: null;
@@ -46,14 +46,14 @@ declare class WithDisplayFormat<T extends TextElementProps> extends Component<Wi
46
46
  } | null;
47
47
  getUserAction: (unformattedValue: string) => EventType | string;
48
48
  resetEvent: () => void;
49
- detectUndoRedo: (event: React.KeyboardEvent<HTMLTextElement>) => "Undo" | "Redo" | null;
50
- handleOnKeyDown: React.KeyboardEventHandler<HTMLTextElement>;
51
- handleOnPaste: React.ClipboardEventHandler<HTMLTextElement>;
52
- handleOnCut: React.ClipboardEventHandler<HTMLTextElement>;
49
+ detectUndoRedo: (event: React.KeyboardEvent<U>) => "Undo" | "Redo" | null;
50
+ handleOnKeyDown: React.KeyboardEventHandler<U>;
51
+ handleOnPaste: React.ClipboardEventHandler<U>;
52
+ handleOnCut: React.ClipboardEventHandler<U>;
53
53
  isKeyAllowed: (action: EventType | string) => boolean;
54
- handleOnChange: React.ChangeEventHandler<HTMLTextElement>;
55
- handleOnBlur: React.FocusEventHandler<HTMLTextElement>;
56
- handleOnFocus: React.FocusEventHandler<HTMLTextElement>;
54
+ handleOnChange: React.ChangeEventHandler<U>;
55
+ handleOnBlur: React.FocusEventHandler<U>;
56
+ handleOnFocus: React.FocusEventHandler<U>;
57
57
  handleDelete: (unformattedValue: string, action: EventType) => string;
58
58
  handleCursorPositioning: (action: string) => void;
59
59
  render(): JSX.Element;
@@ -1 +1 @@
1
- {"version":3,"file":"WithDisplayFormat.d.ts","sourceRoot":"","sources":["../../../src/withDisplayFormat/WithDisplayFormat.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"WithDisplayFormat.d.ts","sourceRoot":"","sources":["../../../src/withDisplayFormat/WithDisplayFormat.tsx"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transferwise/components",
3
- "version": "0.0.0-experimental-da6dbbf",
3
+ "version": "0.0.0-experimental-4c1cb43",
4
4
  "description": "Neptune React components",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -43,6 +43,7 @@
43
43
  "@babel/preset-env": "^7.24.5",
44
44
  "@babel/preset-react": "^7.24.1",
45
45
  "@babel/preset-typescript": "^7.24.1",
46
+ "@cfaester/enzyme-adapter-react-18": "0.8.0",
46
47
  "@formatjs/cli": "^6.2.10",
47
48
  "@rollup/plugin-babel": "^6.0.4",
48
49
  "@rollup/plugin-json": "^6.1.0",
@@ -65,10 +66,9 @@
65
66
  "@storybook/test": "^7.6.19",
66
67
  "@storybook/theming": "^7.6.19",
67
68
  "@storybook/types": "^7.6.19",
68
- "@testing-library/dom": "^7.31.2",
69
+ "@testing-library/dom": "^8.20.1",
69
70
  "@testing-library/jest-dom": "^5.17.0",
70
- "@testing-library/react": "^12.1.5",
71
- "@testing-library/react-hooks": "^8.0.1",
71
+ "@testing-library/react": "^13.4.0",
72
72
  "@testing-library/user-event": "^13.5.0",
73
73
  "@transferwise/icons": "^3.7.0",
74
74
  "@transferwise/neptune-tokens": "^8.9.2",
@@ -79,13 +79,11 @@
79
79
  "@types/lodash": "4.17.1",
80
80
  "@types/lodash.clamp": "^4.0.9",
81
81
  "@types/lodash.debounce": "^4.0.9",
82
- "@types/react": "^17.0.80",
83
- "@types/react-dom": "^17.0.25",
82
+ "@types/react": "^18.3.3",
83
+ "@types/react-dom": "^18.3.0",
84
84
  "@types/react-transition-group": "4.4.10",
85
85
  "@types/testing-library__jest-dom": "^5.14.9",
86
- "@types/use-sync-external-store": "^0.0.6",
87
86
  "@wise/art": "^2.7.0",
88
- "@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
89
87
  "babel-plugin-formatjs": "^10.5.14",
90
88
  "babel-plugin-inline-react-svg": "^2.0.2",
91
89
  "enzyme": "^3.11.0",
@@ -97,8 +95,8 @@
97
95
  "rollup": "^4.17.2",
98
96
  "storybook": "^7.6.19",
99
97
  "@transferwise/less-config": "3.1.0",
100
- "@transferwise/neptune-css": "14.10.0",
101
- "@wise/components-theming": "1.2.2"
98
+ "@wise/components-theming": "1.2.2",
99
+ "@transferwise/neptune-css": "14.10.0"
102
100
  },
103
101
  "peerDependencies": {
104
102
  "@transferwise/icons": "^3.7.0",
@@ -115,7 +113,6 @@
115
113
  "@formatjs/intl-locale": "^3.4.5",
116
114
  "@headlessui/react": "^1.7.19",
117
115
  "@popperjs/core": "^2.11.8",
118
- "@radix-ui/react-id": "^1.0.1",
119
116
  "@react-aria/focus": "^3.17.0",
120
117
  "@react-aria/overlays": "^3.22.0",
121
118
  "@react-spring/web": "~9.7.3",
@@ -131,8 +128,7 @@
131
128
  "prop-types": "^15.8.1",
132
129
  "react-popper": "^2.3.0",
133
130
  "react-required-if": "^1.0.3",
134
- "react-transition-group": "^4.4.5",
135
- "use-sync-external-store": "^1.2.2"
131
+ "react-transition-group": "^4.4.5"
136
132
  },
137
133
  "publishConfig": {
138
134
  "access": "public"
@@ -1,7 +1,5 @@
1
- import { useId } from '@radix-ui/react-id';
2
- import { useTheme } from '@wise/components-theming';
3
1
  import classNames from 'classnames';
4
- import { cloneElement, FC, ReactNode } from 'react';
2
+ import { cloneElement, FC, useId, ReactNode } from 'react';
5
3
 
6
4
  import Body from '../../body';
7
5
  import Chevron from '../../chevron';
@@ -75,7 +73,7 @@ const AccordionItem: FC<AccordionItemProps> = ({
75
73
  icon,
76
74
  theme = 'light',
77
75
  }) => {
78
- const iconElement = icon ? cloneElement(icon as React.ReactElement<any>, { size: 24 }) : null;
76
+ const iconElement = icon ? cloneElement(icon as React.ReactElement, { size: 24 }) : null;
79
77
  const fallbackId = useId();
80
78
  const accordionId = id ?? fallbackId;
81
79
 
@@ -1,7 +1,5 @@
1
1
  import { Meta, StoryObj } from '@storybook/react';
2
- import { ComponentProps } from 'react';
3
2
 
4
- import Avatar from '../avatar/Avatar';
5
3
  import { ProfileType, Sentiment } from '../common';
6
4
 
7
5
  import AvatarWrapper from './AvatarWrapper';
@@ -18,7 +16,7 @@ export const All: Story = {
18
16
  avatarProps: { outlined: true },
19
17
  },
20
18
  render: (args) => {
21
- const avatarProps = args.avatarProps as ComponentProps<typeof Avatar>;
19
+ const { avatarProps } = args;
22
20
  const badgeUrl = 'https://wise.com/public-resources/assets/brand/fast_flag_badge_personal.svg';
23
21
 
24
22
  return (
@@ -98,7 +98,7 @@ const Button = forwardRef<ButtonReferenceType, Props>(
98
98
  className,
99
99
  );
100
100
 
101
- function processIndicatorSize(): string {
101
+ function processIndicatorSize() {
102
102
  return ['sm', 'xs'].includes(size) ? 'xxs' : 'xs';
103
103
  }
104
104
 
@@ -1,5 +1,5 @@
1
1
  import classNames from 'classnames';
2
- import { MouseEvent, type ReactNode, forwardRef, useRef } from 'react';
2
+ import { MouseEvent, ReactNode, useRef } from 'react';
3
3
 
4
4
  import { CloseButton } from '../closeButton';
5
5
  import { stopPropagation } from '../domHelpers';
@@ -48,56 +48,48 @@ export interface CardProps {
48
48
  * <p>Hello World!</p>
49
49
  * </Card>
50
50
  */
51
- const Card = forwardRef<HTMLDivElement, CardProps>(
52
- (
53
- {
54
- className,
55
- children = null,
56
- id,
57
- isDisabled = false,
58
- isSmall = false,
59
- onDismiss,
60
- testId,
61
- ...props
62
- },
63
- ref,
64
- ) => {
65
- const closeButtonReference = useRef(null);
51
+ const Card: React.FC<CardProps> = ({
52
+ className,
53
+ children = null,
54
+ id,
55
+ isDisabled = false,
56
+ isSmall = false,
57
+ onDismiss,
58
+ testId,
59
+ ...props
60
+ }) => {
61
+ const closeButtonReference = useRef(null);
66
62
 
67
- return (
68
- <div
69
- ref={ref}
70
- className={classNames(
71
- 'np-Card',
72
- {
73
- 'np-Card--small': !!isSmall,
74
- 'is-disabled': !!isDisabled,
75
- },
76
- className,
77
- )}
78
- id={id}
79
- data-testid={testId}
80
- {...props}
81
- >
82
- {onDismiss && (
83
- <CloseButton
84
- ref={closeButtonReference}
85
- className="np-Card-closeButton"
86
- size={isSmall ? 'sm' : 'md'}
87
- isDisabled={isDisabled}
88
- testId="close-button"
89
- onClick={(e) => {
90
- stopPropagation(e);
91
- onDismiss();
92
- }}
93
- />
94
- )}
95
- {children}
96
- </div>
97
- );
98
- },
99
- );
100
-
101
- Card.displayName = 'Card';
63
+ return (
64
+ <div
65
+ className={classNames(
66
+ 'np-Card',
67
+ {
68
+ 'np-Card--small': !!isSmall,
69
+ 'is-disabled': !!isDisabled,
70
+ },
71
+ className,
72
+ )}
73
+ id={id}
74
+ data-testid={testId}
75
+ {...props}
76
+ >
77
+ {onDismiss && (
78
+ <CloseButton
79
+ ref={closeButtonReference}
80
+ className="np-Card-closeButton"
81
+ size={isSmall ? 'sm' : 'md'}
82
+ isDisabled={isDisabled}
83
+ testId="close-button"
84
+ onClick={(e) => {
85
+ stopPropagation(e);
86
+ onDismiss();
87
+ }}
88
+ />
89
+ )}
90
+ {children}
91
+ </div>
92
+ );
93
+ };
102
94
 
103
95
  export default Card;
@@ -1,4 +1,4 @@
1
- import { act, renderHook } from '@testing-library/react-hooks';
1
+ import { act, renderHook } from '@testing-library/react';
2
2
 
3
3
  import { fireEvent } from '../../../test-utils';
4
4
 
@@ -1,4 +1,4 @@
1
- import { renderHook } from '@testing-library/react-hooks';
1
+ import { renderHook } from '@testing-library/react';
2
2
 
3
3
  import useHasIntersected from '.';
4
4
 
@@ -90,8 +90,8 @@ describe('useHasIntersected', () => {
90
90
 
91
91
  describe('calls unobserve with correct ref', () => {
92
92
  it('when component unmounts before unobserve is called', () => {
93
- let current = 'a valid ref';
94
- let reference = { current };
93
+ const current = 'a valid ref';
94
+ const reference = { current };
95
95
 
96
96
  setupIntersectionObserver(true);
97
97
  observe = jest.fn(() => {
@@ -1,4 +1,4 @@
1
- import { renderHook } from '@testing-library/react-hooks';
1
+ import { renderHook } from '@testing-library/react';
2
2
 
3
3
  import { mockMatchMedia } from '../../test-utils/window-mock';
4
4
 
@@ -1,5 +1,4 @@
1
- // eslint-disable-next-line import/extensions
2
- import { useSyncExternalStore } from 'use-sync-external-store/shim/index.js';
1
+ import { useSyncExternalStore } from 'react';
3
2
 
4
3
  export function useMedia(query: string) {
5
4
  return useSyncExternalStore(