@datawheel/bespoke 1.0.0-rc.2 → 1.0.0-rc.21
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 +10 -1
- package/css/mixins.scss +178 -0
- package/dist/Search-C-9ALKJo.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 +33 -33
- package/dist/explore.css +1 -0
- package/dist/explore.d.mts +40 -0
- package/dist/explore.js +15 -1
- package/dist/index.d.mts +24 -0
- package/dist/redux-store.d.mts +176 -0
- package/dist/redux-store.js +4 -4
- package/dist/report.css +1 -1
- package/dist/report.d.mts +132 -0
- package/dist/report.js +14 -14
- package/dist/server.d.mts +109 -0
- package/dist/server.js +11 -11
- package/dist/store-D5N14riO.d.mts +888 -0
- package/dist/types-WI9fSG9b.d.mts +847 -0
- package/package.json +33 -26
package/package.json
CHANGED
|
@@ -1,32 +1,44 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datawheel/bespoke",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.21",
|
|
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",
|
|
@@ -55,6 +67,12 @@
|
|
|
55
67
|
"homepage": "https://github.com/Datawheel/reports#readme",
|
|
56
68
|
"dependencies": {
|
|
57
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",
|
|
58
76
|
"@hello-pangea/dnd": "^16.6.0",
|
|
59
77
|
"@monaco-editor/react": "^4.4.5",
|
|
60
78
|
"@tiptap/extension-hard-break": "^2.5.9",
|
|
@@ -84,13 +102,6 @@
|
|
|
84
102
|
"d3-format": "^3.1.0",
|
|
85
103
|
"d3-selection": "^3.0.0",
|
|
86
104
|
"d3-time-format": "^4.1.0",
|
|
87
|
-
"d3plus-axis": "^1.2.24",
|
|
88
|
-
"d3plus-common": "^1.2.8",
|
|
89
|
-
"d3plus-export": "^1.3.0",
|
|
90
|
-
"d3plus-format": "^1.2.8",
|
|
91
|
-
"d3plus-react": "^1.3.3",
|
|
92
|
-
"d3plus-text": "^1.2.5",
|
|
93
|
-
"d3plus-viz": "^1.3.11",
|
|
94
105
|
"dayjs": "^1.11.13",
|
|
95
106
|
"dom-parser": "^0.1.6",
|
|
96
107
|
"fast-glob": "^3.2.12",
|
|
@@ -121,26 +132,19 @@
|
|
|
121
132
|
"yn": "^5.0.0"
|
|
122
133
|
},
|
|
123
134
|
"devDependencies": {
|
|
124
|
-
"@emotion/react": "^11.14.0",
|
|
125
135
|
"@mantine/code-highlight": "^8.3.0",
|
|
126
136
|
"@mantine/core": "^8.3.0",
|
|
127
137
|
"@mantine/dates": "^8.3.0",
|
|
128
138
|
"@mantine/dropzone": "^8.3.0",
|
|
129
|
-
"@mantine/emotion": "^8.3.1",
|
|
130
139
|
"@mantine/form": "^8.3.0",
|
|
131
140
|
"@mantine/hooks": "^8.3.0",
|
|
132
141
|
"@mantine/notifications": "^8.3.0",
|
|
142
|
+
"@next/bundle-analyzer": "^15.3.4",
|
|
133
143
|
"@reduxjs/toolkit": "^2.8.2",
|
|
134
144
|
"@tabler/icons-react": "^3.34.0",
|
|
135
|
-
"next-auth": "^4.24.7",
|
|
136
|
-
"next-redux-wrapper": "^8.1.0",
|
|
137
|
-
"react-redux": "^8.1.3",
|
|
138
|
-
"@next/bundle-analyzer": "^15.3.4",
|
|
139
145
|
"@types/express": "^4.17.13",
|
|
140
146
|
"@types/node": "^17.0.45",
|
|
141
147
|
"@types/react": "^18.3.23",
|
|
142
|
-
"react": "^18.3.1",
|
|
143
|
-
"react-dom": "^18.3.1",
|
|
144
148
|
"@types/react-beautiful-dnd": "^13.1.8",
|
|
145
149
|
"@typescript-eslint/eslint-plugin": "^5.15.0",
|
|
146
150
|
"@typescript-eslint/parser": "^5.15.0",
|
|
@@ -152,29 +156,32 @@
|
|
|
152
156
|
"eslint-plugin-react": "^7.32.2",
|
|
153
157
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
154
158
|
"monaco-editor": "^0.34.1",
|
|
159
|
+
"next-auth": "^4.24.7",
|
|
160
|
+
"next-redux-wrapper": "^8.1.0",
|
|
155
161
|
"postcss": "^8.4.20",
|
|
156
162
|
"postcss-mixins": "^9.0.4",
|
|
157
163
|
"postcss-nested": "^6.0.0",
|
|
164
|
+
"react": "^18.3.1",
|
|
165
|
+
"react-dom": "^18.3.1",
|
|
166
|
+
"react-redux": "^8.1.3",
|
|
158
167
|
"tsup": "^8.5.0"
|
|
159
168
|
},
|
|
160
169
|
"peerDependencies": {
|
|
161
|
-
"
|
|
162
|
-
"react": "^18.3.1",
|
|
163
|
-
"react-dom": "^18.3.1",
|
|
164
|
-
"@emotion/react": "^11.13.0",
|
|
170
|
+
"@mantine/code-highlight": "^8.3.0",
|
|
165
171
|
"@mantine/core": "^8.3.0",
|
|
166
|
-
"@mantine/hooks": "^8.3.0",
|
|
167
172
|
"@mantine/dates": "^8.3.0",
|
|
168
173
|
"@mantine/dropzone": "^8.3.0",
|
|
169
174
|
"@mantine/form": "^8.3.0",
|
|
175
|
+
"@mantine/hooks": "^8.3.0",
|
|
170
176
|
"@mantine/notifications": "^8.3.0",
|
|
171
|
-
"@mantine/code-highlight": "^8.3.0",
|
|
172
|
-
"@mantine/emotion": "^8.3.1",
|
|
173
177
|
"@reduxjs/toolkit": "^2.0.0",
|
|
174
|
-
"react-redux": "^8.0.0 || ^9.0.0",
|
|
175
178
|
"@tabler/icons-react": "^3.0.0",
|
|
179
|
+
"next": "^15.3.4",
|
|
176
180
|
"next-auth": "^4.24.0",
|
|
177
|
-
"next-redux-wrapper": "^8.1.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"
|
|
178
185
|
},
|
|
179
186
|
"overrides": {
|
|
180
187
|
"mantine-react-table": {
|