@xsolla/xui-input-copy 0.119.0 → 0.121.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 +6 -6
- package/native/index.js.flow +0 -37
- package/web/index.js.flow +0 -37
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xsolla/xui-input-copy",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.121.0",
|
|
4
4
|
"main": "./web/index.js",
|
|
5
5
|
"module": "./web/index.mjs",
|
|
6
6
|
"types": "./web/index.d.ts",
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"test:coverage": "vitest run --coverage"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@xsolla/xui-button": "0.
|
|
17
|
-
"@xsolla/xui-core": "0.
|
|
18
|
-
"@xsolla/xui-icons-base": "0.
|
|
19
|
-
"@xsolla/xui-input": "0.
|
|
20
|
-
"@xsolla/xui-primitives-core": "0.
|
|
16
|
+
"@xsolla/xui-button": "0.121.0",
|
|
17
|
+
"@xsolla/xui-core": "0.121.0",
|
|
18
|
+
"@xsolla/xui-icons-base": "0.121.0",
|
|
19
|
+
"@xsolla/xui-input": "0.121.0",
|
|
20
|
+
"@xsolla/xui-primitives-core": "0.121.0"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"react": ">=16.8.0",
|
package/native/index.js.flow
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Flowtype definitions for index
|
|
3
|
-
* Generated by Flowgen from a Typescript Definition
|
|
4
|
-
* Flowgen v1.21.0
|
|
5
|
-
* @flow
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
|
-
import React from "react";
|
|
9
|
-
import { InputProps } from "@xsolla/xui-input";
|
|
10
|
-
declare type InputCopyProps = {
|
|
11
|
-
/**
|
|
12
|
-
* Callback when value is copied to clipboard
|
|
13
|
-
*/
|
|
14
|
-
onCopy?: (value: string) => void,
|
|
15
|
-
|
|
16
|
-
/**
|
|
17
|
-
* Whether to hide the text (like a password field)
|
|
18
|
-
*/
|
|
19
|
-
secureTextEntry?: boolean,
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* Initial visibility state when secureTextEntry is true
|
|
23
|
-
*/
|
|
24
|
-
initialVisible?: boolean,
|
|
25
|
-
|
|
26
|
-
/**
|
|
27
|
-
* Test identifier for the component
|
|
28
|
-
*/
|
|
29
|
-
testID?: string,
|
|
30
|
-
...
|
|
31
|
-
} & $Diff<InputProps, { onCopy: any }>;
|
|
32
|
-
declare var InputCopy: React.ForwardRefExoticComponent<{
|
|
33
|
-
...InputCopyProps,
|
|
34
|
-
...React.RefAttributes<HTMLInputElement>,
|
|
35
|
-
}>;
|
|
36
|
-
export type { InputCopyProps };
|
|
37
|
-
declare export { InputCopy };
|
package/web/index.js.flow
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Flowtype definitions for index
|
|
3
|
-
* Generated by Flowgen from a Typescript Definition
|
|
4
|
-
* Flowgen v1.21.0
|
|
5
|
-
* @flow
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
|
-
import React from "react";
|
|
9
|
-
import { InputProps } from "@xsolla/xui-input";
|
|
10
|
-
declare type InputCopyProps = {
|
|
11
|
-
/**
|
|
12
|
-
* Callback when value is copied to clipboard
|
|
13
|
-
*/
|
|
14
|
-
onCopy?: (value: string) => void,
|
|
15
|
-
|
|
16
|
-
/**
|
|
17
|
-
* Whether to hide the text (like a password field)
|
|
18
|
-
*/
|
|
19
|
-
secureTextEntry?: boolean,
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* Initial visibility state when secureTextEntry is true
|
|
23
|
-
*/
|
|
24
|
-
initialVisible?: boolean,
|
|
25
|
-
|
|
26
|
-
/**
|
|
27
|
-
* Test identifier for the component
|
|
28
|
-
*/
|
|
29
|
-
testID?: string,
|
|
30
|
-
...
|
|
31
|
-
} & $Diff<InputProps, { onCopy: any }>;
|
|
32
|
-
declare var InputCopy: React.ForwardRefExoticComponent<{
|
|
33
|
-
...InputCopyProps,
|
|
34
|
-
...React.RefAttributes<HTMLInputElement>,
|
|
35
|
-
}>;
|
|
36
|
-
export type { InputCopyProps };
|
|
37
|
-
declare export { InputCopy };
|