@transferwise/components 0.0.0-experimental-b8fa9b3 → 0.0.0-experimental-8420ce1
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/build/main.css
CHANGED
|
@@ -30621,6 +30621,8 @@ html:not([dir="rtl"]) .np-flow-navigation--sm .np-flow-navigation__stepper {
|
|
|
30621
30621
|
overflow: hidden;
|
|
30622
30622
|
text-overflow: ellipsis;
|
|
30623
30623
|
white-space: nowrap;
|
|
30624
|
+
padding: 1px;
|
|
30625
|
+
margin: -1px;
|
|
30624
30626
|
}
|
|
30625
30627
|
|
|
30626
30628
|
.np-select-input-placeholder {
|
package/build/styles/main.css
CHANGED
|
@@ -30621,6 +30621,8 @@ html:not([dir="rtl"]) .np-flow-navigation--sm .np-flow-navigation__stepper {
|
|
|
30621
30621
|
overflow: hidden;
|
|
30622
30622
|
text-overflow: ellipsis;
|
|
30623
30623
|
white-space: nowrap;
|
|
30624
|
+
padding: 1px;
|
|
30625
|
+
margin: -1px;
|
|
30624
30626
|
}
|
|
30625
30627
|
|
|
30626
30628
|
.np-select-input-placeholder {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@transferwise/components",
|
|
3
|
-
"version": "0.0.0-experimental-
|
|
3
|
+
"version": "0.0.0-experimental-8420ce1",
|
|
4
4
|
"description": "Neptune React components",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -87,9 +87,9 @@
|
|
|
87
87
|
"storybook-addon-tag-badges": "^3.0.6",
|
|
88
88
|
"storybook-addon-test-codegen": "^3.0.1",
|
|
89
89
|
"@transferwise/less-config": "3.1.2",
|
|
90
|
-
"@transferwise/neptune-css": "
|
|
91
|
-
"@wise/
|
|
92
|
-
"@wise/
|
|
90
|
+
"@transferwise/neptune-css": "14.27.0",
|
|
91
|
+
"@wise/wds-configs": "0.0.0",
|
|
92
|
+
"@wise/components-theming": "1.10.1"
|
|
93
93
|
},
|
|
94
94
|
"peerDependencies": {
|
|
95
95
|
"@transferwise/icons": "^3 || ^4",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
},
|
|
103
103
|
"dependencies": {
|
|
104
104
|
"@babel/runtime": "^7.28.6",
|
|
105
|
-
"@floating-ui/react": "^0.27.
|
|
105
|
+
"@floating-ui/react": "^0.27.18",
|
|
106
106
|
"@headlessui/react": "^2.2.9",
|
|
107
107
|
"@popperjs/core": "^2.11.8",
|
|
108
108
|
"@react-aria/focus": "^3.21.4",
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"merge-props": "^6.0.0",
|
|
119
119
|
"react-popper": "^2.3.0",
|
|
120
120
|
"react-transition-group": "^4.4.5",
|
|
121
|
-
"virtua": "^0.48.
|
|
121
|
+
"virtua": "^0.48.5",
|
|
122
122
|
"@transferwise/neptune-tokens": "^8.16.0"
|
|
123
123
|
},
|
|
124
124
|
"publishConfig": {
|
|
@@ -15,6 +15,9 @@
|
|
|
15
15
|
overflow: hidden;
|
|
16
16
|
text-overflow: ellipsis;
|
|
17
17
|
white-space: nowrap;
|
|
18
|
+
// switch to overflow: clip and overflow-clip-margin: 1px when browsers support it: https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/overflow-clip-margin
|
|
19
|
+
padding: 1px;
|
|
20
|
+
margin: -1px;
|
|
18
21
|
}
|
|
19
22
|
|
|
20
23
|
.np-select-input-placeholder {
|
package/src/main.css
CHANGED
|
@@ -30621,6 +30621,8 @@ html:not([dir="rtl"]) .np-flow-navigation--sm .np-flow-navigation__stepper {
|
|
|
30621
30621
|
overflow: hidden;
|
|
30622
30622
|
text-overflow: ellipsis;
|
|
30623
30623
|
white-space: nowrap;
|
|
30624
|
+
padding: 1px;
|
|
30625
|
+
margin: -1px;
|
|
30624
30626
|
}
|
|
30625
30627
|
|
|
30626
30628
|
.np-select-input-placeholder {
|