ods-component-lib 1.17.68 → 1.17.69
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/dist/OdsDataGrid.d.ts +3 -3
- package/dist/components/antd/button/OdsButton.styled.d.ts +2 -2
- package/dist/components/antd/table/OdsTable.d.ts +3 -3
- package/dist/components/devextreme/DxDataGridForm.d.ts +3 -3
- package/dist/components/devextreme/datagrid/OdsDataGrid.d.ts +21 -21
- package/dist/index.css +75 -75
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +108 -108
package/package.json
CHANGED
|
@@ -1,108 +1,108 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "ods-component-lib",
|
|
3
|
-
"version": "1.17.
|
|
4
|
-
"description": "Odeon design system component lib",
|
|
5
|
-
"author": "OdeonTechnology",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"repository": "OdeonTechnology/ods-component-lib",
|
|
8
|
-
"main": "dist/index.js",
|
|
9
|
-
"module": "dist/index.modern.js",
|
|
10
|
-
"source": "src/index.tsx",
|
|
11
|
-
"engines": {
|
|
12
|
-
"node": ">=10"
|
|
13
|
-
},
|
|
14
|
-
"scripts": {
|
|
15
|
-
"build": "microbundle-crl --no-compress --format modern,cjs",
|
|
16
|
-
"start": "microbundle-crl watch --no-compress --format modern,cjs",
|
|
17
|
-
"prepare": "run-s build",
|
|
18
|
-
"test": "run-s test:unit test:lint test:build",
|
|
19
|
-
"test:build": "run-s build",
|
|
20
|
-
"test:lint": "eslint .",
|
|
21
|
-
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
|
|
22
|
-
"test:watch": "react-scripts test --env=jsdom",
|
|
23
|
-
"predeploy": "cd example && npm install && npm run build",
|
|
24
|
-
"deploy": "gh-pages -d example/build"
|
|
25
|
-
},
|
|
26
|
-
"peerDependencies": {
|
|
27
|
-
"react": "^18.2.0"
|
|
28
|
-
},
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"@ant-design/icons": "^5.1.4",
|
|
31
|
-
"@testing-library/jest-dom": "^5.16.5",
|
|
32
|
-
"@testing-library/react": "^13.4.0",
|
|
33
|
-
"@testing-library/user-event": "^13.5.0",
|
|
34
|
-
"@types/file-saver-es": "^2.0.1",
|
|
35
|
-
"@types/jest": "^27.5.2",
|
|
36
|
-
"@types/node": "^16.18.34",
|
|
37
|
-
"@types/react": "^18.2.9",
|
|
38
|
-
"@types/react-dom": "^18.2.4",
|
|
39
|
-
"@types/styled-components": "^5.1.26",
|
|
40
|
-
"antd": "^5.5.2",
|
|
41
|
-
"babel-cli": "^6.26.0",
|
|
42
|
-
"devextreme": "23.1.3",
|
|
43
|
-
"devextreme-aspnet-data-nojquery": "^3.0.0",
|
|
44
|
-
"devextreme-react": "23.1.3",
|
|
45
|
-
"exceljs": "^4.3.0",
|
|
46
|
-
"file-saver": "^2.0.5",
|
|
47
|
-
"file-saver-es": "^2.0.5",
|
|
48
|
-
"html-react-parser": "^4.0.0",
|
|
49
|
-
"jspdf": "^2.5.1",
|
|
50
|
-
"moment": "^2.29.4",
|
|
51
|
-
"momentjs": "^2.0.0",
|
|
52
|
-
"react": "^18.2.0",
|
|
53
|
-
"react-fast-marquee": "^1.6.0",
|
|
54
|
-
"react-phone-input-2": "^2.15.1",
|
|
55
|
-
"react-scripts": "5.0.1",
|
|
56
|
-
"react-test-renderer": "^16.3.2",
|
|
57
|
-
"styled-components": "^5.3.11",
|
|
58
|
-
"typescript": "^4.9.5",
|
|
59
|
-
"web-vitals": "^2.1.4"
|
|
60
|
-
},
|
|
61
|
-
"devDependencies": {
|
|
62
|
-
"@testing-library/jest-dom": "^4.2.4",
|
|
63
|
-
"@testing-library/react": "^9.5.0",
|
|
64
|
-
"@testing-library/user-event": "^7.2.1",
|
|
65
|
-
"@types/jest": "^25.1.4",
|
|
66
|
-
"@types/node": "^12.12.38",
|
|
67
|
-
"@types/react": "^16.9.27",
|
|
68
|
-
"@types/react-dom": "^16.9.7",
|
|
69
|
-
"@typescript-eslint/eslint-plugin": "^2.26.0",
|
|
70
|
-
"@typescript-eslint/parser": "^2.26.0",
|
|
71
|
-
"antd": "^5.5.2",
|
|
72
|
-
"babel-eslint": "^10.0.3",
|
|
73
|
-
"cross-env": "^7.0.2",
|
|
74
|
-
"eslint": "^6.8.0",
|
|
75
|
-
"eslint-config-prettier": "^6.7.0",
|
|
76
|
-
"eslint-config-standard": "^14.1.0",
|
|
77
|
-
"eslint-config-standard-react": "^9.2.0",
|
|
78
|
-
"eslint-plugin-import": "^2.18.2",
|
|
79
|
-
"eslint-plugin-node": "^11.0.0",
|
|
80
|
-
"eslint-plugin-prettier": "^3.1.1",
|
|
81
|
-
"eslint-plugin-promise": "^4.2.1",
|
|
82
|
-
"eslint-plugin-react": "^7.17.0",
|
|
83
|
-
"eslint-plugin-standard": "^4.0.1",
|
|
84
|
-
"gh-pages": "^2.2.0",
|
|
85
|
-
"microbundle-crl": "^0.13.11",
|
|
86
|
-
"npm-run-all": "^4.1.5",
|
|
87
|
-
"prettier": "^2.0.4",
|
|
88
|
-
"react": "^18.2.0",
|
|
89
|
-
"react-app-rewired": "^2.2.1",
|
|
90
|
-
"react-dom": "^18.2.0",
|
|
91
|
-
"react-scripts": "^3.4.1",
|
|
92
|
-
"typescript": "^3.7.5"
|
|
93
|
-
},
|
|
94
|
-
"files": [
|
|
95
|
-
"dist"
|
|
96
|
-
],
|
|
97
|
-
"eslintConfig": {
|
|
98
|
-
"extends": [
|
|
99
|
-
"react-app",
|
|
100
|
-
"react-app/jest"
|
|
101
|
-
],
|
|
102
|
-
"rules": {
|
|
103
|
-
"eqeqeq": "off",
|
|
104
|
-
"@typescript-eslint/no-unused-vars": "off",
|
|
105
|
-
"react-hooks/exhaustive-deps": "off"
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "ods-component-lib",
|
|
3
|
+
"version": "1.17.69",
|
|
4
|
+
"description": "Odeon design system component lib",
|
|
5
|
+
"author": "OdeonTechnology",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": "OdeonTechnology/ods-component-lib",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"module": "dist/index.modern.js",
|
|
10
|
+
"source": "src/index.tsx",
|
|
11
|
+
"engines": {
|
|
12
|
+
"node": ">=10"
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "microbundle-crl --no-compress --format modern,cjs",
|
|
16
|
+
"start": "microbundle-crl watch --no-compress --format modern,cjs",
|
|
17
|
+
"prepare": "run-s build",
|
|
18
|
+
"test": "run-s test:unit test:lint test:build",
|
|
19
|
+
"test:build": "run-s build",
|
|
20
|
+
"test:lint": "eslint .",
|
|
21
|
+
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
|
|
22
|
+
"test:watch": "react-scripts test --env=jsdom",
|
|
23
|
+
"predeploy": "cd example && npm install && npm run build",
|
|
24
|
+
"deploy": "gh-pages -d example/build"
|
|
25
|
+
},
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"react": "^18.2.0"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@ant-design/icons": "^5.1.4",
|
|
31
|
+
"@testing-library/jest-dom": "^5.16.5",
|
|
32
|
+
"@testing-library/react": "^13.4.0",
|
|
33
|
+
"@testing-library/user-event": "^13.5.0",
|
|
34
|
+
"@types/file-saver-es": "^2.0.1",
|
|
35
|
+
"@types/jest": "^27.5.2",
|
|
36
|
+
"@types/node": "^16.18.34",
|
|
37
|
+
"@types/react": "^18.2.9",
|
|
38
|
+
"@types/react-dom": "^18.2.4",
|
|
39
|
+
"@types/styled-components": "^5.1.26",
|
|
40
|
+
"antd": "^5.5.2",
|
|
41
|
+
"babel-cli": "^6.26.0",
|
|
42
|
+
"devextreme": "23.1.3",
|
|
43
|
+
"devextreme-aspnet-data-nojquery": "^3.0.0",
|
|
44
|
+
"devextreme-react": "23.1.3",
|
|
45
|
+
"exceljs": "^4.3.0",
|
|
46
|
+
"file-saver": "^2.0.5",
|
|
47
|
+
"file-saver-es": "^2.0.5",
|
|
48
|
+
"html-react-parser": "^4.0.0",
|
|
49
|
+
"jspdf": "^2.5.1",
|
|
50
|
+
"moment": "^2.29.4",
|
|
51
|
+
"momentjs": "^2.0.0",
|
|
52
|
+
"react": "^18.2.0",
|
|
53
|
+
"react-fast-marquee": "^1.6.0",
|
|
54
|
+
"react-phone-input-2": "^2.15.1",
|
|
55
|
+
"react-scripts": "5.0.1",
|
|
56
|
+
"react-test-renderer": "^16.3.2",
|
|
57
|
+
"styled-components": "^5.3.11",
|
|
58
|
+
"typescript": "^4.9.5",
|
|
59
|
+
"web-vitals": "^2.1.4"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@testing-library/jest-dom": "^4.2.4",
|
|
63
|
+
"@testing-library/react": "^9.5.0",
|
|
64
|
+
"@testing-library/user-event": "^7.2.1",
|
|
65
|
+
"@types/jest": "^25.1.4",
|
|
66
|
+
"@types/node": "^12.12.38",
|
|
67
|
+
"@types/react": "^16.9.27",
|
|
68
|
+
"@types/react-dom": "^16.9.7",
|
|
69
|
+
"@typescript-eslint/eslint-plugin": "^2.26.0",
|
|
70
|
+
"@typescript-eslint/parser": "^2.26.0",
|
|
71
|
+
"antd": "^5.5.2",
|
|
72
|
+
"babel-eslint": "^10.0.3",
|
|
73
|
+
"cross-env": "^7.0.2",
|
|
74
|
+
"eslint": "^6.8.0",
|
|
75
|
+
"eslint-config-prettier": "^6.7.0",
|
|
76
|
+
"eslint-config-standard": "^14.1.0",
|
|
77
|
+
"eslint-config-standard-react": "^9.2.0",
|
|
78
|
+
"eslint-plugin-import": "^2.18.2",
|
|
79
|
+
"eslint-plugin-node": "^11.0.0",
|
|
80
|
+
"eslint-plugin-prettier": "^3.1.1",
|
|
81
|
+
"eslint-plugin-promise": "^4.2.1",
|
|
82
|
+
"eslint-plugin-react": "^7.17.0",
|
|
83
|
+
"eslint-plugin-standard": "^4.0.1",
|
|
84
|
+
"gh-pages": "^2.2.0",
|
|
85
|
+
"microbundle-crl": "^0.13.11",
|
|
86
|
+
"npm-run-all": "^4.1.5",
|
|
87
|
+
"prettier": "^2.0.4",
|
|
88
|
+
"react": "^18.2.0",
|
|
89
|
+
"react-app-rewired": "^2.2.1",
|
|
90
|
+
"react-dom": "^18.2.0",
|
|
91
|
+
"react-scripts": "^3.4.1",
|
|
92
|
+
"typescript": "^3.7.5"
|
|
93
|
+
},
|
|
94
|
+
"files": [
|
|
95
|
+
"dist"
|
|
96
|
+
],
|
|
97
|
+
"eslintConfig": {
|
|
98
|
+
"extends": [
|
|
99
|
+
"react-app",
|
|
100
|
+
"react-app/jest"
|
|
101
|
+
],
|
|
102
|
+
"rules": {
|
|
103
|
+
"eqeqeq": "off",
|
|
104
|
+
"@typescript-eslint/no-unused-vars": "off",
|
|
105
|
+
"react-hooks/exhaustive-deps": "off"
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|