@esvndev/es-react-table-interface 1.0.1
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/README.md +6 -0
- package/dist/component/ExternalInterface/ExternalInterface.d.ts +3 -0
- package/dist/component/ExternalInterface/ExternalInterfaceExtend.d.ts +4 -0
- package/dist/component/ExternalInterface/index.d.ts +2 -0
- package/dist/component/Header/Header.d.ts +10 -0
- package/dist/component/Header/index.d.ts +1 -0
- package/dist/component/ToolbarTemplate/ToolbarTemplate.d.ts +9 -0
- package/dist/component/ToolbarTemplate/index.d.ts +1 -0
- package/dist/component/index.d.ts +3 -0
- package/dist/func.d.ts +23 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +257 -0
- package/dist/interface.d.ts +194 -0
- package/dist/libs/AttachFile/tabAttachFile.d.ts +7 -0
- package/dist/libs/breadcrumbs-not-link/index.d.ts +11 -0
- package/dist/libs/grid-table-template-2/index.d.ts +4 -0
- package/dist/libs/input-no-control/input-text/index.d.ts +20 -0
- package/dist/libs/react-input/index.d.ts +3 -0
- package/dist/ultility/Export/InterfaceExport.d.ts +28 -0
- package/dist/ultility/Export/functionExport.d.ts +21 -0
- package/dist/ultility/Export/index.d.ts +2 -0
- package/dist/ultility/IGridColumns.d.ts +52 -0
- package/dist/ultility/ITableGrid.d.ts +207 -0
- package/dist/ultility/constantConfigNumeric.d.ts +20 -0
- package/dist/ultility/constantOperator.d.ts +3 -0
- package/dist/ultility/request/index.d.ts +3 -0
- package/dist/ultility/themeConfig.d.ts +39 -0
- package/package.json +104 -0
package/package.json
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@esvndev/es-react-table-interface",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "ESVN Limited Use License",
|
|
5
|
+
"license": "ESVN Limited Use License",
|
|
6
|
+
"author": "dev@esvn.com.vn",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist/**/*",
|
|
10
|
+
"LICENSE",
|
|
11
|
+
"README.md",
|
|
12
|
+
"CHANGELOG.md"
|
|
13
|
+
],
|
|
14
|
+
"types": "dist/index.d.ts",
|
|
15
|
+
"scripts": {
|
|
16
|
+
"test": "jest",
|
|
17
|
+
"build:clean": "rimraf build",
|
|
18
|
+
"build:rollup": "rollup -c",
|
|
19
|
+
"build": "npm-run-all build:clean build:rollup",
|
|
20
|
+
"lint:ts": "eslint ./src --ext .ts,.tsx --config .eslintrc --fix",
|
|
21
|
+
"lint:styles": "stylelint \"**/*.css\" --fix",
|
|
22
|
+
"lint": "npm-run-all lint:ts lint:styles",
|
|
23
|
+
"format": "prettier --write .",
|
|
24
|
+
"semantic-release": "semantic-release"
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"ESVN"
|
|
28
|
+
],
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@rollup/plugin-commonjs": "^20.0.0",
|
|
31
|
+
"@rollup/plugin-node-resolve": "^13.0.4",
|
|
32
|
+
"@rollup/plugin-typescript": "^8.2.5",
|
|
33
|
+
"@semantic-release/commit-analyzer": "^9.0.2",
|
|
34
|
+
"@semantic-release/git": "^10.0.1",
|
|
35
|
+
"@semantic-release/github": "^8.0.6",
|
|
36
|
+
"@semantic-release/npm": "^9.0.1",
|
|
37
|
+
"@semantic-release/release-notes-generator": "^10.0.3",
|
|
38
|
+
"@syncfusion/ej2-react-calendars": "20.2.36",
|
|
39
|
+
"@syncfusion/ej2-react-dropdowns": "20.2.36",
|
|
40
|
+
"@syncfusion/ej2-react-grids": "20.2.36",
|
|
41
|
+
"@syncfusion/ej2-react-inputs": "20.2.36",
|
|
42
|
+
"@syncfusion/ej2-react-navigations": "20.2.36",
|
|
43
|
+
"@testing-library/react": "^14.2.1",
|
|
44
|
+
"@types/jest": "^29.5.12",
|
|
45
|
+
"@types/react": "^18.2.58",
|
|
46
|
+
"@typescript-eslint/eslint-plugin": "^5.39.0",
|
|
47
|
+
"@typescript-eslint/parser": "^5.39.0",
|
|
48
|
+
"axios": "^1.7.2",
|
|
49
|
+
"becoxy-icons": "1.9.9",
|
|
50
|
+
"classnames": "^2.5.1",
|
|
51
|
+
"es-grid-template": "1.2.1",
|
|
52
|
+
"eslint": "^8.25.0",
|
|
53
|
+
"eslint-config-prettier": "^8.5.0",
|
|
54
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
55
|
+
"eslint-plugin-react": "^7.31.8",
|
|
56
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
57
|
+
"eslint-plugin-simple-import-sort": "^8.0.0",
|
|
58
|
+
"i18next": "^21.8.2",
|
|
59
|
+
"jest": "^29.7.0",
|
|
60
|
+
"jest-css-modules": "^2.1.0",
|
|
61
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
62
|
+
"moment": "^2.29.3",
|
|
63
|
+
"npm-run-all": "^4.1.5",
|
|
64
|
+
"prettier": "^3.2.5",
|
|
65
|
+
"react": "^18.2.0",
|
|
66
|
+
"react-dom": "^18.2.0",
|
|
67
|
+
"react-hot-toast": "2.2.0",
|
|
68
|
+
"react-i18next": "^11.16.9",
|
|
69
|
+
"react-number-format": "^5.3.3",
|
|
70
|
+
"react-router-dom": "^6.3.0",
|
|
71
|
+
"react-table-edit": "^1.2.74",
|
|
72
|
+
"reactstrap": "^9.2.2",
|
|
73
|
+
"rimraf": "^3.0.2",
|
|
74
|
+
"rollup": "^2.56.2",
|
|
75
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
76
|
+
"rollup-plugin-postcss": "^4.0.1",
|
|
77
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
78
|
+
"sass": "^1.71.1",
|
|
79
|
+
"sass-loader": "^14.1.1",
|
|
80
|
+
"split-pane-react": "0.1.3",
|
|
81
|
+
"styled-components": "^6.1.8",
|
|
82
|
+
"stylelint": "^16.2.1",
|
|
83
|
+
"stylelint-config-idiomatic-order": "^10.0.0",
|
|
84
|
+
"stylelint-config-prettier": "^9.0.5",
|
|
85
|
+
"stylelint-config-standard": "^36.0.0",
|
|
86
|
+
"stylelint-order": "^6.0.4",
|
|
87
|
+
"stylelint-prettier": "^5.0.0",
|
|
88
|
+
"sweetalert2": "^11.4.14",
|
|
89
|
+
"sweetalert2-react-content": "^5.0.0",
|
|
90
|
+
"ts-jest": "^29.1.2",
|
|
91
|
+
"tslib": "^2.6.2",
|
|
92
|
+
"typescript": "^5.3.3"
|
|
93
|
+
},
|
|
94
|
+
"peerDependencies": {
|
|
95
|
+
"react": ">=16.8.6",
|
|
96
|
+
"react-dom": ">=16.8.6"
|
|
97
|
+
},
|
|
98
|
+
"publishConfig": {
|
|
99
|
+
"access": "public"
|
|
100
|
+
},
|
|
101
|
+
"dependencies": {
|
|
102
|
+
"postcss": "^8.4.35"
|
|
103
|
+
}
|
|
104
|
+
}
|