@stoker-platform/web-app 0.5.67 → 0.5.68

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @stoker-platform/web-app
2
2
 
3
+ ## 0.5.68
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: fix chart animation clipping issue
8
+
3
9
  ## 0.5.67
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stoker-platform/web-app",
3
- "version": "0.5.67",
3
+ "version": "0.5.68",
4
4
  "type": "module",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "scripts": {
package/src/App.css CHANGED
@@ -5,6 +5,21 @@
5
5
  }
6
6
  }
7
7
 
8
+ /* Print */
9
+
10
+ @media print {
11
+ body {
12
+ background-color: white !important;
13
+ background-image: none !important;
14
+ }
15
+ .list-table th:first-child,
16
+ .list-table td:first-child {
17
+ display: none;
18
+ }
19
+ }
20
+
21
+ /* FullCalendar */
22
+
8
23
  @media screen and (max-width: 1023px) {
9
24
  .fc-toolbar.fc-header-toolbar {
10
25
  font-size: 85%;
@@ -22,6 +37,8 @@
22
37
  }
23
38
  }
24
39
 
40
+ /* Date range picker */
41
+
25
42
  @media screen and (min-width: 1536px) and (max-width: 1669px) {
26
43
  .date-range-arrow {
27
44
  display: none;
@@ -34,17 +51,14 @@
34
51
  }
35
52
  }
36
53
 
37
- @media print {
38
- body {
39
- background-color: white !important;
40
- background-image: none !important;
41
- }
42
- .list-table th:first-child,
43
- .list-table td:first-child {
44
- display: none;
45
- }
54
+ /* Fix Recharts animation clipping */
55
+
56
+ clipPath[id^="animationClipPath-"] > rect {
57
+ height: 9999px;
46
58
  }
47
59
 
60
+ /* Quill */
61
+
48
62
  .ql-container.ql-snow {
49
63
  border-radius: 0 0 var(--radius) var(--radius) !important;
50
64
  border: 1px solid hsl(var(--border)) !important;