@procore/data-table 12.2.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/CHANGELOG.md +2003 -0
- package/LICENSE +84 -0
- package/README.md +15 -0
- package/dist/legacy/index.d.mts +1352 -0
- package/dist/legacy/index.d.ts +1352 -0
- package/dist/legacy/index.js +83155 -0
- package/dist/legacy/index.mjs +83099 -0
- package/dist/modern/index.d.mts +1352 -0
- package/dist/modern/index.d.ts +1352 -0
- package/dist/modern/index.js +82934 -0
- package/dist/modern/index.mjs +82878 -0
- package/package.json +196 -0
package/package.json
ADDED
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@procore/data-table",
|
|
3
|
+
"version": "12.2.0",
|
|
4
|
+
"description": "Complex data grid built on top of ag-grid, with DST components and styles.",
|
|
5
|
+
"main": "dist/legacy/index.js",
|
|
6
|
+
"module": "dist/legacy/index.mjs",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"import": {
|
|
10
|
+
"types": "./dist/modern/index.d.mts",
|
|
11
|
+
"default": "./dist/modern/index.mjs"
|
|
12
|
+
},
|
|
13
|
+
"require": {
|
|
14
|
+
"types": "./dist/modern/index.d.ts",
|
|
15
|
+
"default": "./dist/modern/index.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"./package.json": "./package.json"
|
|
19
|
+
},
|
|
20
|
+
"types": "dist/legacy/index.d.mts",
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "NODE_ENV=production tsup",
|
|
26
|
+
"build:types": "tsc -p . --emitDeclarationOnly",
|
|
27
|
+
"chromatic": "chromatic --project-token=67f7a4f5cd9d",
|
|
28
|
+
"chromatic:ci": "chromatic --ci --storybook-build-dir ./storybook-static --project-token=${CHROMATIC_DATA_TABLE_TOKEN} --exit-once-uploaded --only-changed --skip=\"dependabot*\"",
|
|
29
|
+
"clean": "rimraf dist",
|
|
30
|
+
"cypress:dev:open": "start-server-and-test storybook-static:server http://127.0.0.1:6006 cypress:open",
|
|
31
|
+
"cypress:dev:run": "start-server-and-test storybook-static:server http://127.0.0.1:6006 cypress:run",
|
|
32
|
+
"cypress:open": "cypress open",
|
|
33
|
+
"cypress:component:run": "cypress run -b ${CYPRESS_BROWSER-chrome} --spec ${CYPRESS_SPEC-src/**/*.cy.tsx} --component",
|
|
34
|
+
"cypress:performance": "cypress run -b ${CYPRESS_BROWSER-chrome} --spec ${CYPRESS_SPEC-cypress/e2e/**/*.perf.ts}",
|
|
35
|
+
"cypress:performance:run": "start-server-and-test storybook-static:server http://127.0.0.1:6006 cypress:performance",
|
|
36
|
+
"cypress:run": "cypress run -b ${CYPRESS_BROWSER-chrome} --spec ${CYPRESS_SPEC-cypress/e2e/**/*.e2e.ts}",
|
|
37
|
+
"cypress:run:all": "start-server-and-test storybook-static:server http://127.0.0.1:6006 'yarn cypress:run'",
|
|
38
|
+
"cypress:install": "cypress install",
|
|
39
|
+
"dev": "NODE_ENV=development webpack --mode=development --watch",
|
|
40
|
+
"prettier": "prettier --write",
|
|
41
|
+
"prettier:check": "prettier --check",
|
|
42
|
+
"storybook": "storybook dev -p 6006",
|
|
43
|
+
"storybook-static:server": "http-server ./storybook-static -p 6006 -c-1 --silent",
|
|
44
|
+
"build-storybook": "storybook build --webpack-stats-json -- --test",
|
|
45
|
+
"test": "jest --runInBand --silent --logHeapUsage",
|
|
46
|
+
"test:coverage": "yarn test -- --collectCoverage",
|
|
47
|
+
"test:watch": "yarn run test --watch"
|
|
48
|
+
},
|
|
49
|
+
"files": [
|
|
50
|
+
"dist",
|
|
51
|
+
"CHANGELOG.md",
|
|
52
|
+
"README.md",
|
|
53
|
+
"LICENSE",
|
|
54
|
+
"package.json"
|
|
55
|
+
],
|
|
56
|
+
"repository": {
|
|
57
|
+
"type": "git",
|
|
58
|
+
"url": "https://github.com:procore/core/"
|
|
59
|
+
},
|
|
60
|
+
"author": "Procore Technologies",
|
|
61
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
62
|
+
"bugs": {
|
|
63
|
+
"url": "https://github.com/procore/core/issues"
|
|
64
|
+
},
|
|
65
|
+
"homepage": "https://github.com/procore/core",
|
|
66
|
+
"peerDependencies": {
|
|
67
|
+
"@procore/core-css": "^10.27.2",
|
|
68
|
+
"@procore/core-icons": "^12.0.0",
|
|
69
|
+
"@procore/core-react": "^11.21.0",
|
|
70
|
+
"react": ">=16.8.0 < 19",
|
|
71
|
+
"react-dom": ">=16.8.0 < 19",
|
|
72
|
+
"styled-components": ">= 5.1.1 < 6",
|
|
73
|
+
"@procore/labs-financials-utils": ">=3.0.1 < 5"
|
|
74
|
+
},
|
|
75
|
+
"dependencies": {
|
|
76
|
+
"@procore/globalization-toolkit": "3.0.0",
|
|
77
|
+
"@procore/labs-datetime-select": "0.0.1",
|
|
78
|
+
"@procore/labs-group-by-select": "3.0.3",
|
|
79
|
+
"@procore/labs-toast-alert": "3.1.0",
|
|
80
|
+
"classnames": "2.3.2",
|
|
81
|
+
"date-fns": "2.29.1",
|
|
82
|
+
"decimal.js": "10.3.1",
|
|
83
|
+
"lodash.debounce": "4.0.8",
|
|
84
|
+
"lodash.isequal": "4.5.0",
|
|
85
|
+
"mocha-junit-reporter": "^2.2.1",
|
|
86
|
+
"mochawesome": "^7.1.3",
|
|
87
|
+
"ramda": "0.28.0",
|
|
88
|
+
"react-resize-detector": "8.0.4",
|
|
89
|
+
"safe-json-stringify": "^1.2.0"
|
|
90
|
+
},
|
|
91
|
+
"devDependencies": {
|
|
92
|
+
"@ag-grid-community/client-side-row-model": "30.1.0",
|
|
93
|
+
"@ag-grid-community/core": "30.1.0",
|
|
94
|
+
"@ag-grid-community/react": "30.1.0",
|
|
95
|
+
"@ag-grid-community/styles": "30.1.0",
|
|
96
|
+
"@ag-grid-enterprise/core": "30.1.0",
|
|
97
|
+
"@ag-grid-enterprise/master-detail": "30.1.0",
|
|
98
|
+
"@ag-grid-enterprise/menu": "30.1.0",
|
|
99
|
+
"@ag-grid-enterprise/row-grouping": "30.1.0",
|
|
100
|
+
"@ag-grid-enterprise/server-side-row-model": "30.1.0",
|
|
101
|
+
"@ag-grid-enterprise/set-filter": "30.1.0",
|
|
102
|
+
"@babel/eslint-parser": "7.21.3",
|
|
103
|
+
"@ngneat/falso": "6.4.0",
|
|
104
|
+
"@procore/core-css": "10.17.0",
|
|
105
|
+
"@procore/core-icons": "12.0.0",
|
|
106
|
+
"@procore/core-prettier": "10.2.0",
|
|
107
|
+
"@procore/core-react": "11.30.0",
|
|
108
|
+
"@procore/eslint-config": "10.0.0",
|
|
109
|
+
"@procore/labs-financials-utils": "3.0.1",
|
|
110
|
+
"@procore/labs-procore-environment": "3.2.0",
|
|
111
|
+
"@procore/storybook-addon": "^4.0.0",
|
|
112
|
+
"@storybook/addon-docs": "^7.5.3",
|
|
113
|
+
"@storybook/manager-api": "^7.5.3",
|
|
114
|
+
"@storybook/react": "^7.5.3",
|
|
115
|
+
"@storybook/react-webpack5": "^7.5.3",
|
|
116
|
+
"@testing-library/cypress": "10.0.1",
|
|
117
|
+
"@testing-library/dom": "8.20.0",
|
|
118
|
+
"@testing-library/jest-dom": "5.16.4",
|
|
119
|
+
"@testing-library/react": "11.0.4",
|
|
120
|
+
"@testing-library/react-hooks": "8.0.1",
|
|
121
|
+
"@testing-library/user-event": "13.1.5",
|
|
122
|
+
"@types/enzyme": "3.10.12",
|
|
123
|
+
"@types/lodash.debounce": "4.0.7",
|
|
124
|
+
"@types/lodash.isequal": "4.5.0",
|
|
125
|
+
"@types/ramda": "0.28.23",
|
|
126
|
+
"@types/react": "17.0.55",
|
|
127
|
+
"@types/react-dom": "17.0.19",
|
|
128
|
+
"@types/safe-json-stringify": "^1.1.2",
|
|
129
|
+
"@types/styled-components": "5.1.26",
|
|
130
|
+
"@types/testing-library__jest-dom": "5.14.5",
|
|
131
|
+
"@typescript-eslint/eslint-plugin": "5.48.2",
|
|
132
|
+
"@typescript-eslint/parser": "5.48.1",
|
|
133
|
+
"@wojtekmaj/enzyme-adapter-react-17": "0.6.7",
|
|
134
|
+
"assert": "2.0.0",
|
|
135
|
+
"browserify-zlib": "0.2.0",
|
|
136
|
+
"buffer": "6.0.3",
|
|
137
|
+
"console-browserify": "1.2.0",
|
|
138
|
+
"constants-browserify": "1.0.0",
|
|
139
|
+
"copy-webpack-plugin": "11.0.0",
|
|
140
|
+
"crypto-browserify": "3.12.0",
|
|
141
|
+
"css-loader": "6.7.1",
|
|
142
|
+
"css-minimizer-webpack-plugin": "4.2.2",
|
|
143
|
+
"cypress": "13.6.1",
|
|
144
|
+
"cypress-multi-reporters": "1.6.4",
|
|
145
|
+
"cypress-real-events": "^1.11.0",
|
|
146
|
+
"cypress-web-vitals": "^4.1.2",
|
|
147
|
+
"domain-browser": "4.22.0",
|
|
148
|
+
"enzyme": "3.11.0",
|
|
149
|
+
"esbuild-sass-plugin": "^2.16.1",
|
|
150
|
+
"eslint": "8.31.0",
|
|
151
|
+
"eslint-config-airbnb": "19.0.4",
|
|
152
|
+
"eslint-config-prettier": "8.6.0",
|
|
153
|
+
"eslint-plugin-cypress": "2.15.1",
|
|
154
|
+
"eslint-plugin-import": "2.27.5",
|
|
155
|
+
"eslint-plugin-jsx-a11y": "6.7.1",
|
|
156
|
+
"eslint-plugin-prettier": "4.2.1",
|
|
157
|
+
"eslint-plugin-react": "7.32.0",
|
|
158
|
+
"eslint-plugin-react-hooks": "4.6.0",
|
|
159
|
+
"events": "3.3.0",
|
|
160
|
+
"https-browserify": "1.0.0",
|
|
161
|
+
"jest": "29.5.0",
|
|
162
|
+
"mini-css-extract-plugin": "2.6.1",
|
|
163
|
+
"miragejs": "0.1.45",
|
|
164
|
+
"os-browserify": "0.3.0",
|
|
165
|
+
"path-browserify": "1.0.1",
|
|
166
|
+
"postcss-modules": "^6.0.0",
|
|
167
|
+
"process": "0.11.10",
|
|
168
|
+
"punycode": "2.3.0",
|
|
169
|
+
"querystring-es3": "0.2.1",
|
|
170
|
+
"react": "17.0.2",
|
|
171
|
+
"react-dom": "17.0.2",
|
|
172
|
+
"readable-stream": "4.1.0",
|
|
173
|
+
"rimraf": "3.0.2",
|
|
174
|
+
"sass": "1.57.1",
|
|
175
|
+
"sass-loader": "13.2.0",
|
|
176
|
+
"start-server-and-test": "1.15.4",
|
|
177
|
+
"storybook": "^7.5.3",
|
|
178
|
+
"stream-browserify": "3.0.0",
|
|
179
|
+
"stream-http": "3.2.0",
|
|
180
|
+
"string_decoder": "1.3.0",
|
|
181
|
+
"style-loader": "3.3.1",
|
|
182
|
+
"styled-components": "5.3.9",
|
|
183
|
+
"terser-webpack-plugin": "5.3.5",
|
|
184
|
+
"timers-browserify": "2.0.12",
|
|
185
|
+
"ts-loader": "9.4.2",
|
|
186
|
+
"tsup": "^8.0.1",
|
|
187
|
+
"tty-browserify": "0.0.1",
|
|
188
|
+
"typescript": "^4.9.5",
|
|
189
|
+
"url": "0.11.0",
|
|
190
|
+
"util": "0.12.5",
|
|
191
|
+
"vm-browserify": "1.1.2",
|
|
192
|
+
"webpack": "5.74.0",
|
|
193
|
+
"webpack-cli": "4.10.0",
|
|
194
|
+
"http-server": "^14.1.1"
|
|
195
|
+
}
|
|
196
|
+
}
|