@stoker-platform/web-app 0.5.22 → 0.5.25

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,27 @@
1
1
  # @stoker-platform/web-app
2
2
 
3
+ ## 0.5.25
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: remove vite.config.ts comment
8
+
9
+ ## 0.5.24
10
+
11
+ ### Patch Changes
12
+
13
+ - fix: disable zoom for inputs and fix textarea scroll trap
14
+
15
+ ## 0.5.23
16
+
17
+ ### Patch Changes
18
+
19
+ - chore: update dependencies
20
+ - Updated dependencies
21
+ - @stoker-platform/node-client@0.5.18
22
+ - @stoker-platform/web-client@0.5.12
23
+ - @stoker-platform/utils@0.5.12
24
+
3
25
  ## 0.5.22
4
26
 
5
27
  ### Patch Changes
package/index.html CHANGED
@@ -2,7 +2,7 @@
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="UTF-8" />
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
6
6
 
7
7
  <title>Stoker</title>
8
8
  <meta name="description" content="The Stoker Starter Project web app." />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stoker-platform/web-app",
3
- "version": "0.5.22",
3
+ "version": "0.5.25",
4
4
  "type": "module",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "scripts": {
@@ -51,20 +51,20 @@
51
51
  "@radix-ui/react-tooltip": "^1.2.8",
52
52
  "@react-google-maps/api": "^2.20.8",
53
53
  "@sentry/react": "^10.38.0",
54
- "@stoker-platform/node-client": "0.5.17",
55
- "@stoker-platform/utils": "0.5.11",
56
- "@stoker-platform/web-client": "0.5.11",
54
+ "@stoker-platform/node-client": "0.5.18",
55
+ "@stoker-platform/utils": "0.5.12",
56
+ "@stoker-platform/web-client": "0.5.12",
57
57
  "@tanstack/react-table": "^8.21.3",
58
58
  "@types/react": "18.3.13",
59
59
  "@types/react-dom": "18.3.1",
60
- "@vitejs/plugin-react": "^5.1.2",
60
+ "@vitejs/plugin-react": "^5.1.3",
61
61
  "ai": "^5.0.44",
62
- "algoliasearch": "^5.47.0",
62
+ "algoliasearch": "^5.48.0",
63
63
  "class-variance-authority": "^0.7.1",
64
64
  "clsx": "^2.1.1",
65
65
  "cmdk": "^1.1.1",
66
66
  "date-fns": "^3.6.0",
67
- "firebase": "^12.8.0",
67
+ "firebase": "^12.9.0",
68
68
  "lucide-react": "^0.563.0",
69
69
  "minisearch": "^7.2.0",
70
70
  "moment-timezone": "latest",
package/src/App.css CHANGED
@@ -4,6 +4,7 @@
4
4
  overflow-y: hidden;
5
5
  }
6
6
  }
7
+
7
8
  @media screen and (max-width: 1023px) {
8
9
  .fc-toolbar.fc-header-toolbar {
9
10
  font-size: 85%;
package/src/Form.tsx CHANGED
@@ -653,7 +653,7 @@ function StringField({
653
653
  ref={(textarea) => {
654
654
  if (textarea) {
655
655
  textarea.style.height = "0px"
656
- textarea.style.height = textarea.scrollHeight + "px"
656
+ textarea.style.height = textarea.scrollHeight + 10 + "px"
657
657
  }
658
658
  }}
659
659
  disabled={isDisabled}