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", "name": "meshtastic-web",
"version": "2.0.13-0", "version": "2.2.1-0",
"type": "module", "type": "module",
"description": "Meshtastic web client", "description": "Meshtastic web client",
"license": "GPL-3.0-only", "license": "GPL-3.0-only",
@ -23,8 +23,8 @@
"@emeraldpay/hashicon-react": "^0.5.2", "@emeraldpay/hashicon-react": "^0.5.2",
"@hookform/error-message": "^2.0.1", "@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.2.0", "@hookform/resolvers": "^3.2.0",
"@meshtastic/meshtasticjs": "2.2.0-1", "@meshtastic/meshtasticjs": "2.2.1-0",
"@preact/signals-react": "^1.3.5", "@preact/signals-react": "^1.3.6",
"@radix-ui/react-accordion": "^1.1.2", "@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.0.4", "@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4", "@radix-ui/react-dialog": "^1.0.4",
@ -53,7 +53,7 @@
"jszip": "^3.10.1", "jszip": "^3.10.1",
"lucide-react": "^0.265.0", "lucide-react": "^0.265.0",
"mapbox-gl": "npm:empty-npm-package@^1.0.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": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-hook-form": "^7.45.4", "react-hook-form": "^7.45.4",
@ -69,8 +69,8 @@
"@tailwindcss/forms": "^0.5.4", "@tailwindcss/forms": "^0.5.4",
"@types/chrome": "^0.0.243", "@types/chrome": "^0.0.243",
"@types/geodesy": "^2.2.3", "@types/geodesy": "^2.2.3",
"@types/node": "^20.4.8", "@types/node": "^20.4.10",
"@types/react": "^18.2.18", "@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7", "@types/react-dom": "^18.2.7",
"@types/w3c-web-serial": "^1.0.3", "@types/w3c-web-serial": "^1.0.3",
"@types/web-bluetooth": "^0.0.17", "@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", label: "Sleep Settings",
description: "Sleep settings for the power module", description: "Sleep settings for the power module",
fields: [ 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", type: "number",
name: "sdsSecs", name: "sdsSecs",

3
src/validation/config/power.ts

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

Loading…
Cancel
Save