@xyo-network/react-form 3.0.1 → 3.0.3
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/browser/index.d.ts +1 -0
- package/dist/browser/index.d.ts.map +1 -0
- package/package.json +42 -42
- package/xy.config.ts +2 -4
package/dist/browser/index.d.ts
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qCAAqC,CAAA;AACnD,cAAc,+BAA+B,CAAA"}
|
package/package.json
CHANGED
@@ -1,31 +1,30 @@
|
|
1
1
|
{
|
2
2
|
"name": "@xyo-network/react-form",
|
3
|
-
"
|
4
|
-
|
5
|
-
|
6
|
-
"
|
7
|
-
|
3
|
+
"version": "3.0.3",
|
4
|
+
"description": "Common React library for all XYO projects that use React",
|
5
|
+
"keywords": [
|
6
|
+
"xyo",
|
7
|
+
"utility",
|
8
|
+
"typescript",
|
9
|
+
"react"
|
10
|
+
],
|
11
|
+
"homepage": "https://xyo.network",
|
8
12
|
"bugs": {
|
9
|
-
"
|
10
|
-
"
|
11
|
-
},
|
12
|
-
"dependencies": {
|
13
|
-
"@xyo-network/react-form-credit-card": "^3.0.1",
|
14
|
-
"@xyo-network/react-form-group": "^3.0.1"
|
13
|
+
"url": "git+https://github.com/XYOracleNetwork/sdk-xyo-react-js/issues",
|
14
|
+
"email": "support@xyo.network"
|
15
15
|
},
|
16
|
-
"
|
17
|
-
"
|
18
|
-
"
|
19
|
-
"react": "^18",
|
20
|
-
"react-dom": "^18"
|
16
|
+
"repository": {
|
17
|
+
"type": "git",
|
18
|
+
"url": "git+https://github.com/XYOracleNetwork/sdk-xyo-react-js.git"
|
21
19
|
},
|
22
|
-
"
|
23
|
-
|
24
|
-
"
|
25
|
-
"
|
20
|
+
"license": "LGPL-3.0-only",
|
21
|
+
"author": {
|
22
|
+
"name": "XYO Development Team",
|
23
|
+
"email": "support@xyo.network",
|
24
|
+
"url": "https://xyo.network"
|
26
25
|
},
|
27
|
-
"
|
28
|
-
"
|
26
|
+
"sideEffects": false,
|
27
|
+
"type": "module",
|
29
28
|
"exports": {
|
30
29
|
".": {
|
31
30
|
"import": {
|
@@ -38,27 +37,28 @@
|
|
38
37
|
"./package.json": "./package.json"
|
39
38
|
},
|
40
39
|
"module": "dist/browser/index.mjs",
|
41
|
-
"
|
42
|
-
"
|
43
|
-
"
|
44
|
-
"
|
45
|
-
"typescript",
|
46
|
-
"react"
|
47
|
-
],
|
48
|
-
"license": "LGPL-3.0-only",
|
49
|
-
"publishConfig": {
|
50
|
-
"access": "public"
|
40
|
+
"types": "dist/browser/index.d.ts",
|
41
|
+
"scripts": {
|
42
|
+
"license": "yarn license-checker --exclude \"MIT, ISC, Apache-2.0, BSD, BSD-2-Clause, CC-BY-4.0, Unlicense, CC-BY-3.0, CC0-1.0\"",
|
43
|
+
"lint-pkg": "npmPkgJsonLint ."
|
51
44
|
},
|
52
|
-
"
|
53
|
-
"
|
54
|
-
"
|
45
|
+
"dependencies": {
|
46
|
+
"@xyo-network/react-form-credit-card": "^3.0.3",
|
47
|
+
"@xyo-network/react-form-group": "^3.0.3"
|
55
48
|
},
|
56
|
-
"
|
57
|
-
"
|
58
|
-
"
|
49
|
+
"devDependencies": {
|
50
|
+
"@xylabs/ts-scripts-yarn3": "^4.0.7",
|
51
|
+
"@xylabs/tsconfig-react": "^4.0.7",
|
52
|
+
"typescript": "^5.5.4"
|
59
53
|
},
|
60
|
-
"
|
61
|
-
|
62
|
-
|
63
|
-
|
54
|
+
"peerDependencies": {
|
55
|
+
"@mui/material": "^5",
|
56
|
+
"@mui/styles": "^5",
|
57
|
+
"react": "^18",
|
58
|
+
"react-dom": "^18"
|
59
|
+
},
|
60
|
+
"publishConfig": {
|
61
|
+
"access": "public"
|
62
|
+
},
|
63
|
+
"docs": "dist/docs.json"
|
64
64
|
}
|
package/xy.config.ts
CHANGED