@syook/react-tabulous 4.0.0-beta-0.2 → 4.0.0-beta-0.3

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.
@@ -2,4 +2,6 @@ import { type GridColDef, type GridBaseColDef } from '../models';
2
2
  export declare const getColumnsAndSearchKeys: (columns: GridBaseColDef[]) => {
3
3
  columns: GridColDef[];
4
4
  searchKeys: string[];
5
+ filters: any;
6
+ searchText: string;
5
7
  };
package/package.json CHANGED
@@ -1,109 +1,109 @@
1
1
  {
2
- "name": "@syook/react-tabulous",
3
- "version": "4.0.0-beta-0.2",
4
- "description": "Terrifically fabulous React Table",
5
- "main": "lib/index.js",
6
- "module": "lib/index.esm.js",
7
- "types": "lib/index.d.ts",
8
- "files": [
9
- "README.md",
10
- "lib"
11
- ],
12
- "keywords": [
13
- "syook",
14
- "table",
15
- "react"
16
- ],
17
- "repository": {
18
- "type": "git",
19
- "url": "git+https://github.com/syook/react-tabulous.git"
20
- },
21
- "publishConfig": {
22
- "access": "public"
23
- },
24
- "author": "Syook",
25
- "bugs": {
26
- "url": "https://github.com/syook/react-tabulous/issues"
27
- },
28
- "lint-staged": {
29
- "*.{js,jsx,json,css}": [
30
- "npm run prettier:fix"
31
- ],
32
- "*.{js, jsx, ts, tsx}": [
33
- "npm run lint:fix"
34
- ]
35
- },
36
- "scripts": {
37
- "prepare": "husky install",
38
- "start": "react-scripts start",
39
- "build": "react-scripts build",
40
- "test": "react-scripts test",
41
- "coverage": "npm test -- --coverage --watchAll --collectCoverageFrom='!src/data/**/*.{ts,tsx}'",
42
- "eject": "react-scripts eject",
43
- "lint": "eslint --ignore-path .eslintignore ./src",
44
- "lint:fix": "npm run lint --fix",
45
- "prettier": "prettier . -c --config .prettierrc",
46
- "prettier:fix": "prettier . -c --config .prettierrc --write",
47
- "rollup": "rm -rf lib && rollup -c",
48
- "build:dev": "npm run rollup && npm pack",
49
- "npm-publish": "yarn install && npm run build:dev && npm publish"
50
- },
51
- "dependencies": {
52
- "@popperjs/core": "2.11.7"
53
- },
54
- "devDependencies": {
55
- "@emotion/react": "11.11.0",
56
- "@emotion/styled": "11.11.0",
57
- "@rollup/plugin-babel": "6.0.3",
58
- "@rollup/plugin-commonjs": "^25.0.0",
59
- "@rollup/plugin-image": "3.0.2",
60
- "@rollup/plugin-node-resolve": "^15.0.2",
61
- "@rollup/plugin-terser": "0.4.3",
62
- "@rollup/plugin-typescript": "11.1.1",
63
- "@testing-library/jest-dom": "^5.16.5",
64
- "@testing-library/react": "^14.0.0",
65
- "@testing-library/user-event": "^14.4.3",
66
- "@types/jest": "^29.5.1",
67
- "@types/node": "^20.2.1",
68
- "@types/react": "^18.2.6",
69
- "@types/react-dom": "^18.2.4",
70
- "@typescript-eslint/eslint-plugin": "^5.59.6",
71
- "eslint": "^8.40.0",
72
- "eslint-config-prettier": "8.8.0",
73
- "eslint-config-standard-with-typescript": "^34.0.1",
74
- "eslint-plugin-import": "^2.27.5",
75
- "eslint-plugin-n": "^16.0.0",
76
- "eslint-plugin-prettier": "^4.2.1",
77
- "eslint-plugin-promise": "^6.1.1",
78
- "eslint-plugin-react": "^7.32.2",
79
- "eslint-plugin-react-hooks": "4.6.0",
80
- "husky": "^8.0.3",
81
- "prettier": "2.8.8",
82
- "react": "^18.2.0",
83
- "react-dom": "^18.2.0",
84
- "react-scripts": "5.0.1",
85
- "rollup": "^3.22.0",
86
- "rollup-plugin-dts": "5.3.0",
87
- "rollup-plugin-peer-deps-external": "^2.2.4",
88
- "rollup-plugin-postcss": "^4.0.2",
89
- "rollup-plugin-react-svg": "3.0.3",
90
- "typescript": "^5.0.4",
91
- "web-vitals": "^3.3.1"
92
- },
93
- "peerDependencies": {
94
- "react": "^version",
95
- "react-dom": "^version"
96
- },
97
- "browserslist": {
98
- "production": [
99
- ">0.2%",
100
- "not dead",
101
- "not op_mini all"
102
- ],
103
- "development": [
104
- "last 1 chrome version",
105
- "last 1 firefox version",
106
- "last 1 safari version"
107
- ]
108
- }
2
+ "name": "@syook/react-tabulous",
3
+ "version": "4.0.0-beta-0.3",
4
+ "description": "Terrifically fabulous React Table",
5
+ "main": "lib/index.js",
6
+ "module": "lib/index.esm.js",
7
+ "types": "lib/index.d.ts",
8
+ "files": [
9
+ "README.md",
10
+ "lib"
11
+ ],
12
+ "keywords": [
13
+ "syook",
14
+ "table",
15
+ "react"
16
+ ],
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/syook/react-tabulous.git"
20
+ },
21
+ "publishConfig": {
22
+ "access": "public"
23
+ },
24
+ "author": "Syook",
25
+ "bugs": {
26
+ "url": "https://github.com/syook/react-tabulous/issues"
27
+ },
28
+ "lint-staged": {
29
+ "*.{js,jsx,json,css}": [
30
+ "npm run prettier:fix"
31
+ ],
32
+ "*.{js, jsx, ts, tsx}": [
33
+ "npm run lint:fix"
34
+ ]
35
+ },
36
+ "scripts": {
37
+ "prepare": "husky install",
38
+ "start": "react-scripts start",
39
+ "build": "react-scripts build",
40
+ "test": "react-scripts test",
41
+ "coverage": "npm test -- --coverage --watchAll --collectCoverageFrom='!src/data/**/*.{ts,tsx}'",
42
+ "eject": "react-scripts eject",
43
+ "lint": "eslint --ignore-path .eslintignore ./src",
44
+ "lint:fix": "npm run lint --fix",
45
+ "prettier": "prettier . -c --config .prettierrc",
46
+ "prettier:fix": "prettier . -c --config .prettierrc --write",
47
+ "rollup": "rm -rf lib && rollup -c",
48
+ "build:dev": "npm run rollup && npm pack",
49
+ "npm-publish": "yarn install && npm run build:dev && npm publish"
50
+ },
51
+ "dependencies": {
52
+ "@popperjs/core": "2.11.7"
53
+ },
54
+ "devDependencies": {
55
+ "@emotion/react": "11.11.0",
56
+ "@emotion/styled": "11.11.0",
57
+ "@rollup/plugin-babel": "6.0.3",
58
+ "@rollup/plugin-commonjs": "^25.0.0",
59
+ "@rollup/plugin-image": "3.0.2",
60
+ "@rollup/plugin-node-resolve": "^15.0.2",
61
+ "@rollup/plugin-terser": "0.4.3",
62
+ "@rollup/plugin-typescript": "11.1.1",
63
+ "@testing-library/jest-dom": "^5.16.5",
64
+ "@testing-library/react": "^14.0.0",
65
+ "@testing-library/user-event": "^14.4.3",
66
+ "@types/jest": "^29.5.1",
67
+ "@types/node": "^20.2.1",
68
+ "@types/react": "^18.2.6",
69
+ "@types/react-dom": "^18.2.4",
70
+ "@typescript-eslint/eslint-plugin": "^5.59.6",
71
+ "eslint": "^8.40.0",
72
+ "eslint-config-prettier": "8.8.0",
73
+ "eslint-config-standard-with-typescript": "^34.0.1",
74
+ "eslint-plugin-import": "^2.27.5",
75
+ "eslint-plugin-n": "^16.0.0",
76
+ "eslint-plugin-prettier": "^4.2.1",
77
+ "eslint-plugin-promise": "^6.1.1",
78
+ "eslint-plugin-react": "^7.32.2",
79
+ "eslint-plugin-react-hooks": "4.6.0",
80
+ "husky": "^8.0.3",
81
+ "prettier": "2.8.8",
82
+ "react": "^18.2.0",
83
+ "react-dom": "^18.2.0",
84
+ "react-scripts": "5.0.1",
85
+ "rollup": "^3.22.0",
86
+ "rollup-plugin-dts": "5.3.0",
87
+ "rollup-plugin-peer-deps-external": "^2.2.4",
88
+ "rollup-plugin-postcss": "^4.0.2",
89
+ "rollup-plugin-react-svg": "3.0.3",
90
+ "typescript": "^5.0.4",
91
+ "web-vitals": "^3.3.1"
92
+ },
93
+ "peerDependencies": {
94
+ "react": "^version",
95
+ "react-dom": "^version"
96
+ },
97
+ "browserslist": {
98
+ "production": [
99
+ ">0.2%",
100
+ "not dead",
101
+ "not op_mini all"
102
+ ],
103
+ "development": [
104
+ "last 1 chrome version",
105
+ "last 1 firefox version",
106
+ "last 1 safari version"
107
+ ]
108
+ }
109
109
  }