@procore/saved-views 5.0.0-alpha.4
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 +90 -0
- package/dist/legacy/index.d.mts +167 -0
- package/dist/legacy/index.d.ts +167 -0
- package/dist/legacy/index.js +14839 -0
- package/dist/legacy/index.mjs +14878 -0
- package/dist/modern/index.d.mts +167 -0
- package/dist/modern/index.d.ts +167 -0
- package/dist/modern/index.js +14833 -0
- package/dist/modern/index.mjs +14872 -0
- package/package.json +121 -0
package/package.json
ADDED
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@procore/saved-views",
|
|
3
|
+
"version": "5.0.0-alpha.4",
|
|
4
|
+
"description": "Saved Views Component for Data Table",
|
|
5
|
+
"author": "Procore Technologies, Inc",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/procore/smart-grid-js-monorepo.git",
|
|
9
|
+
"directory": "packages/saved-views"
|
|
10
|
+
},
|
|
11
|
+
"bugs": "https://github.com/procore/smart-grid-js-monorepo/issues",
|
|
12
|
+
"homepage": "https://github.com/procore/smart-grid-js-monorepo/tree/main/packages/saved-views",
|
|
13
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
14
|
+
"keywords": [
|
|
15
|
+
"package",
|
|
16
|
+
"updater"
|
|
17
|
+
],
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"types": "dist/legacy/index.d.mts",
|
|
22
|
+
"main": "dist/legacy/index.js",
|
|
23
|
+
"module": "dist/legacy/index.mjs",
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"import": {
|
|
27
|
+
"types": "./dist/modern/index.d.mts",
|
|
28
|
+
"default": "./dist/modern/index.mjs"
|
|
29
|
+
},
|
|
30
|
+
"require": {
|
|
31
|
+
"types": "./dist/modern/index.d.ts",
|
|
32
|
+
"default": "./dist/modern/index.js"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"./package.json": "./package.json"
|
|
36
|
+
},
|
|
37
|
+
"sideEffects": false,
|
|
38
|
+
"files": [
|
|
39
|
+
"dist"
|
|
40
|
+
],
|
|
41
|
+
"scripts": {
|
|
42
|
+
"build": "tsup",
|
|
43
|
+
"chromatic": "dotenvx run -- chromatic",
|
|
44
|
+
"chromatic:ci": "chromatic --ci --storybook-build-dir ./storybook-static --project-token=${CHROMATIC_DT_SAVED_VIEWS} --exit-once-uploaded --only-changed --skip=\"dependabot*\"",
|
|
45
|
+
"format": "prettier --ignore-unknown --write .",
|
|
46
|
+
"format:check": "prettier --cache --ignore-unknown --check .",
|
|
47
|
+
"lint": "eslint .",
|
|
48
|
+
"lint:types": "tsc --noEmit",
|
|
49
|
+
"prepack": "tsup",
|
|
50
|
+
"storybook": "storybook dev -p 6006",
|
|
51
|
+
"test": "hammer test",
|
|
52
|
+
"test:coverage": "yarn test --coverage",
|
|
53
|
+
"test:dev": "vitest",
|
|
54
|
+
"build-storybook": "storybook build --webpack-stats-json",
|
|
55
|
+
"watch": "chokidar './src' -c 'yalc publish --push'"
|
|
56
|
+
},
|
|
57
|
+
"peerDependencies": {
|
|
58
|
+
"@procore/cdn-translations": "^0.1.12",
|
|
59
|
+
"@procore/core-react": ">=11.4.0 <13",
|
|
60
|
+
"@procore/toast-alert": ">=5.1.0",
|
|
61
|
+
"react": ">=16.8"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@babel/preset-env": "^7.26.0",
|
|
65
|
+
"@babel/preset-react": "^7.26.3",
|
|
66
|
+
"@babel/preset-typescript": "^7.26.0",
|
|
67
|
+
"@dotenvx/dotenvx": "1.6.4",
|
|
68
|
+
"@procore/core-http": "^12.0.0",
|
|
69
|
+
"@procore/core-react": "12.23.0",
|
|
70
|
+
"@procore/cdn-translations": "^0.1.12",
|
|
71
|
+
"@procore/data-table": "14.27.1",
|
|
72
|
+
"@procore/globalization-toolkit": "^3.4.2",
|
|
73
|
+
"@procore/hammer-test-jest": "^0.9.1",
|
|
74
|
+
"@procore/prettier-config": "^1.0.0",
|
|
75
|
+
"@procore/typescript-config": "^1.0.0",
|
|
76
|
+
"@storybook/addon-essentials": "^7.5.3",
|
|
77
|
+
"@storybook/addon-interactions": "^7.5.3",
|
|
78
|
+
"@storybook/addon-links": "^7.5.3",
|
|
79
|
+
"@storybook/addon-onboarding": "^1.0.8",
|
|
80
|
+
"@storybook/blocks": "^7.5.3",
|
|
81
|
+
"@storybook/react": "^7.5.3",
|
|
82
|
+
"@storybook/react-webpack5": "^7.5.3",
|
|
83
|
+
"@storybook/testing-library": "^0.2.2",
|
|
84
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
85
|
+
"@testing-library/react": "^16.2.0",
|
|
86
|
+
"@testing-library/react-hooks": "^8.0.1",
|
|
87
|
+
"@types/jest": "^29.5.14",
|
|
88
|
+
"@types/react": "^18.0.21",
|
|
89
|
+
"@types/styled-components": "5.1.26",
|
|
90
|
+
"@typescript-eslint/eslint-plugin": "^6.9.0",
|
|
91
|
+
"@typescript-eslint/parser": "^6.9.0",
|
|
92
|
+
"@vitest/browser": "^2.1.4",
|
|
93
|
+
"@vitest/coverage-v8": "^1.2.2",
|
|
94
|
+
"ag-grid-community": "33.2.4",
|
|
95
|
+
"babel-jest": "^29.7.0",
|
|
96
|
+
"chokidar-cli": "^3.0.0",
|
|
97
|
+
"eslint": "^8.52.0",
|
|
98
|
+
"eslint-config-prettier": "^8.6.0",
|
|
99
|
+
"eslint-define-config": "^1.24.1",
|
|
100
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
101
|
+
"eslint-plugin-react": "^7.33.2",
|
|
102
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
103
|
+
"eslint-plugin-storybook": "^0.6.15",
|
|
104
|
+
"jest": "^29.7.0",
|
|
105
|
+
"jsdom": "^22.1.0",
|
|
106
|
+
"lint-staged": "^13.3.0",
|
|
107
|
+
"prettier": "^2.8.8",
|
|
108
|
+
"ramda": "^0.30.1",
|
|
109
|
+
"react-is": "^17.0.2",
|
|
110
|
+
"sass-loader": "^16.0.3",
|
|
111
|
+
"storybook": "^7.5.3",
|
|
112
|
+
"styled-components": "^>= 5.1.1 < 6",
|
|
113
|
+
"ts-jest": "^29.2.5",
|
|
114
|
+
"tsup": "^7.2.0",
|
|
115
|
+
"typescript": "^5.2.2",
|
|
116
|
+
"yup": "^1.6.1"
|
|
117
|
+
},
|
|
118
|
+
"dependencies": {
|
|
119
|
+
"@tanstack/react-query": "^5.83.0"
|
|
120
|
+
}
|
|
121
|
+
}
|