Browse Source

bump deps

pull/128/head
Sacha Weatherstone 3 years ago
parent
commit
d52f284c9f
  1. 12
      package.json
  2. 844
      pnpm-lock.yaml
  3. 10
      src/components/PageComponents/Config/Power.tsx
  4. 3
      src/validation/config/power.ts

12
package.json

@ -1,6 +1,6 @@
{
"name": "meshtastic-web",
"version": "2.0.13-0",
"version": "2.2.1-0",
"type": "module",
"description": "Meshtastic web client",
"license": "GPL-3.0-only",
@ -23,8 +23,8 @@
"@emeraldpay/hashicon-react": "^0.5.2",
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.2.0",
"@meshtastic/meshtasticjs": "2.2.0-1",
"@preact/signals-react": "^1.3.5",
"@meshtastic/meshtasticjs": "2.2.1-0",
"@preact/signals-react": "^1.3.6",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4",
@ -53,7 +53,7 @@
"jszip": "^3.10.1",
"lucide-react": "^0.265.0",
"mapbox-gl": "npm:empty-npm-package@^1.0.0",
"maplibre-gl": "3.2.2",
"maplibre-gl": "3.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
@ -69,8 +69,8 @@
"@tailwindcss/forms": "^0.5.4",
"@types/chrome": "^0.0.243",
"@types/geodesy": "^2.2.3",
"@types/node": "^20.4.8",
"@types/react": "^18.2.18",
"@types/node": "^20.4.10",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/w3c-web-serial": "^1.0.3",
"@types/web-bluetooth": "^0.0.17",

844
pnpm-lock.yaml

File diff suppressed because it is too large

10
src/components/PageComponents/Config/Power.tsx

@ -71,16 +71,6 @@ export const Power = (): JSX.Element => {
label: "Sleep Settings",
description: "Sleep settings for the power module",
fields: [
{
type: "number",
name: "meshSdsTimeoutSecs",
label: "Mesh SDS Timeout",
description:
"The device will enter super deep sleep after this time",
properties: {
suffix: "Seconds",
},
},
{
type: "number",
name: "sdsSecs",

3
src/validation/config/power.ts

@ -19,9 +19,6 @@ export class PowerValidation
@IsInt()
waitBluetoothSecs: number;
@IsInt()
meshSdsTimeoutSecs: number;
@IsInt()
sdsSecs: number;

Loading…
Cancel
Save