@stoker-platform/web-app 0.5.128 → 0.5.134
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 +36 -0
- package/index.html +1 -0
- package/package.json +1 -1
- package/src/Collection.tsx +590 -550
- package/src/Tenant.tsx +2 -2
- package/src/main.tsx +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @stoker-platform/web-app
|
|
2
2
|
|
|
3
|
+
## 0.5.134
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- feat: improve transitions
|
|
8
|
+
|
|
9
|
+
## 0.5.133
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- feat: move navigation sidebar to RHS
|
|
14
|
+
|
|
15
|
+
## 0.5.132
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- fix: improve sidebar touch in landscape orientation
|
|
20
|
+
|
|
21
|
+
## 0.5.131
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- fix: improve sidebar touch in landscape orientation
|
|
26
|
+
|
|
27
|
+
## 0.5.130
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- fix: improve sidebar scrolling
|
|
32
|
+
|
|
33
|
+
## 0.5.129
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- fix: improve sidebar scrolling
|
|
38
|
+
|
|
3
39
|
## 0.5.128
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|
package/index.html
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" />
|
|
11
11
|
<link rel="mask-icon" href="/maskable-icon-512x512.png" color="#ffffff" />
|
|
12
12
|
<meta name="theme-color" content="#000000" />
|
|
13
|
+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
|
13
14
|
</head>
|
|
14
15
|
<body>
|
|
15
16
|
<div id="root"></div>
|