@xsolla/xui-context-menu 0.114.0 → 0.115.0
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 +8 -8
- package/web/index.js +10 -0
- package/web/index.js.map +1 -1
- package/web/index.mjs +10 -0
- package/web/index.mjs.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xsolla/xui-context-menu",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.115.0",
|
|
4
4
|
"main": "./web/index.js",
|
|
5
5
|
"module": "./web/index.mjs",
|
|
6
6
|
"types": "./web/index.d.ts",
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
"test:coverage": "vitest run --coverage"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@xsolla/xui-checkbox": "0.
|
|
17
|
-
"@xsolla/xui-core": "0.
|
|
18
|
-
"@xsolla/xui-divider": "0.
|
|
19
|
-
"@xsolla/xui-icons": "0.
|
|
20
|
-
"@xsolla/xui-primitives-core": "0.
|
|
21
|
-
"@xsolla/xui-radio": "0.
|
|
22
|
-
"@xsolla/xui-spinner": "0.
|
|
16
|
+
"@xsolla/xui-checkbox": "0.115.0",
|
|
17
|
+
"@xsolla/xui-core": "0.115.0",
|
|
18
|
+
"@xsolla/xui-divider": "0.115.0",
|
|
19
|
+
"@xsolla/xui-icons": "0.115.0",
|
|
20
|
+
"@xsolla/xui-primitives-core": "0.115.0",
|
|
21
|
+
"@xsolla/xui-radio": "0.115.0",
|
|
22
|
+
"@xsolla/xui-spinner": "0.115.0"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"react": ">=16.8.0",
|
package/web/index.js
CHANGED
|
@@ -297,6 +297,16 @@ var StyledInput = import_styled_components4.default.input`
|
|
|
297
297
|
&:disabled {
|
|
298
298
|
cursor: not-allowed;
|
|
299
299
|
}
|
|
300
|
+
|
|
301
|
+
/* Override browser autofill background */
|
|
302
|
+
&:-webkit-autofill,
|
|
303
|
+
&:-webkit-autofill:hover,
|
|
304
|
+
&:-webkit-autofill:focus,
|
|
305
|
+
&:-webkit-autofill:active {
|
|
306
|
+
-webkit-box-shadow: 0 0 0 1000px transparent inset !important;
|
|
307
|
+
-webkit-background-clip: text !important;
|
|
308
|
+
-webkit-text-fill-color: ${(props) => props.color || "inherit"} !important;
|
|
309
|
+
}
|
|
300
310
|
`;
|
|
301
311
|
var InputPrimitive = (0, import_react2.forwardRef)(
|
|
302
312
|
({
|