@stoker-platform/web-app 0.5.167 → 0.5.169
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 +15 -0
- package/package.json +4 -4
- package/src/DashboardChart.tsx +2 -0
- package/vite.config.ts +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @stoker-platform/web-app
|
|
2
2
|
|
|
3
|
+
## 0.5.169
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix: correct PWA icon map
|
|
8
|
+
|
|
9
|
+
## 0.5.168
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- feat: add option to disable Dashboard chart animation
|
|
14
|
+
- @stoker-platform/node-client@0.5.67
|
|
15
|
+
- @stoker-platform/utils@0.5.58
|
|
16
|
+
- @stoker-platform/web-client@0.5.68
|
|
17
|
+
|
|
3
18
|
## 0.5.167
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stoker-platform/web-app",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.169",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"scripts": {
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
52
52
|
"@react-google-maps/api": "^2.20.8",
|
|
53
53
|
"@sentry/react": "^10.56.0",
|
|
54
|
-
"@stoker-platform/node-client": "0.5.
|
|
55
|
-
"@stoker-platform/utils": "0.5.
|
|
56
|
-
"@stoker-platform/web-client": "0.5.
|
|
54
|
+
"@stoker-platform/node-client": "0.5.67",
|
|
55
|
+
"@stoker-platform/utils": "0.5.58",
|
|
56
|
+
"@stoker-platform/web-client": "0.5.68",
|
|
57
57
|
"@tanstack/react-table": "^8.21.3",
|
|
58
58
|
"@types/react": "18.3.13",
|
|
59
59
|
"@types/react-dom": "18.3.1",
|
package/src/DashboardChart.tsx
CHANGED
|
@@ -337,6 +337,7 @@ export const DashboardChart = ({ chart, title, collection }: DashboardChartProps
|
|
|
337
337
|
fill="url(#fill1)"
|
|
338
338
|
stroke="var(--chart-dark)"
|
|
339
339
|
stackId="a"
|
|
340
|
+
isAnimationActive={chart.animate ?? true}
|
|
340
341
|
/>
|
|
341
342
|
{(metricField2 || chart.formula2) && (
|
|
342
343
|
<Area
|
|
@@ -345,6 +346,7 @@ export const DashboardChart = ({ chart, title, collection }: DashboardChartProps
|
|
|
345
346
|
fill="url(#fill2)"
|
|
346
347
|
stroke="var(--chart-light)"
|
|
347
348
|
stackId="a"
|
|
349
|
+
isAnimationActive={chart.animate ?? true}
|
|
348
350
|
/>
|
|
349
351
|
)}
|
|
350
352
|
{(metricField1 || chart.formula1) && (
|
package/vite.config.ts
CHANGED
|
@@ -36,13 +36,13 @@ export default defineConfig(async ({ mode }) => {
|
|
|
36
36
|
display: "standalone",
|
|
37
37
|
icons: [
|
|
38
38
|
{
|
|
39
|
-
src: "pwa-
|
|
40
|
-
sizes: "
|
|
39
|
+
src: "pwa-64x64.png",
|
|
40
|
+
sizes: "64x64",
|
|
41
41
|
type: "image/png",
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
|
-
src: "pwa-
|
|
45
|
-
sizes: "
|
|
44
|
+
src: "pwa-192x192.png",
|
|
45
|
+
sizes: "192x192",
|
|
46
46
|
type: "image/png",
|
|
47
47
|
},
|
|
48
48
|
{
|
|
@@ -52,7 +52,7 @@ export default defineConfig(async ({ mode }) => {
|
|
|
52
52
|
purpose: "any",
|
|
53
53
|
},
|
|
54
54
|
{
|
|
55
|
-
src: "
|
|
55
|
+
src: "maskable-icon-512x512.png",
|
|
56
56
|
sizes: "512x512",
|
|
57
57
|
type: "image/png",
|
|
58
58
|
purpose: "maskable",
|