@datawheel/bespoke 0.9.3 → 1.0.0-beta.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 +8 -0
- package/css/mixins.scss +178 -0
- package/dist/Search-CpmCBiYZ.d.mts +129 -0
- package/dist/auth-D3PWImeZ.d.mts +139 -0
- package/dist/auth.d.mts +42 -0
- package/dist/auth.js +1 -1
- package/dist/cms.css +1 -1
- package/dist/cms.d.mts +13 -0
- package/dist/cms.js +38 -66
- package/dist/explore.css +1 -1
- package/dist/explore.d.mts +40 -0
- package/dist/explore.js +8 -36
- package/dist/index.d.mts +24 -0
- package/dist/index.js +1 -1
- package/dist/redux-store.d.mts +176 -0
- package/dist/redux-store.js +3 -4
- package/dist/report.css +1 -1
- package/dist/report.d.mts +132 -0
- package/dist/report.js +14 -42
- package/dist/server.d.mts +109 -0
- package/dist/server.js +10 -11
- package/dist/store-D5N14riO.d.mts +888 -0
- package/dist/types-WI9fSG9b.d.mts +847 -0
- package/package.json +72 -39
package/package.json
CHANGED
|
@@ -1,32 +1,44 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datawheel/bespoke",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0-beta.1",
|
|
4
4
|
"description": "Content management system for creating automated data reports",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
7
|
+
"types": "./dist/index.d.mts",
|
|
7
8
|
"import": "./dist/index.js"
|
|
8
9
|
},
|
|
9
10
|
"./server": {
|
|
11
|
+
"types": "./dist/server.d.mts",
|
|
10
12
|
"import": "./dist/server.js"
|
|
11
13
|
},
|
|
12
14
|
"./explore": {
|
|
15
|
+
"types": "./dist/explore.d.mts",
|
|
13
16
|
"import": "./dist/explore.js"
|
|
14
17
|
},
|
|
15
18
|
"./store": {
|
|
19
|
+
"types": "./dist/redux-store.d.mts",
|
|
16
20
|
"import": "./dist/redux-store.js"
|
|
17
21
|
},
|
|
18
22
|
"./cms": {
|
|
23
|
+
"types": "./dist/cms.d.mts",
|
|
19
24
|
"import": "./dist/cms.js"
|
|
20
25
|
},
|
|
21
26
|
"./report": {
|
|
27
|
+
"types": "./dist/report.d.mts",
|
|
22
28
|
"import": "./dist/report.js"
|
|
23
29
|
},
|
|
24
30
|
"./auth": {
|
|
31
|
+
"types": "./dist/auth.d.mts",
|
|
25
32
|
"import": "./dist/auth.js"
|
|
26
|
-
}
|
|
33
|
+
},
|
|
34
|
+
"./cms.css": "./dist/cms.css",
|
|
35
|
+
"./explore.css": "./dist/explore.css",
|
|
36
|
+
"./report.css": "./dist/report.css",
|
|
37
|
+
"./css/mixins.scss": "./css/mixins.scss"
|
|
27
38
|
},
|
|
28
39
|
"files": [
|
|
29
40
|
"dist",
|
|
41
|
+
"css",
|
|
30
42
|
"README.md"
|
|
31
43
|
],
|
|
32
44
|
"style": "./dist/index.css",
|
|
@@ -54,20 +66,15 @@
|
|
|
54
66
|
},
|
|
55
67
|
"homepage": "https://github.com/Datawheel/reports#readme",
|
|
56
68
|
"dependencies": {
|
|
57
|
-
"@auth0/nextjs-auth0": "^3.
|
|
58
|
-
"@
|
|
59
|
-
"@
|
|
60
|
-
"@
|
|
61
|
-
"@
|
|
62
|
-
"@
|
|
63
|
-
"@
|
|
64
|
-
"@
|
|
65
|
-
"@mantine/next": "^6.0.19",
|
|
66
|
-
"@mantine/notifications": "^6.0.19",
|
|
67
|
-
"@mantine/prism": "^6.0.19",
|
|
69
|
+
"@auth0/nextjs-auth0": "^3.8.0",
|
|
70
|
+
"@d3plus/color": "^3.0.11",
|
|
71
|
+
"@d3plus/data": "^3.0.11",
|
|
72
|
+
"@d3plus/dom": "^3.0.11",
|
|
73
|
+
"@d3plus/export": "^3.0.11",
|
|
74
|
+
"@d3plus/react": "^3.0.11",
|
|
75
|
+
"@d3plus/text": "^3.0.11",
|
|
76
|
+
"@hello-pangea/dnd": "^16.6.0",
|
|
68
77
|
"@monaco-editor/react": "^4.4.5",
|
|
69
|
-
"@reduxjs/toolkit": "^1.8.4",
|
|
70
|
-
"@tabler/icons-react": "^2.15.0",
|
|
71
78
|
"@tiptap/extension-hard-break": "^2.5.9",
|
|
72
79
|
"@tiptap/extension-history": "^2.5.9",
|
|
73
80
|
"@tiptap/extension-mention": "^2.5.9",
|
|
@@ -84,7 +91,9 @@
|
|
|
84
91
|
"axios-retry": "^3.8.0",
|
|
85
92
|
"base58": "^2.0.1",
|
|
86
93
|
"buble": "^0.20.0",
|
|
94
|
+
"clsx": "^2.1.1",
|
|
87
95
|
"comment-parser": "^1.3.1",
|
|
96
|
+
"cors": "^2.8.5",
|
|
88
97
|
"d3": "^7.8.4",
|
|
89
98
|
"d3-array": "^3.1.6",
|
|
90
99
|
"d3-collection": "^1.0.7",
|
|
@@ -93,13 +102,7 @@
|
|
|
93
102
|
"d3-format": "^3.1.0",
|
|
94
103
|
"d3-selection": "^3.0.0",
|
|
95
104
|
"d3-time-format": "^4.1.0",
|
|
96
|
-
"
|
|
97
|
-
"d3plus-common": "^1.2.8",
|
|
98
|
-
"d3plus-export": "^1.3.0",
|
|
99
|
-
"d3plus-format": "^1.2.8",
|
|
100
|
-
"d3plus-react": "^1.3.3",
|
|
101
|
-
"d3plus-text": "^1.2.5",
|
|
102
|
-
"d3plus-viz": "^1.3.11",
|
|
105
|
+
"dayjs": "^1.11.13",
|
|
103
106
|
"dom-parser": "^0.1.6",
|
|
104
107
|
"fast-glob": "^3.2.12",
|
|
105
108
|
"file-loader": "^6.2.0",
|
|
@@ -107,26 +110,20 @@
|
|
|
107
110
|
"flexsearch": "^0.7.43",
|
|
108
111
|
"flickr-sdk": "6.3.0",
|
|
109
112
|
"formidable": "^2.1.1",
|
|
110
|
-
"html-react-parser": "^
|
|
113
|
+
"html-react-parser": "^5.2.5",
|
|
111
114
|
"html-to-image": "^1.10.8",
|
|
112
115
|
"image-type": "^5.2.0",
|
|
116
|
+
"immer": "^10.1.1",
|
|
113
117
|
"jsonwebtoken": "^9.0.2",
|
|
114
118
|
"jszip": "^3.10.1",
|
|
115
|
-
"mantine-react-table": "^
|
|
119
|
+
"mantine-react-table": "^2.0.0-beta.9",
|
|
116
120
|
"monaco-themes": "^0.4.2",
|
|
117
|
-
"next-auth": "^4.24.7",
|
|
118
|
-
"next-redux-wrapper": "^7.0.0",
|
|
119
|
-
"nextjs-cors": "^2.1.1",
|
|
120
121
|
"normalizr": "^3.6.2",
|
|
121
122
|
"pg": "^8.7.3",
|
|
122
123
|
"pretty-format": "^28.1.1",
|
|
123
|
-
"react": "^18.2.0",
|
|
124
|
-
"react-dom": "^18.2.0",
|
|
125
|
-
"react-icons": "^4.3.1",
|
|
126
|
-
"react-redux": "^7.2.6",
|
|
127
124
|
"react-share": "^5.2.2",
|
|
128
125
|
"sequelize": "^6.17.0",
|
|
129
|
-
"sharp": "^0.
|
|
126
|
+
"sharp": "^0.34.2",
|
|
130
127
|
"shelljs": "^0.8.5",
|
|
131
128
|
"slugify": "^1.6.5",
|
|
132
129
|
"toposort": "^2.0.2",
|
|
@@ -135,10 +132,20 @@
|
|
|
135
132
|
"yn": "^5.0.0"
|
|
136
133
|
},
|
|
137
134
|
"devDependencies": {
|
|
138
|
-
"@
|
|
135
|
+
"@mantine/code-highlight": "^8.3.0",
|
|
136
|
+
"@mantine/core": "^8.3.0",
|
|
137
|
+
"@mantine/dates": "^8.3.0",
|
|
138
|
+
"@mantine/dropzone": "^8.3.0",
|
|
139
|
+
"@mantine/form": "^8.3.0",
|
|
140
|
+
"@mantine/hooks": "^8.3.0",
|
|
141
|
+
"@mantine/notifications": "^8.3.0",
|
|
142
|
+
"@next/bundle-analyzer": "^15.3.4",
|
|
143
|
+
"@reduxjs/toolkit": "^2.8.2",
|
|
144
|
+
"@tabler/icons-react": "^3.34.0",
|
|
139
145
|
"@types/express": "^4.17.13",
|
|
140
146
|
"@types/node": "^17.0.45",
|
|
141
|
-
"@types/react
|
|
147
|
+
"@types/react": "^18.3.23",
|
|
148
|
+
"@types/react-beautiful-dnd": "^13.1.8",
|
|
142
149
|
"@typescript-eslint/eslint-plugin": "^5.15.0",
|
|
143
150
|
"@typescript-eslint/parser": "^5.15.0",
|
|
144
151
|
"autoprefixer": "^10.0.0",
|
|
@@ -146,15 +153,41 @@
|
|
|
146
153
|
"eslint": "^8.11.0",
|
|
147
154
|
"eslint-import-resolver-typescript": "^3.5.2",
|
|
148
155
|
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
149
|
-
"eslint-plugin-react": "^7.
|
|
150
|
-
"eslint-plugin-react-hooks": "^4.
|
|
156
|
+
"eslint-plugin-react": "^7.32.2",
|
|
157
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
151
158
|
"monaco-editor": "^0.34.1",
|
|
159
|
+
"next-auth": "^4.24.7",
|
|
160
|
+
"next-redux-wrapper": "^8.1.0",
|
|
152
161
|
"postcss": "^8.4.20",
|
|
153
162
|
"postcss-mixins": "^9.0.4",
|
|
154
163
|
"postcss-nested": "^6.0.0",
|
|
155
|
-
"
|
|
164
|
+
"react": "^18.3.1",
|
|
165
|
+
"react-dom": "^18.3.1",
|
|
166
|
+
"react-redux": "^8.1.3",
|
|
167
|
+
"tsup": "^8.5.0"
|
|
156
168
|
},
|
|
157
169
|
"peerDependencies": {
|
|
158
|
-
"
|
|
170
|
+
"@mantine/code-highlight": "^8.3.0",
|
|
171
|
+
"@mantine/core": "^8.3.0",
|
|
172
|
+
"@mantine/dates": "^8.3.0",
|
|
173
|
+
"@mantine/dropzone": "^8.3.0",
|
|
174
|
+
"@mantine/form": "^8.3.0",
|
|
175
|
+
"@mantine/hooks": "^8.3.0",
|
|
176
|
+
"@mantine/notifications": "^8.3.0",
|
|
177
|
+
"@reduxjs/toolkit": "^2.0.0",
|
|
178
|
+
"@tabler/icons-react": "^3.0.0",
|
|
179
|
+
"next": "^15.3.4",
|
|
180
|
+
"next-auth": "^4.24.0",
|
|
181
|
+
"next-redux-wrapper": "^8.1.0",
|
|
182
|
+
"react": "^18.3.1",
|
|
183
|
+
"react-dom": "^18.3.1",
|
|
184
|
+
"react-redux": "^8.0.0 || ^9.0.0"
|
|
185
|
+
},
|
|
186
|
+
"overrides": {
|
|
187
|
+
"mantine-react-table": {
|
|
188
|
+
"@mantine/core": "^8.0.0",
|
|
189
|
+
"@mantine/hooks": "^8.0.0",
|
|
190
|
+
"@mantine/dates": "^8.0.0"
|
|
191
|
+
}
|
|
159
192
|
}
|
|
160
|
-
}
|
|
193
|
+
}
|