@nypl/web-reader 4.3.2 → 4.3.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/dist/index.css +244 -58
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2163 -3014
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2159 -3002
- package/dist/index.mjs.map +1 -1
- package/package.json +72 -68
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nypl/web-reader",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": "https://github.com/NYPL-Simplified/web-reader",
|
|
6
6
|
"homepage": "https://github.com/NYPL-Simplified/web-reader",
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
"release:alpha": "release-it --verbose --preRelease=alpha"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@chakra-ui/react": "
|
|
39
|
-
"@emotion/react": "
|
|
40
|
-
"@emotion/styled": "
|
|
41
|
-
"react": "
|
|
42
|
-
"react-dom": "
|
|
43
|
-
"swr": "
|
|
38
|
+
"@chakra-ui/react": "2.x",
|
|
39
|
+
"@emotion/react": ">=11.11.1",
|
|
40
|
+
"@emotion/styled": ">=11.11.0",
|
|
41
|
+
"react": "18.x",
|
|
42
|
+
"react-dom": "18.x",
|
|
43
|
+
"swr": "2.2.5"
|
|
44
44
|
},
|
|
45
45
|
"prettier": {
|
|
46
46
|
"printWidth": 80,
|
|
@@ -67,71 +67,75 @@
|
|
|
67
67
|
"module": false
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@babel/core": "
|
|
71
|
-
"@emotion/jest": "
|
|
72
|
-
"@parcel/transformer-typescript-tsc": "
|
|
73
|
-
"@testing-library/cypress": "
|
|
74
|
-
"@testing-library/jest-dom": "
|
|
75
|
-
"@testing-library/react": "
|
|
76
|
-
"@
|
|
77
|
-
"@types/
|
|
78
|
-
"@types/
|
|
79
|
-
"@types/
|
|
80
|
-
"@types/
|
|
81
|
-
"@types/react": "
|
|
82
|
-
"@types/react-dom": "
|
|
83
|
-
"@types/
|
|
84
|
-
"@
|
|
85
|
-
"@
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"eslint": "
|
|
93
|
-
"eslint-
|
|
94
|
-
"eslint-
|
|
95
|
-
"eslint-plugin-
|
|
96
|
-
"eslint-plugin-
|
|
97
|
-
"eslint-plugin-
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
"jest": "
|
|
103
|
-
"jest-
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"parcel": "
|
|
107
|
-
"parcel-
|
|
108
|
-
"parcel-
|
|
109
|
-
"parcel-reporter-static-files-copy": "^1.3.0",
|
|
70
|
+
"@babel/core": "7.24.3",
|
|
71
|
+
"@emotion/jest": "11.11.0",
|
|
72
|
+
"@parcel/transformer-typescript-tsc": "2.12.0",
|
|
73
|
+
"@testing-library/cypress": "8.0.2",
|
|
74
|
+
"@testing-library/jest-dom": "6.1.3",
|
|
75
|
+
"@testing-library/react": "14.0.0",
|
|
76
|
+
"@types/debounce": "1.2.4",
|
|
77
|
+
"@types/http-proxy": "1.17.14",
|
|
78
|
+
"@types/jest-axe": "3.5.9",
|
|
79
|
+
"@types/node": "20.12.7",
|
|
80
|
+
"@types/react": "17.0.80",
|
|
81
|
+
"@types/react-dom": "18.2.05",
|
|
82
|
+
"@types/react-router-dom": "5.3.3",
|
|
83
|
+
"@types/rimraf": "3.0.2",
|
|
84
|
+
"@typescript-eslint/eslint-plugin": "4.33.0",
|
|
85
|
+
"@typescript-eslint/parser": "4.33.0",
|
|
86
|
+
"babel-jest": "29.7.0",
|
|
87
|
+
"babel-loader": "8.3.0",
|
|
88
|
+
"cypress": "9.5.1",
|
|
89
|
+
"esbuild-jest": "0.5.0",
|
|
90
|
+
"eslint": "7.32.0",
|
|
91
|
+
"eslint-config-prettier": "8.10.0",
|
|
92
|
+
"eslint-config-react-app": "6.0.0",
|
|
93
|
+
"eslint-plugin-flowtype": "5.10.0",
|
|
94
|
+
"eslint-plugin-import": "2.29.1",
|
|
95
|
+
"eslint-plugin-jsx-a11y": "6.8.0",
|
|
96
|
+
"eslint-plugin-react": "7.34.1",
|
|
97
|
+
"eslint-plugin-react-hooks": "4.6.0",
|
|
98
|
+
"express": "4.19.2",
|
|
99
|
+
"husky": "7.0.4",
|
|
100
|
+
"jest": "29.4.3",
|
|
101
|
+
"jest-axe": "5.0.1",
|
|
102
|
+
"jest-environment-jsdom": "29.7.0",
|
|
103
|
+
"jest-watch-typeahead": "2.2.0",
|
|
104
|
+
"lint-staged": "11.2.6",
|
|
105
|
+
"parcel": "2.12.0",
|
|
106
|
+
"parcel-config-precache-manifest": "0.0.4",
|
|
107
|
+
"parcel-plugin-static-files-copy": "2.6.0",
|
|
108
|
+
"parcel-reporter-static-files-copy": "1.5.3",
|
|
110
109
|
"prettier": "2.2.1",
|
|
111
|
-
"r2-shared-js": "
|
|
112
|
-
"react": "
|
|
113
|
-
"react-app-polyfill": "
|
|
114
|
-
"react-dom": "
|
|
115
|
-
"react-is": "
|
|
116
|
-
"react-router-dom": "
|
|
117
|
-
"release-it": "
|
|
118
|
-
"request": "
|
|
119
|
-
"size-limit": "
|
|
120
|
-
"start-server-and-test": "
|
|
121
|
-
"ts-jest": "
|
|
122
|
-
"
|
|
123
|
-
"
|
|
110
|
+
"r2-shared-js": "1.0.72",
|
|
111
|
+
"react": "18.2.0",
|
|
112
|
+
"react-app-polyfill": "2.0.0",
|
|
113
|
+
"react-dom": "18.2.0",
|
|
114
|
+
"react-is": "18.2.0",
|
|
115
|
+
"react-router-dom": "5.3.4",
|
|
116
|
+
"release-it": "17.1.1",
|
|
117
|
+
"request": "2.88.2",
|
|
118
|
+
"size-limit": "4.12.0",
|
|
119
|
+
"start-server-and-test": "2.0.3",
|
|
120
|
+
"ts-jest": "29.0.5",
|
|
121
|
+
"ts-node": "10.9.2",
|
|
122
|
+
"tslib": "2.6.2",
|
|
123
|
+
"tsup": "6.7.0",
|
|
124
124
|
"typescript": "4.4.3"
|
|
125
125
|
},
|
|
126
126
|
"dependencies": {
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
"react-
|
|
133
|
-
"react-
|
|
134
|
-
"react-
|
|
127
|
+
"@chakra-ui/react": "2.8.1",
|
|
128
|
+
"comlink": "4.4.1",
|
|
129
|
+
"debounce": "1.2.1",
|
|
130
|
+
"framer-motion": "4.1.17",
|
|
131
|
+
"node-fetch": "2.7.0",
|
|
132
|
+
"react-icons": "4.12.0",
|
|
133
|
+
"react-intersection-observer": "8.34.0",
|
|
134
|
+
"react-pdf": "7.7.1",
|
|
135
|
+
"react-resize-observer": "1.1.1"
|
|
136
|
+
},
|
|
137
|
+
"optionalDependencies": {
|
|
138
|
+
"@parcel/watcher-linux-x64-glibc": "2.4.1"
|
|
135
139
|
},
|
|
136
140
|
"lint-staged": {
|
|
137
141
|
"*.{ts,tsx,js,jsx}": "eslint --cache --fix",
|