@transferwise/components 46.148.1 → 46.149.1

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 (84) hide show
  1. package/build/flowNavigation/FlowNavigation.js +56 -42
  2. package/build/flowNavigation/FlowNavigation.js.map +1 -1
  3. package/build/flowNavigation/FlowNavigation.mjs +56 -42
  4. package/build/flowNavigation/FlowNavigation.mjs.map +1 -1
  5. package/build/main.css +52 -28
  6. package/build/overlayHeader/OverlayHeader.js +3 -0
  7. package/build/overlayHeader/OverlayHeader.js.map +1 -1
  8. package/build/overlayHeader/OverlayHeader.mjs +3 -0
  9. package/build/overlayHeader/OverlayHeader.mjs.map +1 -1
  10. package/build/prompt/CriticalBanner/CriticalBanner.js +1 -1
  11. package/build/prompt/CriticalBanner/CriticalBanner.js.map +1 -1
  12. package/build/prompt/CriticalBanner/CriticalBanner.mjs +1 -1
  13. package/build/prompt/CriticalBanner/CriticalBanner.mjs.map +1 -1
  14. package/build/styles/avatarView/AvatarView.css +1 -0
  15. package/build/styles/css/neptune.css +11 -11
  16. package/build/styles/flowNavigation/FlowNavigation.css +16 -2
  17. package/build/styles/less/legacy-variables.less +1 -1
  18. package/build/styles/less/neptune-tokens.less +2 -2
  19. package/build/styles/main.css +52 -28
  20. package/build/styles/prompt/CriticalBanner/CriticalBanner.css +19 -12
  21. package/build/styles/props/custom-media.css +1 -1
  22. package/build/styles/props/neptune-tokens.css +1 -1
  23. package/build/styles/sentimentSurface/SentimentSurface.css +1 -1
  24. package/build/styles/styles/less/neptune.css +11 -11
  25. package/build/types/flowNavigation/FlowNavigation.d.ts +15 -3
  26. package/build/types/flowNavigation/FlowNavigation.d.ts.map +1 -1
  27. package/build/types/overlayHeader/OverlayHeader.d.ts +6 -0
  28. package/build/types/overlayHeader/OverlayHeader.d.ts.map +1 -1
  29. package/package.json +15 -15
  30. package/src/avatarView/AvatarView.css +1 -0
  31. package/src/avatarView/AvatarView.less +3 -1
  32. package/src/body/Body.story.tsx +1 -5
  33. package/src/calendar/Calendar.story.tsx +1 -4
  34. package/src/checkbox/Checkbox.story.tsx +1 -4
  35. package/src/chevron/Chevron.story.tsx +1 -1
  36. package/src/container/Container.story.tsx +1 -4
  37. package/src/dateInput/DateInput.story.tsx +1 -4
  38. package/src/dateLookup/DateLookup.story.tsx +1 -4
  39. package/src/decision/Decision.story.tsx +1 -4
  40. package/src/definitionList/DefinitionList.story.tsx +1 -4
  41. package/src/dimmer/Dimmer.story.tsx +1 -5
  42. package/src/display/Display.story.tsx +1 -4
  43. package/src/emphasis/Emphasis.story.tsx +1 -5
  44. package/src/expressiveMoneyInput/ExpressiveMoneyInput.story.tsx +1 -4
  45. package/src/field/Field.story.tsx +1 -4
  46. package/src/flowNavigation/FlowNavigation.css +16 -2
  47. package/src/flowNavigation/FlowNavigation.less +20 -4
  48. package/src/flowNavigation/FlowNavigation.story.tsx +249 -0
  49. package/src/flowNavigation/FlowNavigation.tsx +91 -58
  50. package/src/header/Header.story.tsx +1 -4
  51. package/src/inputWithDisplayFormat/InputWithDisplayFormat.story.tsx +1 -4
  52. package/src/inputs/InputGroup.story.tsx +1 -4
  53. package/src/inputs/SearchInput.story.tsx +1 -4
  54. package/src/inputs/TextArea.story.tsx +1 -4
  55. package/src/instructionsList/InstructionsList.story.tsx +1 -4
  56. package/src/label/Label.story.tsx +1 -4
  57. package/src/link/Link.story.tsx +1 -4
  58. package/src/loader/Loader.story.tsx +1 -1
  59. package/src/main.css +52 -28
  60. package/src/markdown/Markdown.story.tsx +1 -5
  61. package/src/money/Money.story.tsx +0 -1
  62. package/src/moneyInput/MoneyInput.story.tsx +1 -4
  63. package/src/overlayHeader/OverlayHeader.story.tsx +4 -0
  64. package/src/overlayHeader/OverlayHeader.tsx +6 -0
  65. package/src/phoneNumberInput/PhoneNumberInput.story.tsx +1 -4
  66. package/src/promoCard/PromoCard.story.tsx +1 -4
  67. package/src/promoCard/PromoCardGroup.story.tsx +1 -4
  68. package/src/prompt/CriticalBanner/CriticalBanner.css +19 -12
  69. package/src/prompt/CriticalBanner/CriticalBanner.less +33 -25
  70. package/src/prompt/CriticalBanner/CriticalBanner.story.tsx +22 -11
  71. package/src/prompt/CriticalBanner/CriticalBanner.test.story.tsx +71 -0
  72. package/src/prompt/CriticalBanner/CriticalBanner.tsx +1 -1
  73. package/src/radio/Radio.story.tsx +1 -4
  74. package/src/radioGroup/RadioGroup.story.tsx +1 -4
  75. package/src/segmentedControl/SegmentedControl.story.tsx +1 -4
  76. package/src/sentimentSurface/SentimentSurface.css +1 -1
  77. package/src/statusIcon/StatusIcon.story.tsx +1 -1
  78. package/src/styles/less/neptune.css +11 -11
  79. package/src/textareaWithDisplayFormat/TextareaWithDisplayFormat.story.tsx +1 -4
  80. package/src/title/Title.story.tsx +1 -5
  81. package/src/typeahead/Typeahead.story.tsx +1 -4
  82. package/src/upload/Upload.story.tsx +1 -4
  83. package/src/uploadInput/UploadInput.story.tsx +1 -4
  84. package/src/flowNavigation/FlowNavigation.test.js +0 -190
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Wed, 27 May 2026 15:50:09 GMT
3
+ * Generated on Tue, 09 Jun 2026 08:11:03 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -144,7 +144,7 @@
144
144
 
145
145
  /**
146
146
  * Do not edit directly, this file was auto-generated.
147
- * Generated on Wed, 27 May 2026 15:50:10 GMT
147
+ * Generated on Tue, 09 Jun 2026 08:11:04 GMT
148
148
  */
149
149
 
150
150
  .np-theme-personal {
@@ -328,7 +328,7 @@
328
328
 
329
329
  /**
330
330
  * Do not edit directly, this file was auto-generated.
331
- * Generated on Wed, 27 May 2026 15:50:10 GMT
331
+ * Generated on Tue, 09 Jun 2026 08:11:04 GMT
332
332
  */
333
333
 
334
334
  .np-theme-personal--forest-green {
@@ -512,7 +512,7 @@
512
512
 
513
513
  /**
514
514
  * Do not edit directly, this file was auto-generated.
515
- * Generated on Wed, 27 May 2026 15:50:10 GMT
515
+ * Generated on Tue, 09 Jun 2026 08:11:04 GMT
516
516
  */
517
517
 
518
518
  .np-theme-personal--bright-green {
@@ -696,7 +696,7 @@
696
696
 
697
697
  /**
698
698
  * Do not edit directly, this file was auto-generated.
699
- * Generated on Wed, 27 May 2026 15:50:10 GMT
699
+ * Generated on Tue, 09 Jun 2026 08:11:04 GMT
700
700
  */
701
701
 
702
702
  .np-theme-personal--dark {
@@ -880,7 +880,7 @@
880
880
 
881
881
  /**
882
882
  * Do not edit directly, this file was auto-generated.
883
- * Generated on Wed, 27 May 2026 15:50:10 GMT
883
+ * Generated on Tue, 09 Jun 2026 08:11:04 GMT
884
884
  */
885
885
 
886
886
  .np-theme-platform {
@@ -1064,7 +1064,7 @@
1064
1064
 
1065
1065
  /**
1066
1066
  * Do not edit directly, this file was auto-generated.
1067
- * Generated on Wed, 27 May 2026 15:50:10 GMT
1067
+ * Generated on Tue, 09 Jun 2026 08:11:04 GMT
1068
1068
  */
1069
1069
 
1070
1070
  .np-theme-platform--forest-green {
@@ -1248,7 +1248,7 @@
1248
1248
 
1249
1249
  /**
1250
1250
  * Do not edit directly, this file was auto-generated.
1251
- * Generated on Wed, 27 May 2026 15:50:10 GMT
1251
+ * Generated on Tue, 09 Jun 2026 08:11:04 GMT
1252
1252
  */
1253
1253
 
1254
1254
  .np-theme-business {
@@ -1433,7 +1433,7 @@
1433
1433
 
1434
1434
  /**
1435
1435
  * Do not edit directly, this file was auto-generated.
1436
- * Generated on Wed, 27 May 2026 15:50:10 GMT
1436
+ * Generated on Tue, 09 Jun 2026 08:11:04 GMT
1437
1437
  */
1438
1438
 
1439
1439
  .np-theme-business--dark {
@@ -1618,7 +1618,7 @@
1618
1618
 
1619
1619
  /**
1620
1620
  * Do not edit directly, this file was auto-generated.
1621
- * Generated on Wed, 27 May 2026 15:50:10 GMT
1621
+ * Generated on Tue, 09 Jun 2026 08:11:04 GMT
1622
1622
  */
1623
1623
 
1624
1624
  .np-theme-business--forest-green {
@@ -1803,7 +1803,7 @@
1803
1803
 
1804
1804
  /**
1805
1805
  * Do not edit directly, this file was auto-generated.
1806
- * Generated on Wed, 27 May 2026 15:50:11 GMT
1806
+ * Generated on Tue, 09 Jun 2026 08:11:04 GMT
1807
1807
  */
1808
1808
 
1809
1809
  .np-theme-business--bright-green {
@@ -11,9 +11,21 @@ export interface FlowNavigationProps {
11
11
  onClose?: () => void;
12
12
  /** Called when the back button is clicked. If not provided the back button won't show. The back button only shows on small screens */
13
13
  onGoBack?: () => void;
14
- /** Steps to be displayed in stepper. If you don't need the stepper, please use OverlayHeader instead */
15
- steps: readonly Step[];
14
+ /** Steps to be displayed in stepper. If not provided, the stepper won't show. */
15
+ steps?: readonly Step[];
16
+ /**
17
+ * When true, renders in composable mode using a fluid Container.
18
+ * This allows the FlowNavigation to be used within custom layout containers.
19
+ * @default false
20
+ */
21
+ composable?: boolean;
22
+ /**
23
+ * Controls whether the bottom border is displayed.
24
+ * Only applies to the composable variant. Non-composable variant always uses the done state.
25
+ * @default true
26
+ */
27
+ showBottomBorder?: boolean;
16
28
  }
17
- declare const FlowNavigation: ({ activeStep, avatar, logo, done, onClose, onGoBack, steps, }: FlowNavigationProps) => import("react").JSX.Element;
29
+ declare const FlowNavigation: ({ activeStep, avatar, logo, done, onClose, onGoBack, steps, composable, showBottomBorder, }: FlowNavigationProps) => import("react").JSX.Element;
18
30
  export default FlowNavigation;
19
31
  //# sourceMappingURL=FlowNavigation.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"FlowNavigation.d.ts","sourceRoot":"","sources":["../../../src/flowNavigation/FlowNavigation.tsx"],"names":[],"mappings":"AAQA,OAAgB,EAAE,KAAK,IAAI,EAAE,MAAM,oBAAoB,CAAC;AAQxD,MAAM,WAAW,mBAAmB;IAClC,iBAAiB;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,wBAAwB;IACxB,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,qBAAqB;IACrB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,2FAA2F;IAC3F,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,sIAAsI;IACtI,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,wGAAwG;IACxG,KAAK,EAAE,SAAS,IAAI,EAAE,CAAC;CACxB;AAED,QAAA,MAAM,cAAc,GAAI,+DAQrB,mBAAmB,gCAsErB,CAAC;AAEF,eAAe,cAAc,CAAC"}
1
+ {"version":3,"file":"FlowNavigation.d.ts","sourceRoot":"","sources":["../../../src/flowNavigation/FlowNavigation.tsx"],"names":[],"mappings":"AAQA,OAAgB,EAAE,KAAK,IAAI,EAAE,MAAM,oBAAoB,CAAC;AAWxD,MAAM,WAAW,mBAAmB;IAClC,iBAAiB;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,wBAAwB;IACxB,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,qBAAqB;IACrB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,2FAA2F;IAC3F,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,sIAAsI;IACtI,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,iFAAiF;IACjF,KAAK,CAAC,EAAE,SAAS,IAAI,EAAE,CAAC;IACxB;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC5B;AAED,QAAA,MAAM,cAAc,GAAI,6FAUrB,mBAAmB,gCAsFrB,CAAC;AAEF,eAAe,cAAc,CAAC"}
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @deprecated Use `FlowNavigation` component instead, with `steps={[]}`
3
+ */
1
4
  export interface OverlayHeaderProps {
2
5
  /** An Avatar */
3
6
  avatar?: React.ReactNode;
@@ -5,5 +8,8 @@ export interface OverlayHeaderProps {
5
8
  /** Function called when the close is clicked */
6
9
  onClose?: React.MouseEventHandler<HTMLButtonElement>;
7
10
  }
11
+ /**
12
+ * @deprecated Use `FlowNavigation` component instead
13
+ */
8
14
  export default function OverlayHeader({ avatar, onClose, logo }: OverlayHeaderProps): import("react").JSX.Element;
9
15
  //# sourceMappingURL=OverlayHeader.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"OverlayHeader.d.ts","sourceRoot":"","sources":["../../../src/overlayHeader/OverlayHeader.tsx"],"names":[],"mappings":"AAOA,MAAM,WAAW,kBAAkB;IACjC,gBAAgB;IAChB,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,gDAAgD;IAChD,OAAO,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,CAAC;CACtD;AAID,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,IAAkB,EAAE,EAAE,kBAAkB,+BAiBhG"}
1
+ {"version":3,"file":"OverlayHeader.d.ts","sourceRoot":"","sources":["../../../src/overlayHeader/OverlayHeader.tsx"],"names":[],"mappings":"AAOA;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,gBAAgB;IAChB,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,gDAAgD;IAChD,OAAO,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,CAAC;CACtD;AAID;;GAEG;AACH,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,IAAkB,EAAE,EAAE,kBAAkB,+BAiBhG"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transferwise/components",
3
- "version": "46.148.1",
3
+ "version": "46.149.1",
4
4
  "description": "Neptune React components",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -44,22 +44,22 @@
44
44
  "@babel/preset-env": "^7.29.7",
45
45
  "@babel/preset-react": "^7.29.7",
46
46
  "@babel/preset-typescript": "^7.29.7",
47
- "@formatjs/cli": "^6.16.6",
47
+ "@formatjs/cli": "^6.16.10",
48
48
  "@rollup/plugin-babel": "^7.1.0",
49
49
  "@rollup/plugin-json": "^6.1.0",
50
50
  "@rollup/plugin-node-resolve": "^16.0.3",
51
51
  "@rollup/plugin-typescript": "^12.3.0",
52
52
  "@rollup/plugin-url": "^8.0.2",
53
- "@storybook/addon-a11y": "^10.4.1",
54
- "@storybook/addon-docs": "^10.4.1",
53
+ "@storybook/addon-a11y": "^10.4.2",
54
+ "@storybook/addon-docs": "^10.4.2",
55
55
  "@storybook/addon-mcp": "^0.6.0",
56
56
  "@storybook/addon-webpack5-compiler-babel": "^4.0.1",
57
- "@storybook/react-webpack5": "^10.4.1",
57
+ "@storybook/react-webpack5": "^10.4.2",
58
58
  "@testing-library/dom": "^10.4.1",
59
59
  "@testing-library/jest-dom": "^6.9.1",
60
60
  "@testing-library/react": "^16.3.2",
61
61
  "@testing-library/user-event": "^14.6.1",
62
- "@transferwise/icons": "^4.4.3",
62
+ "@transferwise/icons": "^4.4.4",
63
63
  "@tsconfig/recommended": "^1.0.13",
64
64
  "@types/babel__core": "^7.20.5",
65
65
  "@types/commonmark": "^0.27.10",
@@ -67,17 +67,17 @@
67
67
  "@types/lodash": "4.17.24",
68
68
  "@types/lodash.clamp": "^4.0.9",
69
69
  "@types/lodash.debounce": "^4.0.9",
70
- "@types/react": "^18.3.29",
70
+ "@types/react": "^18.3.31",
71
71
  "@types/react-dom": "^18.3.7",
72
72
  "@types/react-transition-group": "4.4.12",
73
73
  "@monaco-editor/react": "^4.7.0",
74
74
  "monaco-editor": "^0.55.1",
75
75
  "monaco-editor-webpack-plugin": "^7.1.1",
76
- "@wise/art": "^2.30.3",
76
+ "@wise/art": "^2.31.1",
77
77
  "@wise/eslint-config": "^14.2.1",
78
- "babel-plugin-formatjs": "^10.5.41",
78
+ "babel-plugin-formatjs": "^11.3.12",
79
79
  "eslint": "^9.39.4",
80
- "eslint-plugin-storybook": "^10.4.1",
80
+ "eslint-plugin-storybook": "^10.4.2",
81
81
  "gulp": "^5.0.1",
82
82
  "jest": "^29.7.0",
83
83
  "jest-environment-jsdom": "^29.7.0",
@@ -86,18 +86,18 @@
86
86
  "lodash.times": "^4.3.2",
87
87
  "react-intl": "^7.1.14",
88
88
  "react-live": "^4.1.8",
89
- "rollup": "^4.60.4",
89
+ "rollup": "^4.61.1",
90
90
  "rollup-preserve-directives": "^1.1.3",
91
- "storybook": "^10.4.1",
91
+ "storybook": "^10.4.2",
92
92
  "storybook-addon-tag-badges": "^3.1.0",
93
93
  "storybook-addon-test-codegen": "^3.0.1",
94
94
  "@transferwise/less-config": "3.1.2",
95
- "@wise/components-theming": "1.10.2",
95
+ "@wise/components-theming": "1.10.3",
96
96
  "@wise/wds-configs": "0.0.0"
97
97
  },
98
98
  "peerDependencies": {
99
99
  "@transferwise/icons": "^3 || ^4",
100
- "@wise/art": "^2.30.3",
100
+ "@wise/art": "^2.31.1",
101
101
  "@wise/components-theming": "^1.10.1",
102
102
  "framer-motion": "^12.23.26",
103
103
  "react": ">=18",
@@ -111,7 +111,7 @@
111
111
  "@react-aria/focus": "^3.22.1",
112
112
  "@react-aria/overlays": "^3.32.1",
113
113
  "@transferwise/formatting": "^2.14.1",
114
- "@transferwise/neptune-tokens": "^8.24.0",
114
+ "@transferwise/neptune-tokens": "^8.24.1",
115
115
  "@transferwise/neptune-validation": "^3.3.4",
116
116
  "clsx": "^2.1.1",
117
117
  "commonmark": "^0.31.2",
@@ -25,6 +25,7 @@
25
25
  background-color: var(--color-interactive-accent);
26
26
  }
27
27
  .np-avatar-view .np-avatar-view-content {
28
+ --circle-border-color: var(--color-sentiment-border-overlay, var(--color-border-neutral));
28
29
  color: #37517e;
29
30
  color: var(--color-sentiment-content-primary, var(--color-content-primary));
30
31
  }
@@ -1,7 +1,9 @@
1
- @import './Dot.less';
1
+ @import "./Dot.less";
2
2
 
3
3
  .np-avatar-view {
4
4
  .np-avatar-view-content {
5
+ --circle-border-color: var(--color-sentiment-border-overlay, var(--color-border-neutral));
6
+
5
7
  color: var(--color-sentiment-content-primary, var(--color-content-primary));
6
8
  }
7
9
 
@@ -2,10 +2,7 @@ import { Typography } from '../common/propsValues/typography';
2
2
  import Title from '../title';
3
3
 
4
4
  import Body from './Body';
5
- import {
6
- createSandboxStory,
7
- globalScope,
8
- } from '../../.storybook/components/sandbox/SandboxEditor';
5
+ import { createSandboxStory, globalScope } from '../../.storybook/components/sandbox/SandboxEditor';
9
6
 
10
7
  export default {
11
8
  title: 'Typography/Body',
@@ -137,4 +134,3 @@ export const Basic = () => {
137
134
  </>
138
135
  );
139
136
  };
140
-
@@ -1,10 +1,7 @@
1
1
  import { useState } from 'react';
2
2
  import { StoryObj } from '@storybook/react-webpack5';
3
3
  import { userEvent, within } from 'storybook/test';
4
- import {
5
- createSandboxStory,
6
- globalScope,
7
- } from '../../.storybook/components/sandbox/SandboxEditor';
4
+ import { createSandboxStory, globalScope } from '../../.storybook/components/sandbox/SandboxEditor';
8
5
  import Calendar, { type CalendarProps } from './Calendar';
9
6
  import Modal from '../modal';
10
7
  import Button from '../button';
@@ -1,10 +1,7 @@
1
1
  import { Meta, StoryObj } from '@storybook/react-webpack5';
2
2
  import { fn } from 'storybook/test';
3
3
 
4
- import {
5
- createSandboxStory,
6
- globalScope,
7
- } from '../../.storybook/components/sandbox/SandboxEditor';
4
+ import { createSandboxStory, globalScope } from '../../.storybook/components/sandbox/SandboxEditor';
8
5
  import { Field } from '../field/Field';
9
6
 
10
7
  import Checkbox from './Checkbox';
@@ -12,7 +12,7 @@ type Story = StoryObj<typeof Chevron>;
12
12
 
13
13
  export const Sandbox = createSandboxStory({
14
14
  code: `<Chevron orientation="bottom" size="md" />`,
15
- scope: {Chevron},
15
+ scope: { Chevron },
16
16
  });
17
17
 
18
18
  export const Basic: Story = {
@@ -4,10 +4,7 @@ import Body from '../body';
4
4
  import Title from '../title';
5
5
 
6
6
  import Container from './Container';
7
- import {
8
- createSandboxStory,
9
- globalScope,
10
- } from '../../.storybook/components/sandbox/SandboxEditor';
7
+ import { createSandboxStory, globalScope } from '../../.storybook/components/sandbox/SandboxEditor';
11
8
 
12
9
  export default {
13
10
  component: Container,
@@ -1,10 +1,7 @@
1
1
  import { Meta, StoryObj } from '@storybook/react-webpack5';
2
2
  import { fn } from 'storybook/test';
3
3
 
4
- import {
5
- createSandboxStory,
6
- globalScope,
7
- } from '../../.storybook/components/sandbox/SandboxEditor';
4
+ import { createSandboxStory, globalScope } from '../../.storybook/components/sandbox/SandboxEditor';
8
5
  import { DateInput } from '..';
9
6
 
10
7
  const meta: Meta<typeof DateInput> = {
@@ -1,9 +1,6 @@
1
1
  import { useState } from 'react';
2
2
  import { StoryObj } from '@storybook/react-webpack5';
3
- import {
4
- createSandboxStory,
5
- globalScope,
6
- } from '../../.storybook/components/sandbox/SandboxEditor';
3
+ import { createSandboxStory, globalScope } from '../../.storybook/components/sandbox/SandboxEditor';
7
4
  import { Field } from '..';
8
5
  import { Size } from '../common';
9
6
  import DateLookup, { type DateLookupProps } from './DateLookup';
@@ -3,10 +3,7 @@ import { fn } from 'storybook/test';
3
3
  import { Size } from '../common';
4
4
  import AvatarView from '../avatarView';
5
5
  import Decision, { DecisionPresentation, DecisionType } from '.';
6
- import {
7
- createSandboxStory,
8
- globalScope,
9
- } from '../../.storybook/components/sandbox/SandboxEditor';
6
+ import { createSandboxStory, globalScope } from '../../.storybook/components/sandbox/SandboxEditor';
10
7
 
11
8
  export default {
12
9
  component: Decision,
@@ -6,10 +6,7 @@ import DefinitionList, { type DefinitionListLayout } from './DefinitionList';
6
6
  import { lorem10 } from '../test-utils';
7
7
  import Section from '../section';
8
8
  import Header from '../header';
9
- import {
10
- createSandboxStory,
11
- globalScope,
12
- } from '../../.storybook/components/sandbox/SandboxEditor';
9
+ import { createSandboxStory, globalScope } from '../../.storybook/components/sandbox/SandboxEditor';
13
10
 
14
11
  export default {
15
12
  component: DefinitionList,
@@ -3,10 +3,7 @@ import { Meta, StoryObj } from '@storybook/react-webpack5';
3
3
  import { useState } from 'react';
4
4
 
5
5
  import { Button, Dimmer } from '..';
6
- import {
7
- createSandboxStory,
8
- globalScope,
9
- } from '../../.storybook/components/sandbox/SandboxEditor';
6
+ import { createSandboxStory, globalScope } from '../../.storybook/components/sandbox/SandboxEditor';
10
7
 
11
8
  export default {
12
9
  component: Dimmer,
@@ -60,4 +57,3 @@ export const Basic: Story = {
60
57
  );
61
58
  },
62
59
  };
63
-
@@ -3,10 +3,7 @@ import Money from '../money/Money';
3
3
  import Title from '../title/Title';
4
4
 
5
5
  import Display from './Display';
6
- import {
7
- createSandboxStory,
8
- globalScope,
9
- } from '../../.storybook/components/sandbox/SandboxEditor';
6
+ import { createSandboxStory, globalScope } from '../../.storybook/components/sandbox/SandboxEditor';
10
7
 
11
8
  export default {
12
9
  title: 'Typography/Display',
@@ -1,10 +1,7 @@
1
1
  import { Meta, StoryObj } from '@storybook/react-webpack5';
2
2
 
3
3
  import Emphasis from './Emphasis';
4
- import {
5
- createSandboxStory,
6
- globalScope,
7
- } from '../../.storybook/components/sandbox/SandboxEditor';
4
+ import { createSandboxStory, globalScope } from '../../.storybook/components/sandbox/SandboxEditor';
8
5
 
9
6
  export default {
10
7
  component: Emphasis,
@@ -28,4 +25,3 @@ export const Basic: Story = {
28
25
  '<script>alert("nice try!")</script>',
29
26
  },
30
27
  };
31
-
@@ -3,10 +3,7 @@ import { Meta, StoryObj, Decorator } from '@storybook/react-webpack5';
3
3
  import { fn } from 'storybook/test';
4
4
  import { Flag } from '@wise/art';
5
5
  import { Rewards, Tags } from '@transferwise/icons';
6
- import {
7
- createSandboxStory,
8
- globalScope,
9
- } from '../../.storybook/components/sandbox/SandboxEditor';
6
+ import { createSandboxStory, globalScope } from '../../.storybook/components/sandbox/SandboxEditor';
10
7
  import { storySourceWithoutNoise } from '../../.storybook/helpers';
11
8
  import { lorem10, lorem5 } from '../test-utils';
12
9
  import { Sentiment } from '../common';
@@ -1,10 +1,7 @@
1
1
  import { useState } from 'react';
2
2
  import { action } from 'storybook/actions';
3
3
 
4
- import {
5
- createSandboxStory,
6
- globalScope,
7
- } from '../../.storybook/components/sandbox/SandboxEditor';
4
+ import { createSandboxStory, globalScope } from '../../.storybook/components/sandbox/SandboxEditor';
8
5
  import { Input } from '../inputs/Input';
9
6
  import { Field, FieldProps } from './Field';
10
7
  import { Sentiment } from '../common';
@@ -1,9 +1,12 @@
1
1
  .np-flow-navigation {
2
+ display: flex;
3
+ align-items: center;
4
+ justify-content: center;
2
5
  width: 100%;
3
- min-height: 97px;
6
+ box-sizing: border-box;
7
+ min-height: 96px;
4
8
  }
5
9
  .np-flow-navigation--border-bottom {
6
- min-height: 96px;
7
10
  border-bottom: 1px solid rgba(0,0,0,0.10196);
8
11
  border-bottom: 1px solid var(--color-border-neutral);
9
12
  }
@@ -69,6 +72,17 @@ html:not([dir="rtl"]) .np-flow-navigation--sm .np-flow-navigation__stepper {
69
72
  .np-flow-navigation--hidden {
70
73
  visibility: hidden;
71
74
  }
75
+ .np-flow-navigation--composable {
76
+ min-height: 80px;
77
+ }
78
+ @media (min-width: 320.02px) {
79
+ .np-flow-navigation--composable {
80
+ min-height: 128px;
81
+ }
82
+ }
83
+ .np-flow-navigation--composable .np-flow-navigation__content {
84
+ max-width: none;
85
+ }
72
86
  .np-theme-personal--forest-green .np-flow-navigation .np-flow-header__left path,
73
87
  .np-theme-personal--bright-green .np-flow-navigation .np-flow-header__left path,
74
88
  .np-theme-personal--dark .np-flow-navigation .np-flow-header__left path {
@@ -2,13 +2,16 @@
2
2
  @import (reference) "./../styles/less/addons/_spacing-utilities.less";
3
3
 
4
4
  .np-flow-navigation {
5
+ display: flex;
6
+ align-items: center;
7
+ justify-content: center;
5
8
  width: 100%;
6
- // This prevents jumping when border disappears.
7
- min-height: 97px;
9
+ box-sizing: border-box;
10
+
11
+ // This is the natural height of FlowNavigation when the Avatar is displayed.
12
+ min-height: 96px;
8
13
 
9
14
  &--border-bottom {
10
- // This is the natural height of FlowNavigation when the Avatar is displayed.
11
- min-height: 96px;
12
15
  border-bottom: 1px solid var(--color-border-neutral);
13
16
  }
14
17
 
@@ -66,6 +69,19 @@
66
69
  visibility: hidden;
67
70
  }
68
71
 
72
+ &--composable {
73
+ min-height: 80px;
74
+
75
+ @media (--screen-xs) {
76
+ min-height: 128px;
77
+ }
78
+
79
+ .np-flow-navigation__content {
80
+ // Remove max-width constraint for fluid layout
81
+ max-width: none;
82
+ }
83
+ }
84
+
69
85
  .np-theme-personal--forest-green &,
70
86
  .np-theme-personal--bright-green &,
71
87
  .np-theme-personal--dark & {