@transferwise/components 0.0.0-experimental-fb37b6d → 0.0.0-experimental-ad7e2f8

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 (43) hide show
  1. package/build/header/Header.js +34 -77
  2. package/build/header/Header.js.map +1 -1
  3. package/build/header/Header.mjs +31 -73
  4. package/build/header/Header.mjs.map +1 -1
  5. package/build/index.js +1 -1
  6. package/build/index.mjs +1 -1
  7. package/build/link/Link.js +3 -5
  8. package/build/link/Link.js.map +1 -1
  9. package/build/link/Link.mjs +3 -5
  10. package/build/link/Link.mjs.map +1 -1
  11. package/build/main.css +0 -3
  12. package/build/selectOption/SelectOption.js +1 -1
  13. package/build/selectOption/SelectOption.js.map +1 -1
  14. package/build/selectOption/SelectOption.mjs +1 -1
  15. package/build/styles/header/Header.css +0 -3
  16. package/build/styles/main.css +0 -3
  17. package/build/typeahead/util/highlight.js +4 -2
  18. package/build/typeahead/util/highlight.js.map +1 -1
  19. package/build/typeahead/util/highlight.mjs +5 -3
  20. package/build/typeahead/util/highlight.mjs.map +1 -1
  21. package/build/types/header/Header.d.ts +10 -43
  22. package/build/types/header/Header.d.ts.map +1 -1
  23. package/build/types/header/index.d.ts +0 -1
  24. package/build/types/header/index.d.ts.map +1 -1
  25. package/build/types/index.d.ts +0 -1
  26. package/build/types/index.d.ts.map +1 -1
  27. package/build/types/link/Link.d.ts +1 -3
  28. package/build/types/link/Link.d.ts.map +1 -1
  29. package/build/types/typeahead/util/highlight.d.ts +1 -1
  30. package/build/types/typeahead/util/highlight.d.ts.map +1 -1
  31. package/package.json +3 -3
  32. package/src/header/Header.css +0 -3
  33. package/src/header/Header.less +0 -4
  34. package/src/header/Header.spec.tsx +0 -7
  35. package/src/header/Header.story.tsx +40 -62
  36. package/src/header/Header.tsx +59 -123
  37. package/src/header/index.ts +0 -1
  38. package/src/index.ts +0 -1
  39. package/src/link/Link.tsx +27 -29
  40. package/src/main.css +0 -3
  41. package/src/typeahead/typeaheadOption/TypeaheadOption.spec.js +1 -1
  42. package/src/typeahead/util/highlight.spec.js +1 -1
  43. package/src/typeahead/util/highlight.tsx +3 -3
package/src/link/Link.tsx CHANGED
@@ -1,6 +1,6 @@
1
1
  import { NavigateAway as NavigateAwayIcon } from '@transferwise/icons';
2
2
  import { clsx } from 'clsx';
3
- import { AnchorHTMLAttributes, forwardRef } from 'react';
3
+ import { AnchorHTMLAttributes } from 'react';
4
4
  import { useIntl } from 'react-intl';
5
5
 
6
6
  import { LinkLarge, LinkDefault } from '../common';
@@ -14,35 +14,33 @@ export type Props = AnchorHTMLAttributes<HTMLAnchorElement> & { type?: LinkLarge
14
14
  *
15
15
  * Documentation: https://transferwise.github.io/neptune-web/components/content/Link
16
16
  */
17
- const Link = forwardRef<HTMLAnchorElement, Props>(
18
- (
19
- { className, children, href, target, type, 'aria-label': ariaLabel, onClick, ...props }: Props,
20
- ref,
21
- ) => {
22
- const isBlank = target === '_blank';
17
+ const Link = ({
18
+ className,
19
+ children,
20
+ href,
21
+ target,
22
+ type,
23
+ 'aria-label': ariaLabel,
24
+ onClick,
25
+ ...props
26
+ }: Props) => {
27
+ const isBlank = target === '_blank';
23
28
 
24
- const { formatMessage } = useIntl();
29
+ const { formatMessage } = useIntl();
25
30
 
26
- return (
27
- <a
28
- ref={ref}
29
- href={href}
30
- target={target}
31
- className={clsx(
32
- 'np-link',
33
- type ? `np-text-${type}` : undefined,
34
- 'd-inline-flex',
35
- className,
36
- )}
37
- aria-label={ariaLabel}
38
- rel={isBlank ? 'noreferrer' : undefined}
39
- onClick={onClick}
40
- {...props}
41
- >
42
- {children} {isBlank && <NavigateAwayIcon title={formatMessage(messages.opensInNewTab)} />}
43
- </a>
44
- );
45
- },
46
- );
31
+ return (
32
+ <a
33
+ href={href}
34
+ target={target}
35
+ className={clsx('np-link', type ? `np-text-${type}` : undefined, 'd-inline-flex', className)}
36
+ aria-label={ariaLabel}
37
+ rel={isBlank ? 'noreferrer' : undefined}
38
+ onClick={onClick}
39
+ {...props}
40
+ >
41
+ {children} {isBlank && <NavigateAwayIcon title={formatMessage(messages.opensInNewTab)} />}
42
+ </a>
43
+ );
44
+ };
47
45
 
48
46
  export default Link;
package/src/main.css CHANGED
@@ -2242,9 +2242,6 @@ html:not([dir="rtl"]) .np-flow-navigation--sm .np-flow-navigation__stepper {
2242
2242
  -moz-column-gap: var(--size-24);
2243
2243
  column-gap: var(--size-24);
2244
2244
  }
2245
- .np-header--section {
2246
- border-bottom: none;
2247
- }
2248
2245
  .np-header__title {
2249
2246
  color: #5d7079;
2250
2247
  color: var(--color-content-secondary);
@@ -8,7 +8,7 @@ describe('Typeahead Option', () => {
8
8
  let props;
9
9
  let component;
10
10
 
11
- const labelSpan = () => component.find('span:first-child');
11
+ const labelSpan = () => component.find('span > span');
12
12
  const noteSpan = () => component.find('.np-text-body-default.m-l-1');
13
13
  const secondaryTextSpan = () => component.find('.np-text-body-default.text-ellipsis');
14
14
  const dropdownItem = () => component.find('.dropdown-item');
@@ -21,7 +21,7 @@ describe('Typeahead input', () => {
21
21
  const label = `this is a label`;
22
22
  const result = highlight(label, query);
23
23
 
24
- expect(result).toBe(label);
24
+ expect(result).toStrictEqual(<span>{label}</span>);
25
25
  });
26
26
 
27
27
  it('highlights whole label that matches the query', () => {
@@ -4,13 +4,13 @@ export default function highlight(value: string, query: string) {
4
4
  const highlightEnd = highlightStart + query.trim().length;
5
5
  if (highlightStart !== -1) {
6
6
  return (
7
- <>
7
+ <span>
8
8
  {value.slice(0, Math.max(0, highlightStart))}
9
9
  <strong>{value.slice(highlightStart, highlightEnd)}</strong>
10
10
  {value.slice(Math.max(0, highlightEnd))}
11
- </>
11
+ </span>
12
12
  );
13
13
  }
14
14
  }
15
- return value;
15
+ return <span>{value}</span>;
16
16
  }