@transferwise/components 0.0.0-experimental-75d5cd4 → 0.0.0-experimental-abfc5a7

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transferwise/components",
3
- "version": "0.0.0-experimental-75d5cd4",
3
+ "version": "0.0.0-experimental-abfc5a7",
4
4
  "description": "Neptune React components",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -93,8 +93,8 @@
93
93
  "rollup": "^4.17.2",
94
94
  "storybook": "^8.1.10",
95
95
  "@transferwise/less-config": "3.1.0",
96
- "@wise/components-theming": "1.3.0",
97
- "@transferwise/neptune-css": "14.10.0"
96
+ "@transferwise/neptune-css": "14.10.0",
97
+ "@wise/components-theming": "1.3.0"
98
98
  },
99
99
  "peerDependencies": {
100
100
  "@transferwise/icons": "^3.7.0",
@@ -0,0 +1,14 @@
1
+ import { render, fireEvent, screen, mockMatchMedia } from '../test-utils';
2
+ import { composeStories } from '@storybook/react';
3
+ import * as stories from './SelectOption.story';
4
+
5
+ const { Basic } = composeStories(stories);
6
+
7
+ mockMatchMedia();
8
+
9
+ describe('Select Option', () => {
10
+ it(`test`, () => {
11
+ render(<Basic />);
12
+ screen.debug();
13
+ });
14
+ });
@@ -95,11 +95,6 @@ const allOtherPaymentMethods: SelectOptionValue<CustomData>[] = [
95
95
  cardPaymentMethod(4),
96
96
  cardPaymentMethod(5),
97
97
  cardPaymentMethod(6),
98
- {
99
- media: <BankTransfer />,
100
- title: 'Last One',
101
- content: <span>1.63 USD in total fees.</span>,
102
- },
103
98
  ];
104
99
 
105
100
  const paymentMethods: SelectOptiopsSection<CustomData>[] = [