diff --git a/docs/configuration/device-config/bluetooth.mdx b/docs/configuration/device-config/bluetooth.mdx
index 0434c829..04f5d7b9 100644
--- a/docs/configuration/device-config/bluetooth.mdx
+++ b/docs/configuration/device-config/bluetooth.mdx
@@ -11,7 +11,7 @@ import TabItem from '@theme/TabItem';
The Bluetooth config options are: Enabled, Pairing Mode and Fixed PIN Value. Bluetooth config uses an admin message sending a `Config.Bluetooth` protobuf.
:::info
-On ESP32 Bluetooth will be disabled if WiFi is enabled. The WiFi setting takes precedence.
+ESP32 Devices: Bluetooth will be disabled if WiFi is enabled. The WiFi setting takes precedence.
:::
## Bluetooth Config Values
@@ -30,7 +30,14 @@ Finally, `NO_PIN` disables PIN authentication.
### Fixed PIN
-If your pairing mode is set to fixed PIN this is the value of that fixed 6 digit pin. Default value is 123456. For all other pairing modes, this number is ignored.
+If your pairing mode is set to `FIXED_PIN`, the default value is 123456. For all other pairing modes, this number is ignored. A custom integer (6 digits) can be set via the Bluetooth config options.
+
+### Default Pairing Mode
+
+The default pairing mode will be determined based on whether the device has or does not have a screen attached to it during the first boot (or with a stale device state) unless manually configured via the Bluetooth config options.
+
+- **Screen Attached:** If your device boots up for the first time (or with a stale device state), and a screen is detected, the default pairing mode will be set to `RANDOM_PIN`. Should the attached screen be removed after the device has already been booted, the default pairing mode of `RANDOM_PIN` will remain unless manually changed to `FIXED_PIN` or `NO_PIN`. It is recommended the pairing mode be updated prior to removing the attached screen.
+- **No Screen Attached:** If your device boots up for the first time (or with a stale device state), and no screen is detected, the default paring mode will be set to `FIXED_PIN` with the aforementioned default value unless manually configured to a custom value.
## Configure Bluetooth Config
@@ -46,22 +53,35 @@ values={[
:::info
-Bluetooth config is not available for Android.
+
+All Bluetooth config options are available for Android.
+
+1. Open the Meshtastic App
+2. Navigate to: **Vertical Ellipsis (3 dots top right) > Advanced Settings > Bluetooth Config**
+
:::
+:::info
+
All Bluetooth config values are available on iOS, iPadOS and macOS.
1. Open the Meshtastic App
-2. Navigate to: **Settings > Radio Configuration > Position**
+2. Navigate to: **Settings > Radio Configuration > Bluetooth (BLE)**
+
+:::
+:::info
+
All Bluetooth module config options are available in the python CLI. Example commands are below:
+:::
+
| Setting | Acceptable Values | Default |
| :-----------------------: | :-----------------: | :-----: |
| `bluetooth.enabled` | `true`, `false` | `true` |
@@ -81,8 +101,13 @@ meshtastic --set bluetooth.fixed_pin 111111
:::info
+
All Bluetooth module config options are available for the Web UI.
+
+1. Open the Meshtastic Web UI.
+2. Navigate to: **Device Config > Bluetooth**
+
:::
-
+
\ No newline at end of file
diff --git a/docs/configuration/module-config/serial.mdx b/docs/configuration/module-config/serial.mdx
index 99c7968c..5cc46cef 100644
--- a/docs/configuration/module-config/serial.mdx
+++ b/docs/configuration/module-config/serial.mdx
@@ -29,7 +29,7 @@ Defaults to 'Simple'.
Available Values:
* `DEFAULT`
-* `SIMPLE` operate as an dumb UART tunnel. What goes in will come out, Requires a channel named 'gpio'.
+* `SIMPLE` operate as an dumb UART tunnel. What goes in will come out, Requires a channel named 'serial'.
* `PROTO` not implemented yet, but will expose the Protobuf Client API on this serial port
* `TEXTMSG` Will send the string received over the serial port as a Text Message for Display on the other devices.
* `NMEA` Will output a NMEA 0183 Data stream containing the internal GPS or fixed position and other node locations as Waypoints (WPL).
@@ -159,12 +159,12 @@ This module requires attaching a peripheral accessory to your device. It will no
Default is to use RX GPIO 16 and TX GPIO 17.
### Basic Usage:
-1. Enable the module by setting `serial_module_enabled` to `1`.
+1. Enable the module by setting `serial.enabled` to `1`.
2. Set the pins (`serial.rxd` / `serial.txd`) for your preferred RX and TX GPIO pins. On tbeam boards it is recommended to use:
- RXD 35
- TXD 15
3. Set `serial.timeout` to the amount of time to wait before we consider your packet as "done".
-4. (Optional) In serial_module.h set the port to `PortNum_TEXT_MESSAGE_APP`if you want to send messages to/from the general text message channel.
+4. (Optional) set serial.mode to TESTMSG if you want to send messages to/from the general text message channel
5. Connect to your device over the serial interface at `38400 8N1`.
-6. Send a packet up to 240 bytes in length. This will get relayed over the mesh network.
+6. Send a packet up to 237 bytes in length. This will get relayed over the mesh network.
7. (Optional) Set `serial.echo` to `1` and any message you send out will be echoed back to your device.
diff --git a/docs/getting-started/flashing-firmware/esp32/index.mdx b/docs/getting-started/flashing-firmware/esp32/index.mdx
index 3af7e277..af7d5fd9 100644
--- a/docs/getting-started/flashing-firmware/esp32/index.mdx
+++ b/docs/getting-started/flashing-firmware/esp32/index.mdx
@@ -5,9 +5,13 @@ sidebar_label: ESP32 Device
sidebar_position: 2
---
+:::info
+The recommended method for firmware flashing is the [Web-Based Installer.](https://flasher.meshtastic.org)
+:::
+
## Flashing Method for ESP32 Devices
-1. The [Web-based installer](https://flasher.meshtastic.org) requires either Chrome or Edge browsers but is an excellent choice for quickly flashing devices.
-2. The [Python Flasher](/docs/software/python/flasher) does a lot under the hood to prevent you from needing to use the terminal. It also allows you to configure your device.
+1. The [Web-Based Installer](https://flasher.meshtastic.org) requires either Chrome or Edge browsers but is an excellent choice for quickly flashing devices. **This is the recommended method for firmware flashing, especially for those new to the project, due to its ease of use.**
+2. The [Python Flasher](/docs/software/python/flasher) does a lot under the hood to prevent you from needing to use the terminal.
3. The [CLI Script](/docs/getting-started/flashing-firmware/esp32/cli-script) is considered the "manual process" for flashing firmware.
4. Flashing your device using an [external serial adapter](/docs/getting-started/flashing-firmware/esp32/external-serial-adapter) should only be attempted as a last resort if no other method has been successful.
\ No newline at end of file
diff --git a/docs/software/mqtt/index.mdx b/docs/software/mqtt/index.mdx
index df0becd7..a593211d 100644
--- a/docs/software/mqtt/index.mdx
+++ b/docs/software/mqtt/index.mdx
@@ -271,10 +271,19 @@ Injecting a json message to be sent by a device is also very simple. You do need
Forwarding a text message from one device, through a broker, to another broker/device/channel would look like this.
[
](/documents/mqtt/Forward.jpg)
If you want to decode text and position messages without json, it gets complicated:
-[
](/documents/mqtt/Decode.jpg)
+[
](/documents/mqtt/DecodeNewest.jpg)
If you are interested in my flow for this it is here:
+ ```
+[{"id":"10fe1b2e9cb3feb2","type":"decode","z":"23dbb1ee.bc2e8e","name":"decode Protobuf","protofile":"a0d4288141f6a629","protoType":"ServiceEnvelope","x":295.5,"y":285,"wires":[["d3e396cf4f0a9608","d08865b41a69d85d","6f592d47b6a2eac4"]]},{"id":"40c9ee66fe7a34cb","type":"function","z":"23dbb1ee.bc2e8e","name":"function get the message as string from TEXT_MESSAGE_APP","func":"msg.payload = msg.payload.packet.decoded.payload;\n\nlet bufferObj = Buffer.from(msg.payload, \"base64\");\nlet decodedString = bufferObj.toString(\"utf8\");\nmsg.payload = decodedString;\n\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":410.5,"y":450,"wires":[["553374591214eaca"]]},{"id":"553374591214eaca","type":"debug","z":"23dbb1ee.bc2e8e","name":"text message out","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":762.5,"y":449,"wires":[]},{"id":"c6afbb9f1665b162","type":"debug","z":"23dbb1ee.bc2e8e","name":"channelId","active":false,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":785.5,"y":257,"wires":[]},{"id":"607ef387d5701985","type":"debug","z":"23dbb1ee.bc2e8e","name":"gatewayId","active":false,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":792.5,"y":293,"wires":[]},{"id":"d3e396cf4f0a9608","type":"debug","z":"23dbb1ee.bc2e8e","name":"entire payload","active":false,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":296.5,"y":247,"wires":[]},{"id":"2339b328bb9bb1d8","type":"comment","z":"23dbb1ee.bc2e8e","name":"Decode all cleartext text and position messages sent by Meshtastic devices into JSON without relying on JSON conversion on the device.","info":"","x":515.5,"y":214,"wires":[]},{"id":"408d796d997bb832","type":"function","z":"23dbb1ee.bc2e8e","name":"function get the nested payload as base64","func":"msg.payload = msg.payload.packet.decoded.payload;\n\nlet bufferObj = Buffer.from(msg.payload, \"base64\");\n//let decodedString = bufferObj.toString(\"hex\");\nmsg.payload = bufferObj;\nmsg.topic=\"\";\n//if you don't zero out the protubufTopic it will try to\n//decode it as part of the mqtt service envelope instead\n//of two-stage decoding\nmsg.protobufType=null;\n\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":349,"y":552,"wires":[["9435a3c605efedb4","1ed6f96c8214d7b3"]]},{"id":"61995c9f8e8266b3","type":"debug","z":"23dbb1ee.bc2e8e","name":"portnum","active":false,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":784.5,"y":330,"wires":[]},{"id":"9435a3c605efedb4","type":"debug","z":"23dbb1ee.bc2e8e","name":"nested payload","active":false,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":281.5,"y":603,"wires":[]},{"id":"b832775d386f7ac9","type":"mqtt in","z":"23dbb1ee.bc2e8e","name":"","topic":"msh/+/c/#","qos":"2","datatype":"buffer","broker":"37cadac381653b1e","nl":false,"rap":true,"rh":0,"inputs":0,"x":117.5,"y":286,"wires":[["10fe1b2e9cb3feb2"]]},{"id":"d08865b41a69d85d","type":"switch","z":"23dbb1ee.bc2e8e","name":"switch manual decoding nested message based on portum","property":"payload.packet.decoded.portnum","propertyType":"msg","rules":[{"t":"eq","v":"TEXT_MESSAGE_APP","vt":"str"},{"t":"eq","v":"POSITION_APP","vt":"str"}],"checkall":"true","repair":false,"outputs":2,"x":281.5,"y":505,"wires":[["40c9ee66fe7a34cb"],["408d796d997bb832"]]},{"id":"8abb1bb458af2c4f","type":"change","z":"23dbb1ee.bc2e8e","name":"","rules":[{"t":"set","p":"gatewayId","pt":"flow","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":1021.5,"y":288,"wires":[[]]},{"id":"1ced0be28eeef0d3","type":"change","z":"23dbb1ee.bc2e8e","name":"","rules":[{"t":"set","p":"latitude","pt":"flow","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":1026.5,"y":407,"wires":[[]]},{"id":"313fd3cfe6d91850","type":"change","z":"23dbb1ee.bc2e8e","name":"","rules":[{"t":"set","p":"longitude","pt":"flow","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":1036.5,"y":450,"wires":[["d02e53cdfb565da6"]]},{"id":"33dd43e3c05f826c","type":"geofence","z":"23dbb1ee.bc2e8e","name":"geofence","mode":"circle","inside":"true","rad":69174.91569647488,"points":[],"centre":{"latitude":40.16287050252407,"longitude":-86.60385131835938},"floor":"","ceiling":"","worldmap":true,"outputs":2,"x":1202.5,"y":595,"wires":[[],["4d01eb8f1b31f039"]]},{"id":"d02e53cdfb565da6","type":"function","z":"23dbb1ee.bc2e8e","name":"trigger function to send a mapping point","func":"let lat = parseFloat(flow.get(\"latitude\"));\nlet lon = parseFloat(flow.get(\"longitude\"));\nlat=lat * 0.0000001;\nlon=lon * 0.0000001;\nlet name = flow.get(\"from\")\n\nmsg={\"payload\":{\"name\":name,\n \"lat\":lat,\n \"lon\":lon,\n \"action\":\"send\",\n \"icon\": \"car\",\n \"label\":name\n }}\n\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":1181.5,"y":520,"wires":[["33dd43e3c05f826c","4d01eb8f1b31f039"]]},{"id":"4d01eb8f1b31f039","type":"worldmap","z":"23dbb1ee.bc2e8e","name":"","lat":"40","lon":"-86","zoom":"7","layer":"OSMG","cluster":"","maxage":"","usermenu":"show","layers":"show","panit":"false","panlock":"false","zoomlock":"false","hiderightclick":"false","coords":"none","showgrid":"false","showruler":"false","allowFileDrop":"false","path":"/worldmap","overlist":"DR,CO,RA,DN,HM","maplist":"OSMG,OSMC,EsriC,EsriS,EsriT,EsriDG,UKOS","mapname":"","mapurl":"","mapopt":"","mapwms":false,"x":1206.5,"y":675,"wires":[]},{"id":"1ed6f96c8214d7b3","type":"decode","z":"23dbb1ee.bc2e8e","name":"decode Position Protobuf","protofile":"dbab6472b07929a0","protoType":"Position","x":667.5,"y":548,"wires":[["db1933ba36503bd9","dad9f487318f21d9"]]},{"id":"db1933ba36503bd9","type":"debug","z":"23dbb1ee.bc2e8e","name":"Position decoded","active":false,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":673.5,"y":607,"wires":[]},{"id":"dad9f487318f21d9","type":"function","z":"23dbb1ee.bc2e8e","name":"Split","func":"var lat = { payload: msg.payload.latitudeI };\nvar lon = { payload: msg.payload.longitudeI };\nvar alt = { payload: msg.payload.altitude };\nvar tm = { payload: msg.payload.time };\n\nreturn [lat,lon,alt,tm];","outputs":4,"noerr":0,"initialize":"","finalize":"","libs":[],"x":875.5,"y":549,"wires":[["1ced0be28eeef0d3","8bb97f802662976c"],["313fd3cfe6d91850","c8e135f3e542bb1b"],["602fb2020680280c"],["ed424ae3d45dd2ac"]]},{"id":"8bb97f802662976c","type":"debug","z":"23dbb1ee.bc2e8e","name":"lat","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":1017.5,"y":583,"wires":[]},{"id":"c8e135f3e542bb1b","type":"debug","z":"23dbb1ee.bc2e8e","name":"lon","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":1018.5,"y":618,"wires":[]},{"id":"602fb2020680280c","type":"debug","z":"23dbb1ee.bc2e8e","name":"alt","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":1017.5,"y":654,"wires":[]},{"id":"ed424ae3d45dd2ac","type":"debug","z":"23dbb1ee.bc2e8e","name":"time","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":1018.5,"y":688,"wires":[]},{"id":"6f592d47b6a2eac4","type":"function","z":"23dbb1ee.bc2e8e","name":"Split Decoded 1","func":"var channelId = { payload: msg.payload.channelId};\nvar gatewayId = { payload: msg.payload.gatewayId};\nvar portnum = { payload: msg.payload.packet.decoded.portnum};\nvar fr= {payload: \"!\" + msg.payload.packet.from.toString(16)};\nvar to = {payload:\"!\"+ msg.payload.packet.to.toString(16)};\n\nreturn [channelId, gatewayId, portnum, fr, to ];","outputs":5,"noerr":0,"initialize":"","finalize":"","libs":[],"x":577.5,"y":294,"wires":[["c6afbb9f1665b162"],["607ef387d5701985","8abb1bb458af2c4f"],["61995c9f8e8266b3"],["fd881fac22422773","a389f9875da672ec"],["cf066ad415df30ae"]]},{"id":"fd881fac22422773","type":"debug","z":"23dbb1ee.bc2e8e","name":"from","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":772.5,"y":365,"wires":[]},{"id":"cf066ad415df30ae","type":"debug","z":"23dbb1ee.bc2e8e","name":"to","active":false,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":771.5,"y":399,"wires":[]},{"id":"a389f9875da672ec","type":"change","z":"23dbb1ee.bc2e8e","name":"set flow.from","rules":[{"t":"set","p":"from","pt":"flow","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":1012.5,"y":364,"wires":[[]]},{"id":"a0d4288141f6a629","type":"protobuf-file","protopath":"E:\\Meshtastic-protobufs-master\\mqtt.proto","watchFile":true,"keepCase":false},{"id":"37cadac381653b1e","type":"mqtt-broker","name":"","broker":"192.168.2.45","port":"1883","clientid":"","autoConnect":true,"usetls":false,"protocolVersion":"4","keepalive":"60","cleansession":true,"birthTopic":"","birthQos":"0","birthPayload":"","birthMsg":{},"closeTopic":"","closeQos":"0","closePayload":"","closeMsg":{},"willTopic":"","willQos":"0","willPayload":"","willMsg":{},"userProps":"","sessionExpiry":""},{"id":"dbab6472b07929a0","type":"protobuf-file","protopath":"E:\\Meshtastic-protobufs-master\\mesh.proto","watchFile":true,"keepCase":false}]
+ ```
(documents/mqtt/Flow.txt)
Node-red can rapidly (minutes vs days) put together some pretty impressive output when paired with meshtastic. Here is the output of that flow geofencing and mapping via mqtt data.
[
](/documents/mqtt/Mapping.jpg)
+Advanced use, such as encoding Position and sending it to a device via MQTT without using JSON can get a little complicated. An example of how it can be done is below.
+[
](/documents/mqtt/EncodingPosition.jpg)
+The flow is:
+ ```
+[{"id":"32ca608d9e7c5236","type":"inject","z":"23dbb1ee.bc2e8e","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":96.5,"y":1952,"wires":[["2b536512e8c7aef2"]]},{"id":"20bbd2d1408b8dc5","type":"change","z":"23dbb1ee.bc2e8e","name":"","rules":[{"t":"set","p":"channelId_outbound","pt":"flow","to":"LongFast","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":772,"y":2027,"wires":[[]]},{"id":"c6cb373157be01d6","type":"change","z":"23dbb1ee.bc2e8e","name":"","rules":[{"t":"set","p":"gatewayId_outbound","pt":"flow","to":"\"!55c7312c\"","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":772,"y":2066,"wires":[[]]},{"id":"24199ec7eaf89c1a","type":"change","z":"23dbb1ee.bc2e8e","name":"","rules":[{"t":"set","p":"portnum_outbound","pt":"flow","to":"3","tot":"num"}],"action":"","property":"","from":"","to":"","reg":false,"x":774,"y":2106,"wires":[[]]},{"id":"de38ad5ef343623a","type":"change","z":"23dbb1ee.bc2e8e","name":"","rules":[{"t":"set","p":"from_outbound","pt":"flow","to":"1439117612","tot":"num"}],"action":"","property":"","from":"","to":"","reg":false,"x":781,"y":2146,"wires":[[]]},{"id":"d435e8abe0852f93","type":"change","z":"23dbb1ee.bc2e8e","name":"","rules":[{"t":"set","p":"to_outbound","pt":"flow","to":"4294967295","tot":"num"}],"action":"","property":"","from":"","to":"","reg":false,"x":790,"y":2188,"wires":[[]]},{"id":"1f8d172708898860","type":"function","z":"23dbb1ee.bc2e8e","name":"Assemble Position protobuf","func":"msg.protobufType=null;\nmsg.payload =\n{\n \"packet\": {\n \"from\": flow.get(\"from_outbound\"),\n \"to\": flow.get(\"to_outbound\"), \n \"decoded\":{\n //how ENUMS are handled here\n //portnum is decoded as string but encoded as number\n //in the encode/decode node-red nodes based on protobuf.js\n \"portnum\": flow.get(\"portnum_outbound\"),\n \"payload\": msg.payload \n } \n },\n\n \"channelId\": flow.get(\"channelId_outbound\"),\n \"gatewayId\": flow.get(\"gatewayId_outbound\"),\n};\nreturn msg;\n//info on how to get json data into protobuf \"bytes\" field\n//https://github.com/protobufjs/protobuf.js/wiki/Changes-in-ProtoBuf.js-3.8","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":1086,"y":2019,"wires":[["b8ccf1cfe8bf40a3"]]},{"id":"b8ccf1cfe8bf40a3","type":"encode","z":"23dbb1ee.bc2e8e","name":"","protofile":"a0d4288141f6a629","protoType":"ServiceEnvelope","x":1287,"y":2020,"wires":[["dbc78f035c9c2b56","a002c148f3a06bac"]]},{"id":"03a7e69ca6d471fe","type":"debug","z":"23dbb1ee.bc2e8e","name":"show hex string","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":1319,"y":2180,"wires":[]},{"id":"dbc78f035c9c2b56","type":"function","z":"23dbb1ee.bc2e8e","name":"dump payload as hex string","func":"var hex=Buffer.from(msg.payload,\"hex\");\nmsg.payload=hex.toString(\"hex\");\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":1096,"y":2178,"wires":[["03a7e69ca6d471fe"]]},{"id":"2b536512e8c7aef2","type":"function","z":"23dbb1ee.bc2e8e","name":"Inject lat lon alt","func":"msg.payload={\n \"latitudeI\": 399600000,\n \"longitudeI\": -862600000,\n \"altitude\": 100\n}\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":277.5,"y":1953,"wires":[["9443a9a980e54c75"]]},{"id":"9443a9a980e54c75","type":"encode","z":"23dbb1ee.bc2e8e","name":"encode Position as protobuf","protofile":"dbab6472b07929a0","protoType":"Position","x":506,"y":1953,"wires":[["5c36d3a7f4dca14e"]]},{"id":"5c36d3a7f4dca14e","type":"change","z":"23dbb1ee.bc2e8e","name":"","rules":[{"t":"set","p":"nested_outbound","pt":"flow","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":776,"y":1952,"wires":[["20bbd2d1408b8dc5","c6cb373157be01d6","24199ec7eaf89c1a","de38ad5ef343623a","d435e8abe0852f93","04d0c4a5f3485c6f"]]},{"id":"04d0c4a5f3485c6f","type":"function","z":"23dbb1ee.bc2e8e","name":"dump payload as base64 string","func":"var hex=Buffer.from(msg.payload,\"base64\");\nmsg.payload=hex.toString(\"base64\");\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":1082,"y":1952,"wires":[["1f8d172708898860"]]},{"id":"a002c148f3a06bac","type":"decode","z":"23dbb1ee.bc2e8e","name":"test decode Protobuf","protofile":"a0d4288141f6a629","protoType":"ServiceEnvelope","x":1249,"y":1860,"wires":[["4b6fc79398d05782"]]},{"id":"4b6fc79398d05782","type":"debug","z":"23dbb1ee.bc2e8e","name":"test entire payload","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":1458,"y":1859,"wires":[]},{"id":"a0d4288141f6a629","type":"protobuf-file","protopath":"E:\\Meshtastic-protobufs-master\\mqtt.proto","watchFile":true,"keepCase":false},{"id":"dbab6472b07929a0","type":"protobuf-file","protopath":"E:\\Meshtastic-protobufs-master\\mesh.proto","watchFile":true,"keepCase":false}]
+ ```
diff --git a/package.json b/package.json
index 5db5aaca..645a02c3 100644
--- a/package.json
+++ b/package.json
@@ -21,20 +21,20 @@
"@heroicons/react": "^2.0.13",
"@leenguyen/react-flip-clock-countdown": "^1.3.1",
"@mdx-js/react": "^1.6.22",
- "@meshtastic/meshtasticjs": "^0.6.113",
+ "@meshtastic/meshtasticjs": "^0.6.115",
"autoprefixer": "^10.4.13",
"base64-js": "^1.5.1",
"dotenv": "^16.0.3",
"framer-motion": "^6.5.1",
- "postcss": "^8.4.18",
+ "postcss": "^8.4.19",
"react": "^17.0.2",
"react-dom": "^17.0.2",
- "react-icons": "^4.6.0",
+ "react-icons": "^4.7.1",
"react-responsive-carousel": "^3.2.23",
"swr": "^1.3.0",
- "tailwindcss": "^3.2.3",
+ "tailwindcss": "^3.2.4",
"url-search-params-polyfill": "^8.1.1",
- "use-breakpoint": "^3.0.3"
+ "use-breakpoint": "^3.0.4"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "2.2.0",
@@ -43,8 +43,8 @@
"@tsconfig/docusaurus": "^1.0.6",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
- "@types/react-dom": "^18.0.8",
- "prettier": "^2.7.1",
- "typescript": "^4.8.4"
+ "@types/react-dom": "^18.0.9",
+ "prettier": "^2.8.0",
+ "typescript": "^4.9.3"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 30df93e5..0f94385a 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -11,62 +11,62 @@ specifiers:
'@leenguyen/react-flip-clock-countdown': ^1.3.1
'@mdx-js/react': ^1.6.22
'@meshtastic/eslint-config': ^1.0.8
- '@meshtastic/meshtasticjs': ^0.6.113
+ '@meshtastic/meshtasticjs': ^0.6.115
'@tailwindcss/typography': ^0.5.8
'@tsconfig/docusaurus': ^1.0.6
'@types/node': ^18.11.9
'@types/react': ^18.0.25
- '@types/react-dom': ^18.0.8
+ '@types/react-dom': ^18.0.9
autoprefixer: ^10.4.13
base64-js: ^1.5.1
dotenv: ^16.0.3
framer-motion: ^6.5.1
- postcss: ^8.4.18
- prettier: ^2.7.1
+ postcss: ^8.4.19
+ prettier: ^2.8.0
react: ^17.0.2
react-dom: ^17.0.2
- react-icons: ^4.6.0
+ react-icons: ^4.7.1
react-responsive-carousel: ^3.2.23
swr: ^1.3.0
- tailwindcss: ^3.2.3
- typescript: ^4.8.4
+ tailwindcss: ^3.2.4
+ typescript: ^4.9.3
url-search-params-polyfill: ^8.1.1
- use-breakpoint: ^3.0.3
+ use-breakpoint: ^3.0.4
dependencies:
'@algolia/client-search': 4.14.2
- '@docusaurus/core': 2.2.0_56jbash75ng5psbctf36wqywr4
- '@docusaurus/plugin-content-docs': 2.2.0_56jbash75ng5psbctf36wqywr4
- '@docusaurus/preset-classic': 2.2.0_qealvalg3qigqrjomgx4rnwdxu
+ '@docusaurus/core': 2.2.0_wfh3mw2ke2bdr53qfq544ltemu
+ '@docusaurus/plugin-content-docs': 2.2.0_wfh3mw2ke2bdr53qfq544ltemu
+ '@docusaurus/preset-classic': 2.2.0_bsafmusoukf4e6aet6onn76mra
'@headlessui/react': 1.7.4_sfoxds7t5ydpegc3knd667wn6m
'@heroicons/react': 2.0.13_react@17.0.2
'@leenguyen/react-flip-clock-countdown': 1.3.1_react@17.0.2
'@mdx-js/react': 1.6.22_react@17.0.2
- '@meshtastic/meshtasticjs': 0.6.113
- autoprefixer: 10.4.13_postcss@8.4.18
+ '@meshtastic/meshtasticjs': 0.6.115
+ autoprefixer: 10.4.13_postcss@8.4.19
base64-js: 1.5.1
dotenv: 16.0.3
framer-motion: 6.5.1_sfoxds7t5ydpegc3knd667wn6m
- postcss: 8.4.18
+ postcss: 8.4.19
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- react-icons: 4.6.0_react@17.0.2
+ react-icons: 4.7.1_react@17.0.2
react-responsive-carousel: 3.2.23
swr: 1.3.0_react@17.0.2
- tailwindcss: 3.2.3_postcss@8.4.18
+ tailwindcss: 3.2.4_postcss@8.4.19
url-search-params-polyfill: 8.1.1
- use-breakpoint: 3.0.3_sfoxds7t5ydpegc3knd667wn6m
+ use-breakpoint: 3.0.4_sfoxds7t5ydpegc3knd667wn6m
devDependencies:
'@docusaurus/module-type-aliases': 2.2.0_sfoxds7t5ydpegc3knd667wn6m
'@meshtastic/eslint-config': 1.0.8
- '@tailwindcss/typography': 0.5.8_tailwindcss@3.2.3
+ '@tailwindcss/typography': 0.5.8_tailwindcss@3.2.4
'@tsconfig/docusaurus': 1.0.6
'@types/node': 18.11.9
'@types/react': 18.0.25
- '@types/react-dom': 18.0.8
- prettier: 2.7.1
- typescript: 4.8.4
+ '@types/react-dom': 18.0.9
+ prettier: 2.8.0
+ typescript: 4.9.3
packages:
@@ -200,8 +200,8 @@ packages:
'@babel/highlight': 7.18.6
dev: false
- /@babel/compat-data/7.20.1:
- resolution: {integrity: sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==}
+ /@babel/compat-data/7.20.5:
+ resolution: {integrity: sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==}
engines: {node: '>=6.9.0'}
dev: false
@@ -210,13 +210,13 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.20.4
+ '@babel/generator': 7.20.5
'@babel/helper-module-transforms': 7.20.2
- '@babel/helpers': 7.20.1
- '@babel/parser': 7.20.3
+ '@babel/helpers': 7.20.6
+ '@babel/parser': 7.20.5
'@babel/template': 7.18.10
- '@babel/traverse': 7.20.1
- '@babel/types': 7.20.2
+ '@babel/traverse': 7.20.5
+ '@babel/types': 7.20.5
convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -229,20 +229,20 @@ packages:
- supports-color
dev: false
- /@babel/core/7.20.2:
- resolution: {integrity: sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==}
+ /@babel/core/7.20.5:
+ resolution: {integrity: sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.20.4
- '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2
+ '@babel/generator': 7.20.5
+ '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5
'@babel/helper-module-transforms': 7.20.2
- '@babel/helpers': 7.20.1
- '@babel/parser': 7.20.3
+ '@babel/helpers': 7.20.6
+ '@babel/parser': 7.20.5
'@babel/template': 7.18.10
- '@babel/traverse': 7.20.1
- '@babel/types': 7.20.2
+ '@babel/traverse': 7.20.5
+ '@babel/types': 7.20.5
convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -252,11 +252,11 @@ packages:
- supports-color
dev: false
- /@babel/generator/7.20.4:
- resolution: {integrity: sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==}
+ /@babel/generator/7.20.5:
+ resolution: {integrity: sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.2
+ '@babel/types': 7.20.5
'@jridgewell/gen-mapping': 0.3.2
jsesc: 2.5.2
dev: false
@@ -265,7 +265,7 @@ packages:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.2
+ '@babel/types': 7.20.5
dev: false
/@babel/helper-builder-binary-assignment-operator-visitor/7.18.9:
@@ -273,29 +273,29 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-explode-assignable-expression': 7.18.6
- '@babel/types': 7.20.2
+ '@babel/types': 7.20.5
dev: false
- /@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.2:
+ /@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.5:
resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.20.1
- '@babel/core': 7.20.2
+ '@babel/compat-data': 7.20.5
+ '@babel/core': 7.20.5
'@babel/helper-validator-option': 7.18.6
browserslist: 4.21.4
semver: 6.3.0
dev: false
- /@babel/helper-create-class-features-plugin/7.20.2_@babel+core@7.20.2:
- resolution: {integrity: sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA==}
+ /@babel/helper-create-class-features-plugin/7.20.5_@babel+core@7.20.5:
+ resolution: {integrity: sha512-3RCdA/EmEaikrhayahwToF0fpweU/8o2p8vhc1c/1kftHOdTKuC65kik/TLc+qfbS8JKw4qqJbne4ovICDhmww==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.19.0
@@ -307,24 +307,24 @@ packages:
- supports-color
dev: false
- /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.20.2:
- resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==}
+ /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.20.5:
+ resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-annotate-as-pure': 7.18.6
- regexpu-core: 5.2.1
+ regexpu-core: 5.2.2
dev: false
- /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.2:
+ /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.5:
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2
+ '@babel/core': 7.20.5
+ '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5
'@babel/helper-plugin-utils': 7.20.2
debug: 4.3.4
lodash.debounce: 4.0.8
@@ -343,7 +343,7 @@ packages:
resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.2
+ '@babel/types': 7.20.5
dev: false
/@babel/helper-function-name/7.19.0:
@@ -351,28 +351,28 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.18.10
- '@babel/types': 7.20.2
+ '@babel/types': 7.20.5
dev: false
/@babel/helper-hoist-variables/7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.2
+ '@babel/types': 7.20.5
dev: false
/@babel/helper-member-expression-to-functions/7.18.9:
resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.2
+ '@babel/types': 7.20.5
dev: false
/@babel/helper-module-imports/7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.2
+ '@babel/types': 7.20.5
dev: false
/@babel/helper-module-transforms/7.20.2:
@@ -385,8 +385,8 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/helper-validator-identifier': 7.19.1
'@babel/template': 7.18.10
- '@babel/traverse': 7.20.1
- '@babel/types': 7.20.2
+ '@babel/traverse': 7.20.5
+ '@babel/types': 7.20.5
transitivePeerDependencies:
- supports-color
dev: false
@@ -395,7 +395,7 @@ packages:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.2
+ '@babel/types': 7.20.5
dev: false
/@babel/helper-plugin-utils/7.10.4:
@@ -407,17 +407,17 @@ packages:
engines: {node: '>=6.9.0'}
dev: false
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.2:
+ /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.5:
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-wrap-function': 7.19.0
- '@babel/types': 7.20.2
+ '@babel/helper-wrap-function': 7.20.5
+ '@babel/types': 7.20.5
transitivePeerDependencies:
- supports-color
dev: false
@@ -429,8 +429,8 @@ packages:
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-member-expression-to-functions': 7.18.9
'@babel/helper-optimise-call-expression': 7.18.6
- '@babel/traverse': 7.20.1
- '@babel/types': 7.20.2
+ '@babel/traverse': 7.20.5
+ '@babel/types': 7.20.5
transitivePeerDependencies:
- supports-color
dev: false
@@ -439,21 +439,21 @@ packages:
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.2
+ '@babel/types': 7.20.5
dev: false
/@babel/helper-skip-transparent-expression-wrappers/7.20.0:
resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.2
+ '@babel/types': 7.20.5
dev: false
/@babel/helper-split-export-declaration/7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.2
+ '@babel/types': 7.20.5
dev: false
/@babel/helper-string-parser/7.19.4:
@@ -471,25 +471,25 @@ packages:
engines: {node: '>=6.9.0'}
dev: false
- /@babel/helper-wrap-function/7.19.0:
- resolution: {integrity: sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==}
+ /@babel/helper-wrap-function/7.20.5:
+ resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.19.0
'@babel/template': 7.18.10
- '@babel/traverse': 7.20.1
- '@babel/types': 7.20.2
+ '@babel/traverse': 7.20.5
+ '@babel/types': 7.20.5
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/helpers/7.20.1:
- resolution: {integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==}
+ /@babel/helpers/7.20.6:
+ resolution: {integrity: sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.18.10
- '@babel/traverse': 7.20.1
- '@babel/types': 7.20.2
+ '@babel/traverse': 7.20.5
+ '@babel/types': 7.20.5
transitivePeerDependencies:
- supports-color
dev: false
@@ -503,142 +503,142 @@ packages:
js-tokens: 4.0.0
dev: false
- /@babel/parser/7.20.3:
- resolution: {integrity: sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==}
+ /@babel/parser/7.20.5:
+ resolution: {integrity: sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.20.2
+ '@babel/types': 7.20.5
dev: false
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.20.2:
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.20.5:
resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.2
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.5
dev: false
- /@babel/plugin-proposal-async-generator-functions/7.20.1_@babel+core@7.20.2:
+ /@babel/plugin-proposal-async-generator-functions/7.20.1_@babel+core@7.20.5:
resolution: {integrity: sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.2
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.2
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.5
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2
+ '@babel/core': 7.20.5
+ '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2
+ '@babel/core': 7.20.5
+ '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.2
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.5
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.2
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5
dev: false
- /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.2:
+ /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.5:
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.2
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.5
dev: false
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.2
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5
dev: false
- /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.20.2:
+ /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.20.5:
resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.2
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5
dev: false
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.2
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5
dev: false
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.2
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.5
dev: false
/@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9:
@@ -649,147 +649,147 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.10.4
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9
- '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.12.9
+ '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.12.9
dev: false
- /@babel/plugin-proposal-object-rest-spread/7.20.2_@babel+core@7.20.2:
+ /@babel/plugin-proposal-object-rest-spread/7.20.2_@babel+core@7.20.5:
resolution: {integrity: sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.20.1
- '@babel/core': 7.20.2
- '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2
+ '@babel/compat-data': 7.20.5
+ '@babel/core': 7.20.5
+ '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.2
- '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.20.2
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.20.5
dev: false
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.2
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.5
dev: false
- /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.20.2:
+ /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.20.5:
resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.2
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5
dev: false
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2
+ '@babel/core': 7.20.5
+ '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.20.2:
- resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
+ /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.20.5:
+ resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2
+ '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.2
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.5
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2
+ '@babel/core': 7.20.5
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.2:
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.5:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.2:
+ /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.5:
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.2:
+ /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.5:
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.2:
+ /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.5:
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.2:
+ /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.5:
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.2:
+ /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.5:
resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.2:
+ /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.5:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
@@ -802,40 +802,40 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.2:
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.5:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.2:
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.5:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.2:
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.5:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
@@ -848,116 +848,116 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.2:
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.5:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.2:
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.5:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.2:
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.5:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.2:
+ /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.5:
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.2:
+ /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.5:
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.2:
+ /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.5:
resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.2
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.5
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-block-scoping/7.20.2_@babel+core@7.20.2:
- resolution: {integrity: sha512-y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ==}
+ /@babel/plugin-transform-block-scoping/7.20.5_@babel+core@7.20.5:
+ resolution: {integrity: sha512-WvpEIW9Cbj9ApF3yJCjIEEf1EiNJLtXagOrL5LNWEZOo3jv8pmPoYTSNJQvqej8OavVlgOoOPw6/htGZro6IkA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-classes/7.20.2_@babel+core@7.20.2:
+ /@babel/plugin-transform-classes/7.20.2_@babel+core@7.20.5:
resolution: {integrity: sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2
+ '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.19.0
'@babel/helper-optimise-call-expression': 7.18.6
@@ -969,120 +969,120 @@ packages:
- supports-color
dev: false
- /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.20.2:
+ /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.20.5:
resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-destructuring/7.20.2_@babel+core@7.20.2:
+ /@babel/plugin-transform-destructuring/7.20.2_@babel+core@7.20.5:
resolution: {integrity: sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2
+ '@babel/core': 7.20.5
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.2:
+ /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.5:
resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.2:
+ /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.5:
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.2:
+ /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.5:
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2
+ '@babel/core': 7.20.5
+ '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5
'@babel/helper-function-name': 7.19.0
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.2:
+ /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.5:
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.20.5:
resolution: {integrity: sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-module-transforms': 7.20.2
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.20.5:
resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-module-transforms': 7.20.2
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-simple-access': 7.20.2
@@ -1090,13 +1090,13 @@ packages:
- supports-color
dev: false
- /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.20.5:
resolution: {integrity: sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-module-transforms': 7.20.2
'@babel/helper-plugin-utils': 7.20.2
@@ -1105,55 +1105,55 @@ packages:
- supports-color
dev: false
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-module-transforms': 7.20.2
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.20.2:
- resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==}
+ /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.5:
+ resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2
+ '@babel/core': 7.20.5
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-replace-supers': 7.19.1
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-parameters/7.20.3_@babel+core@7.12.9:
- resolution: {integrity: sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA==}
+ /@babel/plugin-transform-parameters/7.20.5_@babel+core@7.12.9:
+ resolution: {integrity: sha512-h7plkOmcndIUWXZFLgpbrh2+fXAi47zcUX7IrOQuZdLD0I0KvjJ6cvo3BEcAOsDOcZhVKGJqv07mkSqK0y2isQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1162,376 +1162,376 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-parameters/7.20.3_@babel+core@7.20.2:
- resolution: {integrity: sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA==}
+ /@babel/plugin-transform-parameters/7.20.5_@babel+core@7.20.5:
+ resolution: {integrity: sha512-h7plkOmcndIUWXZFLgpbrh2+fXAi47zcUX7IrOQuZdLD0I0KvjJ6cvo3BEcAOsDOcZhVKGJqv07mkSqK0y2isQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-react-constant-elements/7.20.2_@babel+core@7.20.2:
+ /@babel/plugin-transform-react-constant-elements/7.20.2_@babel+core@7.20.5:
resolution: {integrity: sha512-KS/G8YI8uwMGKErLFOHS/ekhqdHhpEloxs43NecQHVgo2QuQSyJhGIY1fL8UGl9wy5ItVwwoUL4YxVqsplGq2g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
- '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.2
+ '@babel/core': 7.20.5
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.5
dev: false
- /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.2:
+ /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.5:
resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.2
- '@babel/types': 7.20.2
+ '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.5
+ '@babel/types': 7.20.5
dev: false
- /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.20.2:
- resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
+ /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.20.5:
+ resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
- regenerator-transform: 0.15.0
+ regenerator-transform: 0.15.1
dev: false
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-runtime/7.19.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-runtime/7.19.6_@babel+core@7.20.5:
resolution: {integrity: sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.2
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.2
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.2
+ babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.5
+ babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.5
+ babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.5
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-spread/7.19.0_@babel+core@7.20.2:
+ /@babel/plugin-transform-spread/7.19.0_@babel+core@7.20.5:
resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
dev: false
- /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.2:
+ /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.5:
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.2:
+ /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.5:
resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-typescript/7.20.2_@babel+core@7.20.2:
+ /@babel/plugin-transform-typescript/7.20.2_@babel+core@7.20.5:
resolution: {integrity: sha512-jvS+ngBfrnTUBfOQq8NfGnSbF9BrqlR6hjJ2yVxMkmO5nL/cdifNbI30EfjRlN4g5wYWNnMPyj5Sa6R1pbLeag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2
+ '@babel/core': 7.20.5
+ '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.2
+ '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.5
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.2:
+ /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.5:
resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.2:
+ /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2
+ '@babel/core': 7.20.5
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.5
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/preset-env/7.20.2_@babel+core@7.20.2:
+ /@babel/preset-env/7.20.2_@babel+core@7.20.5:
resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.20.1
- '@babel/core': 7.20.2
- '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2
+ '@babel/compat-data': 7.20.5
+ '@babel/core': 7.20.5
+ '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.20.2
- '@babel/plugin-proposal-async-generator-functions': 7.20.1_@babel+core@7.20.2
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.2
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.20.2
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.20.2
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.2
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.2
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.2
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.2
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.2
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.2
- '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.2
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.2
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.2
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.2
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.2
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.2
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.2
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.2
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.2
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.2
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-transform-block-scoping': 7.20.2_@babel+core@7.20.2
- '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.20.2
- '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.2
- '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.20.2
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.2
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.2
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.2
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.2
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-transform-modules-amd': 7.19.6_@babel+core@7.20.2
- '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.2
- '@babel/plugin-transform-modules-systemjs': 7.19.6_@babel+core@7.20.2
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.20.2
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.20.2
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.2
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.2
- '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.2
- '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.2
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.2
- '@babel/preset-modules': 0.1.5_@babel+core@7.20.2
- '@babel/types': 7.20.2
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.2
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.2
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.2
- core-js-compat: 3.26.0
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.20.5
+ '@babel/plugin-proposal-async-generator-functions': 7.20.1_@babel+core@7.20.5
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.5
+ '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.20.5
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.20.5
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.5
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.5
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.5
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.5
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.5
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.5
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.5
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.5
+ '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-transform-block-scoping': 7.20.5_@babel+core@7.20.5
+ '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.20.5
+ '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.5
+ '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.20.5
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.5
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.5
+ '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.5
+ '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.5
+ '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-transform-modules-amd': 7.19.6_@babel+core@7.20.5
+ '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.5
+ '@babel/plugin-transform-modules-systemjs': 7.19.6_@babel+core@7.20.5
+ '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.5
+ '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.20.5
+ '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.20.5
+ '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.5
+ '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.5
+ '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.5
+ '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.5
+ '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.5
+ '@babel/preset-modules': 0.1.5_@babel+core@7.20.5
+ '@babel/types': 7.20.5
+ babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.5
+ babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.5
+ babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.5
+ core-js-compat: 3.26.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/preset-modules/0.1.5_@babel+core@7.20.2:
+ /@babel/preset-modules/0.1.5_@babel+core@7.20.5:
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.2
- '@babel/types': 7.20.2
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.5
+ '@babel/types': 7.20.5
esutils: 2.0.3
dev: false
- /@babel/preset-react/7.18.6_@babel+core@7.20.2:
+ /@babel/preset-react/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.2
- '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.2
- '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.2
+ '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.5
+ '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.5
dev: false
- /@babel/preset-typescript/7.18.6_@babel+core@7.20.2:
+ /@babel/preset-typescript/7.18.6_@babel+core@7.20.5:
resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-typescript': 7.20.2_@babel+core@7.20.2
+ '@babel/plugin-transform-typescript': 7.20.2_@babel+core@7.20.5
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/runtime-corejs3/7.20.1:
- resolution: {integrity: sha512-CGulbEDcg/ND1Im7fUNRZdGXmX2MTWVVZacQi/6DiKE5HNwZ3aVTm5PV4lO8HHz0B2h8WQyvKKjbX5XgTtydsg==}
+ /@babel/runtime-corejs3/7.20.6:
+ resolution: {integrity: sha512-tqeujPiuEfcH067mx+7otTQWROVMKHXEaOQcAeNV5dDdbPWvPcFA8/W9LXw2NfjNmOetqLl03dfnG2WALPlsRQ==}
engines: {node: '>=6.9.0'}
dependencies:
- core-js-pure: 3.26.0
- regenerator-runtime: 0.13.10
+ core-js-pure: 3.26.1
+ regenerator-runtime: 0.13.11
dev: false
- /@babel/runtime/7.20.1:
- resolution: {integrity: sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==}
+ /@babel/runtime/7.20.6:
+ resolution: {integrity: sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==}
engines: {node: '>=6.9.0'}
dependencies:
- regenerator-runtime: 0.13.10
+ regenerator-runtime: 0.13.11
/@babel/template/7.18.10:
resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/parser': 7.20.3
- '@babel/types': 7.20.2
+ '@babel/parser': 7.20.5
+ '@babel/types': 7.20.5
dev: false
- /@babel/traverse/7.20.1:
- resolution: {integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==}
+ /@babel/traverse/7.20.5:
+ resolution: {integrity: sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.20.4
+ '@babel/generator': 7.20.5
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.19.0
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.20.3
- '@babel/types': 7.20.2
+ '@babel/parser': 7.20.5
+ '@babel/types': 7.20.5
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/types/7.20.2:
- resolution: {integrity: sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==}
+ /@babel/types/7.20.5:
+ resolution: {integrity: sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.19.4
@@ -1575,7 +1575,7 @@ packages:
- '@algolia/client-search'
dev: false
- /@docusaurus/core/2.2.0_56jbash75ng5psbctf36wqywr4:
+ /@docusaurus/core/2.2.0_aeigrxhfhc4abyd45ix2hknizy:
resolution: {integrity: sha512-Vd6XOluKQqzG12fEs9prJgDtyn6DPok9vmUWDR2E6/nV5Fl9SVkhEQOBxwObjk3kQh7OY7vguFaLh0jqdApWsA==}
engines: {node: '>=16.14'}
hasBin: true
@@ -1583,27 +1583,27 @@ packages:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@babel/core': 7.20.2
- '@babel/generator': 7.20.4
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.2
- '@babel/plugin-transform-runtime': 7.19.6_@babel+core@7.20.2
- '@babel/preset-env': 7.20.2_@babel+core@7.20.2
- '@babel/preset-react': 7.18.6_@babel+core@7.20.2
- '@babel/preset-typescript': 7.18.6_@babel+core@7.20.2
- '@babel/runtime': 7.20.1
- '@babel/runtime-corejs3': 7.20.1
- '@babel/traverse': 7.20.1
+ '@babel/core': 7.20.5
+ '@babel/generator': 7.20.5
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-transform-runtime': 7.19.6_@babel+core@7.20.5
+ '@babel/preset-env': 7.20.2_@babel+core@7.20.5
+ '@babel/preset-react': 7.18.6_@babel+core@7.20.5
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.20.5
+ '@babel/runtime': 7.20.6
+ '@babel/runtime-corejs3': 7.20.6
+ '@babel/traverse': 7.20.5
'@docusaurus/cssnano-preset': 2.2.0
'@docusaurus/logger': 2.2.0
- '@docusaurus/mdx-loader': 2.2.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/mdx-loader': 2.2.0_zneentkx4scexj4pzosurqq55y
'@docusaurus/react-loadable': 5.5.2_react@17.0.2
- '@docusaurus/utils': 2.2.0
- '@docusaurus/utils-common': 2.2.0
- '@docusaurus/utils-validation': 2.2.0
+ '@docusaurus/utils': 2.2.0_@docusaurus+types@2.2.0
+ '@docusaurus/utils-common': 2.2.0_@docusaurus+types@2.2.0
+ '@docusaurus/utils-validation': 2.2.0_@docusaurus+types@2.2.0
'@slorber/static-site-generator-webpack-plugin': 4.0.7
'@svgr/webpack': 6.5.1
- autoprefixer: 10.4.13_postcss@8.4.18
- babel-loader: 8.3.0_npabyccmuonwo2rku4k53xo3hi
+ autoprefixer: 10.4.13_postcss@8.4.19
+ babel-loader: 8.3.0_ztqwsvkb6z73luspkai6ilstpu
babel-plugin-dynamic-import-node: 2.3.3
boxen: 6.2.1
chalk: 4.1.2
@@ -1613,10 +1613,10 @@ packages:
combine-promises: 1.1.0
commander: 5.1.0
copy-webpack-plugin: 11.0.0_webpack@5.75.0
- core-js: 3.26.0
- css-loader: 6.7.1_webpack@5.75.0
+ core-js: 3.26.1
+ css-loader: 6.7.2_webpack@5.75.0
css-minimizer-webpack-plugin: 4.2.2_2xq5u4vuzw4op42d4uqzx2gxfa
- cssnano: 5.1.14_postcss@8.4.18
+ cssnano: 5.1.14_postcss@8.4.19
del: 6.1.1
detect-port: 1.5.1
escape-html: 1.0.3
@@ -1629,12 +1629,12 @@ packages:
import-fresh: 3.3.0
leven: 3.1.0
lodash: 4.17.21
- mini-css-extract-plugin: 2.6.1_webpack@5.75.0
- postcss: 8.4.18
- postcss-loader: 7.0.1_sdypjwo5ssab3pyqgv4b4agnly
+ mini-css-extract-plugin: 2.7.1_webpack@5.75.0
+ postcss: 8.4.19
+ postcss-loader: 7.0.2_upg3rk2kpasnbk27hkqapxaxfq
prompts: 2.4.2
react: 17.0.2
- react-dev-utils: 12.0.1_qw7fmzhoapcndkteb5rsc33stq
+ react-dev-utils: 12.0.1_vfotqvx6lgcbf3upbs6hgaza4q
react-dom: 17.0.2_react@17.0.2
react-helmet-async: 1.3.0_sfoxds7t5ydpegc3knd667wn6m
react-loadable: /@docusaurus/react-loadable/5.5.2_react@17.0.2
@@ -1675,7 +1675,7 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/core/2.2.0_ehuab5y7qm7umqkczzguzxp57i:
+ /@docusaurus/core/2.2.0_wfh3mw2ke2bdr53qfq544ltemu:
resolution: {integrity: sha512-Vd6XOluKQqzG12fEs9prJgDtyn6DPok9vmUWDR2E6/nV5Fl9SVkhEQOBxwObjk3kQh7OY7vguFaLh0jqdApWsA==}
engines: {node: '>=16.14'}
hasBin: true
@@ -1683,27 +1683,27 @@ packages:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@babel/core': 7.20.2
- '@babel/generator': 7.20.4
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.2
- '@babel/plugin-transform-runtime': 7.19.6_@babel+core@7.20.2
- '@babel/preset-env': 7.20.2_@babel+core@7.20.2
- '@babel/preset-react': 7.18.6_@babel+core@7.20.2
- '@babel/preset-typescript': 7.18.6_@babel+core@7.20.2
- '@babel/runtime': 7.20.1
- '@babel/runtime-corejs3': 7.20.1
- '@babel/traverse': 7.20.1
+ '@babel/core': 7.20.5
+ '@babel/generator': 7.20.5
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-transform-runtime': 7.19.6_@babel+core@7.20.5
+ '@babel/preset-env': 7.20.2_@babel+core@7.20.5
+ '@babel/preset-react': 7.18.6_@babel+core@7.20.5
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.20.5
+ '@babel/runtime': 7.20.6
+ '@babel/runtime-corejs3': 7.20.6
+ '@babel/traverse': 7.20.5
'@docusaurus/cssnano-preset': 2.2.0
'@docusaurus/logger': 2.2.0
- '@docusaurus/mdx-loader': 2.2.0_zneentkx4scexj4pzosurqq55y
+ '@docusaurus/mdx-loader': 2.2.0_sfoxds7t5ydpegc3knd667wn6m
'@docusaurus/react-loadable': 5.5.2_react@17.0.2
- '@docusaurus/utils': 2.2.0_@docusaurus+types@2.2.0
- '@docusaurus/utils-common': 2.2.0_@docusaurus+types@2.2.0
- '@docusaurus/utils-validation': 2.2.0_@docusaurus+types@2.2.0
+ '@docusaurus/utils': 2.2.0
+ '@docusaurus/utils-common': 2.2.0
+ '@docusaurus/utils-validation': 2.2.0
'@slorber/static-site-generator-webpack-plugin': 4.0.7
'@svgr/webpack': 6.5.1
- autoprefixer: 10.4.13_postcss@8.4.18
- babel-loader: 8.3.0_npabyccmuonwo2rku4k53xo3hi
+ autoprefixer: 10.4.13_postcss@8.4.19
+ babel-loader: 8.3.0_ztqwsvkb6z73luspkai6ilstpu
babel-plugin-dynamic-import-node: 2.3.3
boxen: 6.2.1
chalk: 4.1.2
@@ -1713,10 +1713,10 @@ packages:
combine-promises: 1.1.0
commander: 5.1.0
copy-webpack-plugin: 11.0.0_webpack@5.75.0
- core-js: 3.26.0
- css-loader: 6.7.1_webpack@5.75.0
+ core-js: 3.26.1
+ css-loader: 6.7.2_webpack@5.75.0
css-minimizer-webpack-plugin: 4.2.2_2xq5u4vuzw4op42d4uqzx2gxfa
- cssnano: 5.1.14_postcss@8.4.18
+ cssnano: 5.1.14_postcss@8.4.19
del: 6.1.1
detect-port: 1.5.1
escape-html: 1.0.3
@@ -1729,12 +1729,12 @@ packages:
import-fresh: 3.3.0
leven: 3.1.0
lodash: 4.17.21
- mini-css-extract-plugin: 2.6.1_webpack@5.75.0
- postcss: 8.4.18
- postcss-loader: 7.0.1_sdypjwo5ssab3pyqgv4b4agnly
+ mini-css-extract-plugin: 2.7.1_webpack@5.75.0
+ postcss: 8.4.19
+ postcss-loader: 7.0.2_upg3rk2kpasnbk27hkqapxaxfq
prompts: 2.4.2
react: 17.0.2
- react-dev-utils: 12.0.1_qw7fmzhoapcndkteb5rsc33stq
+ react-dev-utils: 12.0.1_vfotqvx6lgcbf3upbs6hgaza4q
react-dom: 17.0.2_react@17.0.2
react-helmet-async: 1.3.0_sfoxds7t5ydpegc3knd667wn6m
react-loadable: /@docusaurus/react-loadable/5.5.2_react@17.0.2
@@ -1779,9 +1779,9 @@ packages:
resolution: {integrity: sha512-mAAwCo4n66TMWBH1kXnHVZsakW9VAXJzTO4yZukuL3ro4F+JtkMwKfh42EG75K/J/YIFQG5I/Bzy0UH/hFxaTg==}
engines: {node: '>=16.14'}
dependencies:
- cssnano-preset-advanced: 5.3.9_postcss@8.4.18
- postcss: 8.4.18
- postcss-sort-media-queries: 4.3.0_postcss@8.4.18
+ cssnano-preset-advanced: 5.3.9_postcss@8.4.19
+ postcss: 8.4.19
+ postcss-sort-media-queries: 4.3.0_postcss@8.4.19
tslib: 2.4.1
dev: false
@@ -1800,8 +1800,8 @@ packages:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@babel/parser': 7.20.3
- '@babel/traverse': 7.20.1
+ '@babel/parser': 7.20.5
+ '@babel/traverse': 7.20.5
'@docusaurus/logger': 2.2.0
'@docusaurus/utils': 2.2.0
'@mdx-js/mdx': 1.6.22
@@ -1835,8 +1835,8 @@ packages:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@babel/parser': 7.20.3
- '@babel/traverse': 7.20.1
+ '@babel/parser': 7.20.5
+ '@babel/traverse': 7.20.5
'@docusaurus/logger': 2.2.0
'@docusaurus/utils': 2.2.0_@docusaurus+types@2.2.0
'@mdx-js/mdx': 1.6.22
@@ -1885,14 +1885,14 @@ packages:
- uglify-js
- webpack-cli
- /@docusaurus/plugin-content-blog/2.2.0_56jbash75ng5psbctf36wqywr4:
+ /@docusaurus/plugin-content-blog/2.2.0_wfh3mw2ke2bdr53qfq544ltemu:
resolution: {integrity: sha512-0mWBinEh0a5J2+8ZJXJXbrCk1tSTNf7Nm4tYAl5h2/xx+PvH/Bnu0V+7mMljYm/1QlDYALNIIaT/JcoZQFUN3w==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.2.0_ehuab5y7qm7umqkczzguzxp57i
+ '@docusaurus/core': 2.2.0_aeigrxhfhc4abyd45ix2hknizy
'@docusaurus/logger': 2.2.0
'@docusaurus/mdx-loader': 2.2.0_zneentkx4scexj4pzosurqq55y
'@docusaurus/types': 2.2.0_sfoxds7t5ydpegc3knd667wn6m
@@ -1928,14 +1928,14 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-docs/2.2.0_56jbash75ng5psbctf36wqywr4:
+ /@docusaurus/plugin-content-docs/2.2.0_wfh3mw2ke2bdr53qfq544ltemu:
resolution: {integrity: sha512-BOazBR0XjzsHE+2K1wpNxz5QZmrJgmm3+0Re0EVPYFGW8qndCWGNtXW/0lGKhecVPML8yyFeAmnUCIs7xM2wPw==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.2.0_ehuab5y7qm7umqkczzguzxp57i
+ '@docusaurus/core': 2.2.0_aeigrxhfhc4abyd45ix2hknizy
'@docusaurus/logger': 2.2.0
'@docusaurus/mdx-loader': 2.2.0_zneentkx4scexj4pzosurqq55y
'@docusaurus/module-type-aliases': 2.2.0_sfoxds7t5ydpegc3knd667wn6m
@@ -1971,14 +1971,14 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-pages/2.2.0_56jbash75ng5psbctf36wqywr4:
+ /@docusaurus/plugin-content-pages/2.2.0_wfh3mw2ke2bdr53qfq544ltemu:
resolution: {integrity: sha512-+OTK3FQHk5WMvdelz8v19PbEbx+CNT6VSpx7nVOvMNs5yJCKvmqBJBQ2ZSxROxhVDYn+CZOlmyrC56NSXzHf6g==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.2.0_ehuab5y7qm7umqkczzguzxp57i
+ '@docusaurus/core': 2.2.0_aeigrxhfhc4abyd45ix2hknizy
'@docusaurus/mdx-loader': 2.2.0_zneentkx4scexj4pzosurqq55y
'@docusaurus/types': 2.2.0_sfoxds7t5ydpegc3knd667wn6m
'@docusaurus/utils': 2.2.0_@docusaurus+types@2.2.0
@@ -2006,14 +2006,14 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-debug/2.2.0_34odndtl4vxkrojskani3hzkvq:
+ /@docusaurus/plugin-debug/2.2.0_ixno2qfzajksn7oqk6oqqxtn4a:
resolution: {integrity: sha512-p9vOep8+7OVl6r/NREEYxf4HMAjV8JMYJ7Bos5fCFO0Wyi9AZEo0sCTliRd7R8+dlJXZEgcngSdxAUo/Q+CJow==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.2.0_ehuab5y7qm7umqkczzguzxp57i
+ '@docusaurus/core': 2.2.0_aeigrxhfhc4abyd45ix2hknizy
'@docusaurus/types': 2.2.0_sfoxds7t5ydpegc3knd667wn6m
'@docusaurus/utils': 2.2.0_@docusaurus+types@2.2.0
fs-extra: 10.1.0
@@ -2041,14 +2041,14 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-analytics/2.2.0_56jbash75ng5psbctf36wqywr4:
+ /@docusaurus/plugin-google-analytics/2.2.0_wfh3mw2ke2bdr53qfq544ltemu:
resolution: {integrity: sha512-+eZVVxVeEnV5nVQJdey9ZsfyEVMls6VyWTIj8SmX0k5EbqGvnIfET+J2pYEuKQnDIHxy+syRMoRM6AHXdHYGIg==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.2.0_ehuab5y7qm7umqkczzguzxp57i
+ '@docusaurus/core': 2.2.0_aeigrxhfhc4abyd45ix2hknizy
'@docusaurus/types': 2.2.0_sfoxds7t5ydpegc3knd667wn6m
'@docusaurus/utils-validation': 2.2.0_@docusaurus+types@2.2.0
react: 17.0.2
@@ -2072,14 +2072,14 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-gtag/2.2.0_56jbash75ng5psbctf36wqywr4:
+ /@docusaurus/plugin-google-gtag/2.2.0_wfh3mw2ke2bdr53qfq544ltemu:
resolution: {integrity: sha512-6SOgczP/dYdkqUMGTRqgxAS1eTp6MnJDAQMy8VCF1QKbWZmlkx4agHDexihqmYyCujTYHqDAhm1hV26EET54NQ==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.2.0_ehuab5y7qm7umqkczzguzxp57i
+ '@docusaurus/core': 2.2.0_aeigrxhfhc4abyd45ix2hknizy
'@docusaurus/types': 2.2.0_sfoxds7t5ydpegc3knd667wn6m
'@docusaurus/utils-validation': 2.2.0_@docusaurus+types@2.2.0
react: 17.0.2
@@ -2103,14 +2103,14 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-sitemap/2.2.0_56jbash75ng5psbctf36wqywr4:
+ /@docusaurus/plugin-sitemap/2.2.0_wfh3mw2ke2bdr53qfq544ltemu:
resolution: {integrity: sha512-0jAmyRDN/aI265CbWZNZuQpFqiZuo+5otk2MylU9iVrz/4J7gSc+ZJ9cy4EHrEsW7PV8s1w18hIEsmcA1YgkKg==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.2.0_ehuab5y7qm7umqkczzguzxp57i
+ '@docusaurus/core': 2.2.0_aeigrxhfhc4abyd45ix2hknizy
'@docusaurus/logger': 2.2.0
'@docusaurus/types': 2.2.0_sfoxds7t5ydpegc3knd667wn6m
'@docusaurus/utils': 2.2.0_@docusaurus+types@2.2.0
@@ -2139,24 +2139,24 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/preset-classic/2.2.0_qealvalg3qigqrjomgx4rnwdxu:
+ /@docusaurus/preset-classic/2.2.0_bsafmusoukf4e6aet6onn76mra:
resolution: {integrity: sha512-yKIWPGNx7BT8v2wjFIWvYrS+nvN04W+UameSFf8lEiJk6pss0kL6SG2MRvyULiI3BDxH+tj6qe02ncpSPGwumg==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.2.0_ehuab5y7qm7umqkczzguzxp57i
- '@docusaurus/plugin-content-blog': 2.2.0_56jbash75ng5psbctf36wqywr4
- '@docusaurus/plugin-content-docs': 2.2.0_56jbash75ng5psbctf36wqywr4
- '@docusaurus/plugin-content-pages': 2.2.0_56jbash75ng5psbctf36wqywr4
- '@docusaurus/plugin-debug': 2.2.0_34odndtl4vxkrojskani3hzkvq
- '@docusaurus/plugin-google-analytics': 2.2.0_56jbash75ng5psbctf36wqywr4
- '@docusaurus/plugin-google-gtag': 2.2.0_56jbash75ng5psbctf36wqywr4
- '@docusaurus/plugin-sitemap': 2.2.0_56jbash75ng5psbctf36wqywr4
- '@docusaurus/theme-classic': 2.2.0_56jbash75ng5psbctf36wqywr4
- '@docusaurus/theme-common': 2.2.0_ehuab5y7qm7umqkczzguzxp57i
- '@docusaurus/theme-search-algolia': 2.2.0_6ukdrnim7nouazijyenn2obc3q
+ '@docusaurus/core': 2.2.0_aeigrxhfhc4abyd45ix2hknizy
+ '@docusaurus/plugin-content-blog': 2.2.0_wfh3mw2ke2bdr53qfq544ltemu
+ '@docusaurus/plugin-content-docs': 2.2.0_wfh3mw2ke2bdr53qfq544ltemu
+ '@docusaurus/plugin-content-pages': 2.2.0_wfh3mw2ke2bdr53qfq544ltemu
+ '@docusaurus/plugin-debug': 2.2.0_ixno2qfzajksn7oqk6oqqxtn4a
+ '@docusaurus/plugin-google-analytics': 2.2.0_wfh3mw2ke2bdr53qfq544ltemu
+ '@docusaurus/plugin-google-gtag': 2.2.0_wfh3mw2ke2bdr53qfq544ltemu
+ '@docusaurus/plugin-sitemap': 2.2.0_wfh3mw2ke2bdr53qfq544ltemu
+ '@docusaurus/theme-classic': 2.2.0_wfh3mw2ke2bdr53qfq544ltemu
+ '@docusaurus/theme-common': 2.2.0_aeigrxhfhc4abyd45ix2hknizy
+ '@docusaurus/theme-search-algolia': 2.2.0_bt4qpczpsttwow5542um2nf6x4
'@docusaurus/types': 2.2.0_sfoxds7t5ydpegc3knd667wn6m
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
@@ -2190,20 +2190,20 @@ packages:
prop-types: 15.8.1
react: 17.0.2
- /@docusaurus/theme-classic/2.2.0_56jbash75ng5psbctf36wqywr4:
+ /@docusaurus/theme-classic/2.2.0_wfh3mw2ke2bdr53qfq544ltemu:
resolution: {integrity: sha512-kjbg/qJPwZ6H1CU/i9d4l/LcFgnuzeiGgMQlt6yPqKo0SOJIBMPuz7Rnu3r/WWbZFPi//o8acclacOzmXdUUEg==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.2.0_ehuab5y7qm7umqkczzguzxp57i
+ '@docusaurus/core': 2.2.0_aeigrxhfhc4abyd45ix2hknizy
'@docusaurus/mdx-loader': 2.2.0_zneentkx4scexj4pzosurqq55y
'@docusaurus/module-type-aliases': 2.2.0_sfoxds7t5ydpegc3knd667wn6m
- '@docusaurus/plugin-content-blog': 2.2.0_56jbash75ng5psbctf36wqywr4
- '@docusaurus/plugin-content-docs': 2.2.0_56jbash75ng5psbctf36wqywr4
- '@docusaurus/plugin-content-pages': 2.2.0_56jbash75ng5psbctf36wqywr4
- '@docusaurus/theme-common': 2.2.0_ehuab5y7qm7umqkczzguzxp57i
+ '@docusaurus/plugin-content-blog': 2.2.0_wfh3mw2ke2bdr53qfq544ltemu
+ '@docusaurus/plugin-content-docs': 2.2.0_wfh3mw2ke2bdr53qfq544ltemu
+ '@docusaurus/plugin-content-pages': 2.2.0_wfh3mw2ke2bdr53qfq544ltemu
+ '@docusaurus/theme-common': 2.2.0_aeigrxhfhc4abyd45ix2hknizy
'@docusaurus/theme-translations': 2.2.0
'@docusaurus/types': 2.2.0_sfoxds7t5ydpegc3knd667wn6m
'@docusaurus/utils': 2.2.0_@docusaurus+types@2.2.0
@@ -2215,7 +2215,7 @@ packages:
infima: 0.2.0-alpha.42
lodash: 4.17.21
nprogress: 0.2.0
- postcss: 8.4.18
+ postcss: 8.4.19
prism-react-renderer: 1.3.5_react@17.0.2
prismjs: 1.29.0
react: 17.0.2
@@ -2242,7 +2242,7 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-common/2.2.0_ehuab5y7qm7umqkczzguzxp57i:
+ /@docusaurus/theme-common/2.2.0_aeigrxhfhc4abyd45ix2hknizy:
resolution: {integrity: sha512-R8BnDjYoN90DCL75gP7qYQfSjyitXuP9TdzgsKDmSFPNyrdE3twtPNa2dIN+h+p/pr+PagfxwWbd6dn722A1Dw==}
engines: {node: '>=16.14'}
peerDependencies:
@@ -2251,9 +2251,9 @@ packages:
dependencies:
'@docusaurus/mdx-loader': 2.2.0_zneentkx4scexj4pzosurqq55y
'@docusaurus/module-type-aliases': 2.2.0_sfoxds7t5ydpegc3knd667wn6m
- '@docusaurus/plugin-content-blog': 2.2.0_56jbash75ng5psbctf36wqywr4
- '@docusaurus/plugin-content-docs': 2.2.0_56jbash75ng5psbctf36wqywr4
- '@docusaurus/plugin-content-pages': 2.2.0_56jbash75ng5psbctf36wqywr4
+ '@docusaurus/plugin-content-blog': 2.2.0_wfh3mw2ke2bdr53qfq544ltemu
+ '@docusaurus/plugin-content-docs': 2.2.0_wfh3mw2ke2bdr53qfq544ltemu
+ '@docusaurus/plugin-content-pages': 2.2.0_wfh3mw2ke2bdr53qfq544ltemu
'@docusaurus/utils': 2.2.0_@docusaurus+types@2.2.0
'@types/history': 4.7.11
'@types/react': 18.0.25
@@ -2284,7 +2284,7 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-search-algolia/2.2.0_6ukdrnim7nouazijyenn2obc3q:
+ /@docusaurus/theme-search-algolia/2.2.0_bt4qpczpsttwow5542um2nf6x4:
resolution: {integrity: sha512-2h38B0tqlxgR2FZ9LpAkGrpDWVdXZ7vltfmTdX+4RsDs3A7khiNsmZB+x/x6sA4+G2V2CvrsPMlsYBy5X+cY1w==}
engines: {node: '>=16.14'}
peerDependencies:
@@ -2292,10 +2292,10 @@ packages:
react-dom: ^16.8.4 || ^17.0.0
dependencies:
'@docsearch/react': 3.3.0_owu7fnyguu6wv2n4xo4xexy6ri
- '@docusaurus/core': 2.2.0_ehuab5y7qm7umqkczzguzxp57i
+ '@docusaurus/core': 2.2.0_aeigrxhfhc4abyd45ix2hknizy
'@docusaurus/logger': 2.2.0
- '@docusaurus/plugin-content-docs': 2.2.0_56jbash75ng5psbctf36wqywr4
- '@docusaurus/theme-common': 2.2.0_ehuab5y7qm7umqkczzguzxp57i
+ '@docusaurus/plugin-content-docs': 2.2.0_wfh3mw2ke2bdr53qfq544ltemu
+ '@docusaurus/theme-common': 2.2.0_aeigrxhfhc4abyd45ix2hknizy
'@docusaurus/theme-translations': 2.2.0
'@docusaurus/utils': 2.2.0_@docusaurus+types@2.2.0
'@docusaurus/utils-validation': 2.2.0_@docusaurus+types@2.2.0
@@ -2506,8 +2506,8 @@ packages:
ajv: 6.12.6
debug: 4.3.4
espree: 9.4.1
- globals: 13.17.0
- ignore: 5.2.0
+ globals: 13.18.0
+ ignore: 5.2.1
import-fresh: 3.3.0
js-yaml: 4.1.0
minimatch: 3.1.2
@@ -2579,7 +2579,7 @@ packages:
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
'@types/node': 18.11.9
- '@types/yargs': 17.0.13
+ '@types/yargs': 17.0.15
chalk: 4.1.2
dev: false
@@ -2677,33 +2677,29 @@ packages:
/@meshtastic/eslint-config/1.0.8:
resolution: {integrity: sha512-Jzwaf3TyYFGeFuxLRQA5Yj5Rmz097VleFQUkswXH9nvLO81JjJbHgJWbHQ6RpxC31q/2hWV03QdaH98swpYcQA==}
dependencies:
- '@typescript-eslint/eslint-plugin': 5.42.1_2udltptbznfmezdozpdoa2aemq
- '@typescript-eslint/parser': 5.42.1_rmayb2veg2btbq6mbmnyivgasy
- eslint: 8.27.0
- eslint-config-prettier: 8.5.0_eslint@8.27.0
- eslint-import-resolver-typescript: 2.7.1_dcpv4nbdr5ks2h5677xdltrk6e
- eslint-plugin-eslint-comments: 3.2.0_eslint@8.27.0
- eslint-plugin-import: 2.26.0_fjrawv2a4e2kreqduevmayjdry
- eslint-plugin-react: 7.31.10_eslint@8.27.0
- eslint-plugin-react-hooks: 4.6.0_eslint@8.27.0
- prettier: 2.7.1
- prettier-plugin-tailwindcss: 0.1.13_prettier@2.7.1
- typescript: 4.8.4
+ '@typescript-eslint/eslint-plugin': 5.45.0_czs5uoqkd3podpy6vgtsxfc7au
+ '@typescript-eslint/parser': 5.45.0_hsf322ms6xhhd4b5ne6lb74y4a
+ eslint: 8.28.0
+ eslint-config-prettier: 8.5.0_eslint@8.28.0
+ eslint-import-resolver-typescript: 2.7.1_ktrec6dplf4now6nlbc6d67jee
+ eslint-plugin-eslint-comments: 3.2.0_eslint@8.28.0
+ eslint-plugin-import: 2.26.0_zakvy25bvwc2d644723rsy4ypy
+ eslint-plugin-react: 7.31.11_eslint@8.28.0
+ eslint-plugin-react-hooks: 4.6.0_eslint@8.28.0
+ prettier: 2.8.0
+ prettier-plugin-tailwindcss: 0.1.13_prettier@2.8.0
+ typescript: 4.9.3
transitivePeerDependencies:
- eslint-import-resolver-webpack
- supports-color
dev: true
- /@meshtastic/meshtasticjs/0.6.113:
- resolution: {integrity: sha512-4/Qlqof/Dm2gWS1nqZ/H/csYy5o7EjdKlGWCBFQjAA5s9PmZ4vMI20UdoSaAz3+DvW7CYCzAx3h1e5WwsClF0A==}
+ /@meshtastic/meshtasticjs/0.6.115:
+ resolution: {integrity: sha512-/CjaIo6vjU/AID6DfLpCCg5cg03EgCkVTIxRhOAfi2zyLbrkzL4rHaQtm9k3qBtMMUecQIDGfziXOFhrMO6Fgg==}
dependencies:
- '@protobuf-ts/runtime': 2.8.1
- '@serialport/stream': 10.3.0
+ '@protobuf-ts/runtime': 2.8.2
glob: 8.0.3
- serialport: 10.4.0
sub-events: 1.9.0
- transitivePeerDependencies:
- - supports-color
dev: false
/@motionone/animation/10.14.0:
@@ -2775,104 +2771,8 @@ packages:
resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
dev: false
- /@protobuf-ts/runtime/2.8.1:
- resolution: {integrity: sha512-D9M5hSumYCovIfNllt7N6ODh4q+LrjiMWtNETvooaf+a2XheZJ7kgjFlsFghti0CFWwtA//of4JXQfw9hU+cCw==}
- dev: false
-
- /@serialport/binding-mock/10.2.2:
- resolution: {integrity: sha512-HAFzGhk9OuFMpuor7aT5G1ChPgn5qSsklTFOTUX72Rl6p0xwcSVsRtG/xaGp6bxpN7fI9D/S8THLBWbBgS6ldw==}
- engines: {node: '>=12.0.0'}
- dependencies:
- '@serialport/bindings-interface': 1.2.2
- debug: 4.3.4
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@serialport/bindings-cpp/10.7.0:
- resolution: {integrity: sha512-Xx1wA2UCG2loS32hxNvWJI4smCzGKhWqE85//fLRzHoGgE1lSLe3Nk7W40/ebrlGFHWRbQZmeaIF4chb2XLliA==}
- engines: {node: '>=12.17.0 <13.0 || >=14.0.0'}
- requiresBuild: true
- dependencies:
- '@serialport/bindings-interface': 1.2.1
- '@serialport/parser-readline': 10.3.0
- debug: 4.3.4
- node-addon-api: 4.3.0
- node-gyp-build: 4.5.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@serialport/bindings-interface/1.2.1:
- resolution: {integrity: sha512-63Dyqz2gtryRDDckFusOYqLYhR3Hq/M4sEdbF9i/VsvDb6T+tNVgoAKUZ+FMrXXKnCSu+hYbk+MTc0XQANszxw==}
- engines: {node: ^12.22 || ^14.13 || >=16}
- dev: false
-
- /@serialport/bindings-interface/1.2.2:
- resolution: {integrity: sha512-CJaUd5bLvtM9c5dmO9rPBHPXTa9R2UwpkJ0wdh9JCYcbrPWsKz+ErvR0hBLeo7NPeiFdjFO4sonRljiw4d2XiA==}
- engines: {node: ^12.22 || ^14.13 || >=16}
- dev: false
-
- /@serialport/parser-byte-length/10.3.0:
- resolution: {integrity: sha512-pJ/VoFemzKRRNDHLhFfPThwP40QrGaEnm9TtwL7o2GihEPwzBg3T0bN13ew5TpbbUYZdMpUtpm3CGfl6av9rUQ==}
- engines: {node: '>=12.0.0'}
- dev: false
-
- /@serialport/parser-cctalk/10.3.0:
- resolution: {integrity: sha512-8ujmk8EvVbDPrNF4mM33bWvUYJOZ0wXbY3WCRazHRWvyCdL0VO0DQvW81ZqgoTpiDQZm5r8wQu9rmuemahF6vQ==}
- engines: {node: '>=12.0.0'}
- dev: false
-
- /@serialport/parser-delimiter/10.3.0:
- resolution: {integrity: sha512-9E4Vj6s0UbbcCCTclwegHGPYjJhdm9qLCS0lowXQDEQC5naZnbsELemMHs93nD9jHPcyx1B4oXkMnVZLxX5TYw==}
- engines: {node: '>=12.0.0'}
- dev: false
-
- /@serialport/parser-inter-byte-timeout/10.3.0:
- resolution: {integrity: sha512-wKP0QK85NHgvT6BBB1qBfKBBU4pf8kespNXAZBUYmFT+P4n8r8IZE2mqigCD+AiZcfWNQoAizwOsT/Jx/qeVig==}
- engines: {node: '>=12.0.0'}
- dev: false
-
- /@serialport/parser-packet-length/10.3.0:
- resolution: {integrity: sha512-bj0cWzt8YSQj/E5fRQVYdi4TsfTlZQrXlXrUwjyTsCONv8IPOHzsz+yY0fw5SEMiJtaLyqvPkCHLsttOd/zFsg==}
- engines: {node: '>=8.6.0'}
- dev: false
-
- /@serialport/parser-readline/10.3.0:
- resolution: {integrity: sha512-ki3ATZ3/RAqnqGROBKE7k+OeZ0DZXZ53GTca4q71OU5RazbbNhTOBQLKLXD3v9QZXCMJdg4hGW/2Y0DuMUqMQg==}
- engines: {node: '>=12.0.0'}
- dependencies:
- '@serialport/parser-delimiter': 10.3.0
- dev: false
-
- /@serialport/parser-ready/10.3.0:
- resolution: {integrity: sha512-1owywJ4p592dJyVrEJZPIh6pUZ3/y/LN6kGTDH2wxdewRUITo/sGvDy0er5i2+dJD3yuowiAz0dOHSdz8tevJA==}
- engines: {node: '>=12.0.0'}
- dev: false
-
- /@serialport/parser-regex/10.3.0:
- resolution: {integrity: sha512-tIogTs7CvTH+UUFnsvE7i33MSISyTPTGPWlglWYH2/5coipXY503jlaYS1YGe818wWNcSx6YAjMZRdhTWwM39w==}
- engines: {node: '>=12.0.0'}
- dev: false
-
- /@serialport/parser-slip-encoder/10.3.0:
- resolution: {integrity: sha512-JI0ILF5sylWn8f0MuMzHFBix/iMUTa79/Z95KaPZYnVaEdA7h7hh/o21Jmon/26P3RJwL1SNJCjZ81zfan+LtQ==}
- engines: {node: '>=12.0.0'}
- dev: false
-
- /@serialport/parser-spacepacket/10.3.0:
- resolution: {integrity: sha512-PDF73ClEPsClD1FEJZHNuBevDKsJCkqy/XD5+S5eA6+tY5D4HLrVgSWsg+3qqB6+dlpwf2CzHe+uO8D3teuKHA==}
- engines: {node: '>=12.0.0'}
- dev: false
-
- /@serialport/stream/10.3.0:
- resolution: {integrity: sha512-7sooi5fHogYNVEJwxVdg872xO6TuMgQd2E9iRmv+o8pk/1dbBnPkmH6Ka3st1mVE+0KnIJqVlgei+ncSsqXIGw==}
- engines: {node: '>=12.0.0'}
- dependencies:
- '@serialport/bindings-interface': 1.2.1
- debug: 4.3.4
- transitivePeerDependencies:
- - supports-color
+ /@protobuf-ts/runtime/2.8.2:
+ resolution: {integrity: sha512-PVxsH81y9kEbHldxxG/8Y3z2mTXWQytRl8zNS0mTPUjkEC+8GUX6gj6LsA8EFp25fAs9V0ruh+aNWmPccEI9MA==}
dev: false
/@sideway/address/4.1.4:
@@ -2904,104 +2804,104 @@ packages:
webpack-sources: 3.2.3
dev: false
- /@svgr/babel-plugin-add-jsx-attribute/6.5.1_@babel+core@7.20.2:
+ /@svgr/babel-plugin-add-jsx-attribute/6.5.1_@babel+core@7.20.5:
resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
dev: false
- /@svgr/babel-plugin-remove-jsx-attribute/6.5.0_@babel+core@7.20.2:
+ /@svgr/babel-plugin-remove-jsx-attribute/6.5.0_@babel+core@7.20.5:
resolution: {integrity: sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
dev: false
- /@svgr/babel-plugin-remove-jsx-empty-expression/6.5.0_@babel+core@7.20.2:
+ /@svgr/babel-plugin-remove-jsx-empty-expression/6.5.0_@babel+core@7.20.5:
resolution: {integrity: sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
dev: false
- /@svgr/babel-plugin-replace-jsx-attribute-value/6.5.1_@babel+core@7.20.2:
+ /@svgr/babel-plugin-replace-jsx-attribute-value/6.5.1_@babel+core@7.20.5:
resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
dev: false
- /@svgr/babel-plugin-svg-dynamic-title/6.5.1_@babel+core@7.20.2:
+ /@svgr/babel-plugin-svg-dynamic-title/6.5.1_@babel+core@7.20.5:
resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
dev: false
- /@svgr/babel-plugin-svg-em-dimensions/6.5.1_@babel+core@7.20.2:
+ /@svgr/babel-plugin-svg-em-dimensions/6.5.1_@babel+core@7.20.5:
resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
dev: false
- /@svgr/babel-plugin-transform-react-native-svg/6.5.1_@babel+core@7.20.2:
+ /@svgr/babel-plugin-transform-react-native-svg/6.5.1_@babel+core@7.20.5:
resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
dev: false
- /@svgr/babel-plugin-transform-svg-component/6.5.1_@babel+core@7.20.2:
+ /@svgr/babel-plugin-transform-svg-component/6.5.1_@babel+core@7.20.5:
resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==}
engines: {node: '>=12'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
dev: false
- /@svgr/babel-preset/6.5.1_@babel+core@7.20.2:
+ /@svgr/babel-preset/6.5.1_@babel+core@7.20.5:
resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
- '@svgr/babel-plugin-add-jsx-attribute': 6.5.1_@babel+core@7.20.2
- '@svgr/babel-plugin-remove-jsx-attribute': 6.5.0_@babel+core@7.20.2
- '@svgr/babel-plugin-remove-jsx-empty-expression': 6.5.0_@babel+core@7.20.2
- '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1_@babel+core@7.20.2
- '@svgr/babel-plugin-svg-dynamic-title': 6.5.1_@babel+core@7.20.2
- '@svgr/babel-plugin-svg-em-dimensions': 6.5.1_@babel+core@7.20.2
- '@svgr/babel-plugin-transform-react-native-svg': 6.5.1_@babel+core@7.20.2
- '@svgr/babel-plugin-transform-svg-component': 6.5.1_@babel+core@7.20.2
+ '@babel/core': 7.20.5
+ '@svgr/babel-plugin-add-jsx-attribute': 6.5.1_@babel+core@7.20.5
+ '@svgr/babel-plugin-remove-jsx-attribute': 6.5.0_@babel+core@7.20.5
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 6.5.0_@babel+core@7.20.5
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1_@babel+core@7.20.5
+ '@svgr/babel-plugin-svg-dynamic-title': 6.5.1_@babel+core@7.20.5
+ '@svgr/babel-plugin-svg-em-dimensions': 6.5.1_@babel+core@7.20.5
+ '@svgr/babel-plugin-transform-react-native-svg': 6.5.1_@babel+core@7.20.5
+ '@svgr/babel-plugin-transform-svg-component': 6.5.1_@babel+core@7.20.5
dev: false
/@svgr/core/6.5.1:
resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.20.2
- '@svgr/babel-preset': 6.5.1_@babel+core@7.20.2
+ '@babel/core': 7.20.5
+ '@svgr/babel-preset': 6.5.1_@babel+core@7.20.5
'@svgr/plugin-jsx': 6.5.1_@svgr+core@6.5.1
camelcase: 6.3.0
- cosmiconfig: 7.0.1
+ cosmiconfig: 7.1.0
transitivePeerDependencies:
- supports-color
dev: false
@@ -3010,7 +2910,7 @@ packages:
resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==}
engines: {node: '>=10'}
dependencies:
- '@babel/types': 7.20.2
+ '@babel/types': 7.20.5
entities: 4.4.0
dev: false
@@ -3020,8 +2920,8 @@ packages:
peerDependencies:
'@svgr/core': ^6.0.0
dependencies:
- '@babel/core': 7.20.2
- '@svgr/babel-preset': 6.5.1_@babel+core@7.20.2
+ '@babel/core': 7.20.5
+ '@svgr/babel-preset': 6.5.1_@babel+core@7.20.5
'@svgr/core': 6.5.1
'@svgr/hast-util-to-babel-ast': 6.5.1
svg-parser: 2.0.4
@@ -3036,7 +2936,7 @@ packages:
'@svgr/core': '*'
dependencies:
'@svgr/core': 6.5.1
- cosmiconfig: 7.0.1
+ cosmiconfig: 7.1.0
deepmerge: 4.2.2
svgo: 2.8.0
dev: false
@@ -3045,11 +2945,11 @@ packages:
resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.20.2
- '@babel/plugin-transform-react-constant-elements': 7.20.2_@babel+core@7.20.2
- '@babel/preset-env': 7.20.2_@babel+core@7.20.2
- '@babel/preset-react': 7.18.6_@babel+core@7.20.2
- '@babel/preset-typescript': 7.18.6_@babel+core@7.20.2
+ '@babel/core': 7.20.5
+ '@babel/plugin-transform-react-constant-elements': 7.20.2_@babel+core@7.20.5
+ '@babel/preset-env': 7.20.2_@babel+core@7.20.5
+ '@babel/preset-react': 7.18.6_@babel+core@7.20.5
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.20.5
'@svgr/core': 6.5.1
'@svgr/plugin-jsx': 6.5.1_@svgr+core@6.5.1
'@svgr/plugin-svgo': 6.5.1_@svgr+core@6.5.1
@@ -3064,7 +2964,7 @@ packages:
defer-to-connect: 1.1.3
dev: false
- /@tailwindcss/typography/0.5.8_tailwindcss@3.2.3:
+ /@tailwindcss/typography/0.5.8_tailwindcss@3.2.4:
resolution: {integrity: sha512-xGQEp8KXN8Sd8m6R4xYmwxghmswrd0cPnNI2Lc6fmrC3OojysTBJJGSIVwPV56q4t6THFUK3HJ0EaWwpglSxWw==}
peerDependencies:
tailwindcss: '>=3.0.0 || insiders'
@@ -3073,7 +2973,7 @@ packages:
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
postcss-selector-parser: 6.0.10
- tailwindcss: 3.2.3_postcss@8.4.18
+ tailwindcss: 3.2.4_postcss@8.4.19
dev: true
/@trysound/sax/0.2.0:
@@ -3227,8 +3127,8 @@ packages:
resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==}
dev: false
- /@types/react-dom/18.0.8:
- resolution: {integrity: sha512-C3GYO0HLaOkk9dDAz3Dl4sbe4AKUGTCfFIZsz3n/82dPNN8Du533HzKatDxeUYWu24wJgMP1xICqkWk1YOLOIw==}
+ /@types/react-dom/18.0.9:
+ resolution: {integrity: sha512-qnVvHxASt/H7i+XG1U1xMiY5t+IHcPGUK7TDMDzom08xa7e86eCeKOiLZezwCKVxJn6NEiiy2ekgX8aQssjIKg==}
dependencies:
'@types/react': 18.0.25
dev: true
@@ -3316,14 +3216,14 @@ packages:
resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
dev: false
- /@types/yargs/17.0.13:
- resolution: {integrity: sha512-9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg==}
+ /@types/yargs/17.0.15:
+ resolution: {integrity: sha512-ZHc4W2dnEQPfhn06TBEdWaiUHEZAocYaiVMfwOipY5jcJt/251wVrKCBWBetGZWO5CF8tdb7L3DmdxVlZ2BOIg==}
dependencies:
'@types/yargs-parser': 21.0.0
dev: false
- /@typescript-eslint/eslint-plugin/5.42.1_2udltptbznfmezdozpdoa2aemq:
- resolution: {integrity: sha512-LyR6x784JCiJ1j6sH5Y0K6cdExqCCm8DJUTcwG5ThNXJj/G8o5E56u5EdG4SLy+bZAwZBswC+GYn3eGdttBVCg==}
+ /@typescript-eslint/eslint-plugin/5.45.0_czs5uoqkd3podpy6vgtsxfc7au:
+ resolution: {integrity: sha512-CXXHNlf0oL+Yg021cxgOdMHNTXD17rHkq7iW6RFHoybdFgQBjU3yIXhhcPpGwr1CjZlo6ET8C6tzX5juQoXeGA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
'@typescript-eslint/parser': ^5.0.0
@@ -3333,24 +3233,24 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.42.1_rmayb2veg2btbq6mbmnyivgasy
- '@typescript-eslint/scope-manager': 5.42.1
- '@typescript-eslint/type-utils': 5.42.1_rmayb2veg2btbq6mbmnyivgasy
- '@typescript-eslint/utils': 5.42.1_rmayb2veg2btbq6mbmnyivgasy
+ '@typescript-eslint/parser': 5.45.0_hsf322ms6xhhd4b5ne6lb74y4a
+ '@typescript-eslint/scope-manager': 5.45.0
+ '@typescript-eslint/type-utils': 5.45.0_hsf322ms6xhhd4b5ne6lb74y4a
+ '@typescript-eslint/utils': 5.45.0_hsf322ms6xhhd4b5ne6lb74y4a
debug: 4.3.4
- eslint: 8.27.0
- ignore: 5.2.0
+ eslint: 8.28.0
+ ignore: 5.2.1
natural-compare-lite: 1.4.0
regexpp: 3.2.0
semver: 7.3.8
- tsutils: 3.21.0_typescript@4.8.4
- typescript: 4.8.4
+ tsutils: 3.21.0_typescript@4.9.3
+ typescript: 4.9.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/parser/5.42.1_rmayb2veg2btbq6mbmnyivgasy:
- resolution: {integrity: sha512-kAV+NiNBWVQDY9gDJDToTE/NO8BHi4f6b7zTsVAJoTkmB/zlfOpiEVBzHOKtlgTndCKe8vj9F/PuolemZSh50Q==}
+ /@typescript-eslint/parser/5.45.0_hsf322ms6xhhd4b5ne6lb74y4a:
+ resolution: {integrity: sha512-brvs/WSM4fKUmF5Ot/gEve6qYiCMjm6w4HkHPfS6ZNmxTS0m0iNN4yOChImaCkqc1hRwFGqUyanMXuGal6oyyQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -3359,26 +3259,26 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 5.42.1
- '@typescript-eslint/types': 5.42.1
- '@typescript-eslint/typescript-estree': 5.42.1_typescript@4.8.4
+ '@typescript-eslint/scope-manager': 5.45.0
+ '@typescript-eslint/types': 5.45.0
+ '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.9.3
debug: 4.3.4
- eslint: 8.27.0
- typescript: 4.8.4
+ eslint: 8.28.0
+ typescript: 4.9.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/scope-manager/5.42.1:
- resolution: {integrity: sha512-QAZY/CBP1Emx4rzxurgqj3rUinfsh/6mvuKbLNMfJMMKYLRBfweus8brgXF8f64ABkIZ3zdj2/rYYtF8eiuksQ==}
+ /@typescript-eslint/scope-manager/5.45.0:
+ resolution: {integrity: sha512-noDMjr87Arp/PuVrtvN3dXiJstQR1+XlQ4R1EvzG+NMgXi8CuMCXpb8JqNtFHKceVSQ985BZhfRdowJzbv4yKw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.42.1
- '@typescript-eslint/visitor-keys': 5.42.1
+ '@typescript-eslint/types': 5.45.0
+ '@typescript-eslint/visitor-keys': 5.45.0
dev: true
- /@typescript-eslint/type-utils/5.42.1_rmayb2veg2btbq6mbmnyivgasy:
- resolution: {integrity: sha512-WWiMChneex5w4xPIX56SSnQQo0tEOy5ZV2dqmj8Z371LJ0E+aymWD25JQ/l4FOuuX+Q49A7pzh/CGIQflxMVXg==}
+ /@typescript-eslint/type-utils/5.45.0_hsf322ms6xhhd4b5ne6lb74y4a:
+ resolution: {integrity: sha512-DY7BXVFSIGRGFZ574hTEyLPRiQIvI/9oGcN8t1A7f6zIs6ftbrU0nhyV26ZW//6f85avkwrLag424n+fkuoJ1Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -3387,23 +3287,23 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.42.1_typescript@4.8.4
- '@typescript-eslint/utils': 5.42.1_rmayb2veg2btbq6mbmnyivgasy
+ '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.9.3
+ '@typescript-eslint/utils': 5.45.0_hsf322ms6xhhd4b5ne6lb74y4a
debug: 4.3.4
- eslint: 8.27.0
- tsutils: 3.21.0_typescript@4.8.4
- typescript: 4.8.4
+ eslint: 8.28.0
+ tsutils: 3.21.0_typescript@4.9.3
+ typescript: 4.9.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/types/5.42.1:
- resolution: {integrity: sha512-Qrco9dsFF5lhalz+lLFtxs3ui1/YfC6NdXu+RAGBa8uSfn01cjO7ssCsjIsUs484vny9Xm699FSKwpkCcqwWwA==}
+ /@typescript-eslint/types/5.45.0:
+ resolution: {integrity: sha512-QQij+u/vgskA66azc9dCmx+rev79PzX8uDHpsqSjEFtfF2gBUTRCpvYMh2gw2ghkJabNkPlSUCimsyBEQZd1DA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/typescript-estree/5.42.1_typescript@4.8.4:
- resolution: {integrity: sha512-qElc0bDOuO0B8wDhhW4mYVgi/LZL+igPwXtV87n69/kYC/7NG3MES0jHxJNCr4EP7kY1XVsRy8C/u3DYeTKQmw==}
+ /@typescript-eslint/typescript-estree/5.45.0_typescript@4.9.3:
+ resolution: {integrity: sha512-maRhLGSzqUpFcZgXxg1qc/+H0bT36lHK4APhp0AEUVrpSwXiRAomm/JGjSG+kNUio5kAa3uekCYu/47cnGn5EQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -3411,43 +3311,43 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.42.1
- '@typescript-eslint/visitor-keys': 5.42.1
+ '@typescript-eslint/types': 5.45.0
+ '@typescript-eslint/visitor-keys': 5.45.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
semver: 7.3.8
- tsutils: 3.21.0_typescript@4.8.4
- typescript: 4.8.4
+ tsutils: 3.21.0_typescript@4.9.3
+ typescript: 4.9.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/utils/5.42.1_rmayb2veg2btbq6mbmnyivgasy:
- resolution: {integrity: sha512-Gxvf12xSp3iYZd/fLqiQRD4uKZjDNR01bQ+j8zvhPjpsZ4HmvEFL/tC4amGNyxN9Rq+iqvpHLhlqx6KTxz9ZyQ==}
+ /@typescript-eslint/utils/5.45.0_hsf322ms6xhhd4b5ne6lb74y4a:
+ resolution: {integrity: sha512-OUg2JvsVI1oIee/SwiejTot2OxwU8a7UfTFMOdlhD2y+Hl6memUSL4s98bpUTo8EpVEr0lmwlU7JSu/p2QpSvA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
'@types/json-schema': 7.0.11
'@types/semver': 7.3.13
- '@typescript-eslint/scope-manager': 5.42.1
- '@typescript-eslint/types': 5.42.1
- '@typescript-eslint/typescript-estree': 5.42.1_typescript@4.8.4
- eslint: 8.27.0
+ '@typescript-eslint/scope-manager': 5.45.0
+ '@typescript-eslint/types': 5.45.0
+ '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.9.3
+ eslint: 8.28.0
eslint-scope: 5.1.1
- eslint-utils: 3.0.0_eslint@8.27.0
+ eslint-utils: 3.0.0_eslint@8.28.0
semver: 7.3.8
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/visitor-keys/5.42.1:
- resolution: {integrity: sha512-LOQtSF4z+hejmpUvitPlc4hA7ERGoj2BVkesOcG91HCn8edLGUXbTrErmutmPbl8Bo9HjAvOO/zBKQHExXNA2A==}
+ /@typescript-eslint/visitor-keys/5.45.0:
+ resolution: {integrity: sha512-jc6Eccbn2RtQPr1s7th6jJWQHBHI6GBVQkCHoJFQ5UreaKm59Vxw+ynQUPPY2u2Amquc+7tmEoC2G52ApsGNNg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.42.1
+ '@typescript-eslint/types': 5.45.0
eslint-visitor-keys: 3.3.0
dev: true
@@ -3616,7 +3516,7 @@ packages:
ajv:
optional: true
dependencies:
- ajv: 8.11.0
+ ajv: 8.11.2
dev: false
/ajv-keywords/3.5.2_ajv@6.12.6:
@@ -3626,12 +3526,12 @@ packages:
dependencies:
ajv: 6.12.6
- /ajv-keywords/5.1.0_ajv@8.11.0:
+ /ajv-keywords/5.1.0_ajv@8.11.2:
resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
peerDependencies:
ajv: ^8.8.2
dependencies:
- ajv: 8.11.0
+ ajv: 8.11.2
fast-deep-equal: 3.1.3
dev: false
@@ -3643,8 +3543,8 @@ packages:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- /ajv/8.11.0:
- resolution: {integrity: sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==}
+ /ajv/8.11.2:
+ resolution: {integrity: sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==}
dependencies:
fast-deep-equal: 3.1.3
json-schema-traverse: 1.0.0
@@ -3719,8 +3619,8 @@ packages:
engines: {node: '>=12'}
dev: false
- /anymatch/3.1.2:
- resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==}
+ /anymatch/3.1.3:
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
dependencies:
normalize-path: 3.0.0
@@ -3781,6 +3681,16 @@ packages:
es-shim-unscopables: 1.0.0
dev: true
+ /array.prototype.tosorted/1.1.1:
+ resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ es-abstract: 1.20.4
+ es-shim-unscopables: 1.0.0
+ get-intrinsic: 1.1.3
+ dev: true
+
/asap/2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
dev: false
@@ -3790,7 +3700,7 @@ packages:
engines: {node: '>= 4.0.0'}
dev: false
- /autoprefixer/10.4.13_postcss@8.4.18:
+ /autoprefixer/10.4.13_postcss@8.4.19:
resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
@@ -3798,11 +3708,11 @@ packages:
postcss: ^8.1.0
dependencies:
browserslist: 4.21.4
- caniuse-lite: 1.0.30001431
+ caniuse-lite: 1.0.30001434
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.18
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: false
@@ -3814,16 +3724,16 @@ packages:
- debug
dev: false
- /babel-loader/8.3.0_npabyccmuonwo2rku4k53xo3hi:
+ /babel-loader/8.3.0_ztqwsvkb6z73luspkai6ilstpu:
resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==}
engines: {node: '>= 8.9'}
peerDependencies:
'@babel/core': ^7.0.0
webpack: '>=2'
dependencies:
- '@babel/core': 7.20.2
+ '@babel/core': 7.20.5
find-cache-dir: 3.3.2
- loader-utils: 2.0.3
+ loader-utils: 2.0.4
make-dir: 3.1.0
schema-utils: 2.7.1
webpack: 5.75.0
@@ -3851,38 +3761,38 @@ packages:
'@babel/helper-plugin-utils': 7.10.4
dev: false
- /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.2:
+ /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.5:
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.20.1
- '@babel/core': 7.20.2
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.2
+ '@babel/compat-data': 7.20.5
+ '@babel/core': 7.20.5
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: false
- /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.2:
+ /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.5:
resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.2
- core-js-compat: 3.26.0
+ '@babel/core': 7.20.5
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5
+ core-js-compat: 3.26.1
transitivePeerDependencies:
- supports-color
dev: false
- /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.2:
+ /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.5:
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.2
+ '@babel/core': 7.20.5
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5
transitivePeerDependencies:
- supports-color
dev: false
@@ -3998,7 +3908,7 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001431
+ caniuse-lite: 1.0.30001434
electron-to-chromium: 1.4.284
node-releases: 2.0.6
update-browserslist-db: 1.0.10_browserslist@4.21.4
@@ -4059,13 +3969,13 @@ packages:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
browserslist: 4.21.4
- caniuse-lite: 1.0.30001431
+ caniuse-lite: 1.0.30001434
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
dev: false
- /caniuse-lite/1.0.30001431:
- resolution: {integrity: sha512-zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ==}
+ /caniuse-lite/1.0.30001434:
+ resolution: {integrity: sha512-aOBHrLmTQw//WFa2rcF1If9fa3ypkC1wzqqiKHgfdrXTWcU8C4gKVZT77eQAPWN1APys3+uQ0Df07rKauXGEYA==}
/ccount/1.1.0:
resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==}
@@ -4119,7 +4029,7 @@ packages:
domhandler: 5.0.3
domutils: 3.0.1
htmlparser2: 8.0.1
- parse5: 7.1.1
+ parse5: 7.1.2
parse5-htmlparser2-tree-adapter: 7.0.0
dev: false
@@ -4127,7 +4037,7 @@ packages:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
engines: {node: '>= 8.10.0'}
dependencies:
- anymatch: 3.1.2
+ anymatch: 3.1.3
braces: 3.0.2
glob-parent: 5.1.2
is-binary-path: 2.1.0
@@ -4145,8 +4055,9 @@ packages:
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
dev: false
- /ci-info/3.5.0:
- resolution: {integrity: sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==}
+ /ci-info/3.7.0:
+ resolution: {integrity: sha512-2CpRNYmImPx+RXKLq6jko/L07phmS9I02TyqkcNU20GCF/GgaWvc58hPtjxDX8lPpkdwc9sNh72V9k00S7ezog==}
+ engines: {node: '>=8'}
dev: false
/classnames/2.3.2:
@@ -4364,19 +4275,19 @@ packages:
webpack: 5.75.0
dev: false
- /core-js-compat/3.26.0:
- resolution: {integrity: sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==}
+ /core-js-compat/3.26.1:
+ resolution: {integrity: sha512-622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A==}
dependencies:
browserslist: 4.21.4
dev: false
- /core-js-pure/3.26.0:
- resolution: {integrity: sha512-LiN6fylpVBVwT8twhhluD9TzXmZQQsr2I2eIKtWNbZI1XMfBT7CV18itaN6RA7EtQd/SDdRx/wzvAShX2HvhQA==}
+ /core-js-pure/3.26.1:
+ resolution: {integrity: sha512-VVXcDpp/xJ21KdULRq/lXdLzQAtX7+37LzpyfFM973il0tWSsDEoyzG38G14AjTpK9VTfiNM9jnFauq/CpaWGQ==}
requiresBuild: true
dev: false
- /core-js/3.26.0:
- resolution: {integrity: sha512-+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw==}
+ /core-js/3.26.1:
+ resolution: {integrity: sha512-21491RRQVzUn0GGM9Z1Jrpr6PNPxPi+Za8OM9q4tksTSnlbXXGKK1nXNg/QvwFYettXvSX6zWKCtHHfjN4puyA==}
requiresBuild: true
dev: false
@@ -4395,8 +4306,8 @@ packages:
yaml: 1.10.2
dev: false
- /cosmiconfig/7.0.1:
- resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==}
+ /cosmiconfig/7.1.0:
+ resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
engines: {node: '>=10'}
dependencies:
'@types/parse-json': 4.0.0
@@ -4427,27 +4338,27 @@ packages:
engines: {node: '>=8'}
dev: false
- /css-declaration-sorter/6.3.1_postcss@8.4.18:
+ /css-declaration-sorter/6.3.1_postcss@8.4.19:
resolution: {integrity: sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==}
engines: {node: ^10 || ^12 || >=14}
peerDependencies:
postcss: ^8.0.9
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
dev: false
- /css-loader/6.7.1_webpack@5.75.0:
- resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==}
+ /css-loader/6.7.2_webpack@5.75.0:
+ resolution: {integrity: sha512-oqGbbVcBJkm8QwmnNzrFrWTnudnRZC+1eXikLJl0n4ljcfotgRifpg2a1lKy8jTrc4/d9A/ap1GFq1jDKG7J+Q==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.18
- postcss: 8.4.18
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.18
- postcss-modules-local-by-default: 4.0.0_postcss@8.4.18
- postcss-modules-scope: 3.0.0_postcss@8.4.18
- postcss-modules-values: 4.0.0_postcss@8.4.18
+ icss-utils: 5.1.0_postcss@8.4.19
+ postcss: 8.4.19
+ postcss-modules-extract-imports: 3.0.0_postcss@8.4.19
+ postcss-modules-local-by-default: 4.0.0_postcss@8.4.19
+ postcss-modules-scope: 3.0.0_postcss@8.4.19
+ postcss-modules-values: 4.0.0_postcss@8.4.19
postcss-value-parser: 4.2.0
semver: 7.3.8
webpack: 5.75.0
@@ -4479,9 +4390,9 @@ packages:
optional: true
dependencies:
clean-css: 5.3.1
- cssnano: 5.1.14_postcss@8.4.18
+ cssnano: 5.1.14_postcss@8.4.19
jest-worker: 29.3.1
- postcss: 8.4.18
+ postcss: 8.4.19
schema-utils: 4.0.0
serialize-javascript: 6.0.0
source-map: 0.6.1
@@ -4526,77 +4437,77 @@ packages:
engines: {node: '>=4'}
hasBin: true
- /cssnano-preset-advanced/5.3.9_postcss@8.4.18:
+ /cssnano-preset-advanced/5.3.9_postcss@8.4.19:
resolution: {integrity: sha512-njnh4pp1xCsibJcEHnWZb4EEzni0ePMqPuPNyuWT4Z+YeXmsgqNuTPIljXFEXhxGsWs9183JkXgHxc1TcsahIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- autoprefixer: 10.4.13_postcss@8.4.18
- cssnano-preset-default: 5.2.13_postcss@8.4.18
- postcss: 8.4.18
- postcss-discard-unused: 5.1.0_postcss@8.4.18
- postcss-merge-idents: 5.1.1_postcss@8.4.18
- postcss-reduce-idents: 5.2.0_postcss@8.4.18
- postcss-zindex: 5.1.0_postcss@8.4.18
+ autoprefixer: 10.4.13_postcss@8.4.19
+ cssnano-preset-default: 5.2.13_postcss@8.4.19
+ postcss: 8.4.19
+ postcss-discard-unused: 5.1.0_postcss@8.4.19
+ postcss-merge-idents: 5.1.1_postcss@8.4.19
+ postcss-reduce-idents: 5.2.0_postcss@8.4.19
+ postcss-zindex: 5.1.0_postcss@8.4.19
dev: false
- /cssnano-preset-default/5.2.13_postcss@8.4.18:
+ /cssnano-preset-default/5.2.13_postcss@8.4.19:
resolution: {integrity: sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- css-declaration-sorter: 6.3.1_postcss@8.4.18
- cssnano-utils: 3.1.0_postcss@8.4.18
- postcss: 8.4.18
- postcss-calc: 8.2.4_postcss@8.4.18
- postcss-colormin: 5.3.0_postcss@8.4.18
- postcss-convert-values: 5.1.3_postcss@8.4.18
- postcss-discard-comments: 5.1.2_postcss@8.4.18
- postcss-discard-duplicates: 5.1.0_postcss@8.4.18
- postcss-discard-empty: 5.1.1_postcss@8.4.18
- postcss-discard-overridden: 5.1.0_postcss@8.4.18
- postcss-merge-longhand: 5.1.7_postcss@8.4.18
- postcss-merge-rules: 5.1.3_postcss@8.4.18
- postcss-minify-font-values: 5.1.0_postcss@8.4.18
- postcss-minify-gradients: 5.1.1_postcss@8.4.18
- postcss-minify-params: 5.1.4_postcss@8.4.18
- postcss-minify-selectors: 5.2.1_postcss@8.4.18
- postcss-normalize-charset: 5.1.0_postcss@8.4.18
- postcss-normalize-display-values: 5.1.0_postcss@8.4.18
- postcss-normalize-positions: 5.1.1_postcss@8.4.18
- postcss-normalize-repeat-style: 5.1.1_postcss@8.4.18
- postcss-normalize-string: 5.1.0_postcss@8.4.18
- postcss-normalize-timing-functions: 5.1.0_postcss@8.4.18
- postcss-normalize-unicode: 5.1.1_postcss@8.4.18
- postcss-normalize-url: 5.1.0_postcss@8.4.18
- postcss-normalize-whitespace: 5.1.1_postcss@8.4.18
- postcss-ordered-values: 5.1.3_postcss@8.4.18
- postcss-reduce-initial: 5.1.1_postcss@8.4.18
- postcss-reduce-transforms: 5.1.0_postcss@8.4.18
- postcss-svgo: 5.1.0_postcss@8.4.18
- postcss-unique-selectors: 5.1.1_postcss@8.4.18
+ css-declaration-sorter: 6.3.1_postcss@8.4.19
+ cssnano-utils: 3.1.0_postcss@8.4.19
+ postcss: 8.4.19
+ postcss-calc: 8.2.4_postcss@8.4.19
+ postcss-colormin: 5.3.0_postcss@8.4.19
+ postcss-convert-values: 5.1.3_postcss@8.4.19
+ postcss-discard-comments: 5.1.2_postcss@8.4.19
+ postcss-discard-duplicates: 5.1.0_postcss@8.4.19
+ postcss-discard-empty: 5.1.1_postcss@8.4.19
+ postcss-discard-overridden: 5.1.0_postcss@8.4.19
+ postcss-merge-longhand: 5.1.7_postcss@8.4.19
+ postcss-merge-rules: 5.1.3_postcss@8.4.19
+ postcss-minify-font-values: 5.1.0_postcss@8.4.19
+ postcss-minify-gradients: 5.1.1_postcss@8.4.19
+ postcss-minify-params: 5.1.4_postcss@8.4.19
+ postcss-minify-selectors: 5.2.1_postcss@8.4.19
+ postcss-normalize-charset: 5.1.0_postcss@8.4.19
+ postcss-normalize-display-values: 5.1.0_postcss@8.4.19
+ postcss-normalize-positions: 5.1.1_postcss@8.4.19
+ postcss-normalize-repeat-style: 5.1.1_postcss@8.4.19
+ postcss-normalize-string: 5.1.0_postcss@8.4.19
+ postcss-normalize-timing-functions: 5.1.0_postcss@8.4.19
+ postcss-normalize-unicode: 5.1.1_postcss@8.4.19
+ postcss-normalize-url: 5.1.0_postcss@8.4.19
+ postcss-normalize-whitespace: 5.1.1_postcss@8.4.19
+ postcss-ordered-values: 5.1.3_postcss@8.4.19
+ postcss-reduce-initial: 5.1.1_postcss@8.4.19
+ postcss-reduce-transforms: 5.1.0_postcss@8.4.19
+ postcss-svgo: 5.1.0_postcss@8.4.19
+ postcss-unique-selectors: 5.1.1_postcss@8.4.19
dev: false
- /cssnano-utils/3.1.0_postcss@8.4.18:
+ /cssnano-utils/3.1.0_postcss@8.4.19:
resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
dev: false
- /cssnano/5.1.14_postcss@8.4.18:
+ /cssnano/5.1.14_postcss@8.4.19:
resolution: {integrity: sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-preset-default: 5.2.13_postcss@8.4.18
+ cssnano-preset-default: 5.2.13_postcss@8.4.19
lilconfig: 2.0.6
- postcss: 8.4.18
+ postcss: 8.4.19
yaml: 1.10.2
dev: false
@@ -4917,8 +4828,8 @@ packages:
once: 1.4.0
dev: false
- /enhanced-resolve/5.10.0:
- resolution: {integrity: sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==}
+ /enhanced-resolve/5.12.0:
+ resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==}
engines: {node: '>=10.13.0'}
dependencies:
graceful-fs: 4.2.10
@@ -5008,13 +4919,13 @@ packages:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- /eslint-config-prettier/8.5.0_eslint@8.27.0:
+ /eslint-config-prettier/8.5.0_eslint@8.28.0:
resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- eslint: 8.27.0
+ eslint: 8.28.0
dev: true
/eslint-import-resolver-node/0.3.6:
@@ -5026,7 +4937,7 @@ packages:
- supports-color
dev: true
- /eslint-import-resolver-typescript/2.7.1_dcpv4nbdr5ks2h5677xdltrk6e:
+ /eslint-import-resolver-typescript/2.7.1_ktrec6dplf4now6nlbc6d67jee:
resolution: {integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==}
engines: {node: '>=4'}
peerDependencies:
@@ -5034,8 +4945,8 @@ packages:
eslint-plugin-import: '*'
dependencies:
debug: 4.3.4
- eslint: 8.27.0
- eslint-plugin-import: 2.26.0_fjrawv2a4e2kreqduevmayjdry
+ eslint: 8.28.0
+ eslint-plugin-import: 2.26.0_zakvy25bvwc2d644723rsy4ypy
glob: 7.2.3
is-glob: 4.0.3
resolve: 1.22.1
@@ -5044,7 +4955,7 @@ packages:
- supports-color
dev: true
- /eslint-module-utils/2.7.4_c5vbubjxm3sqe7zyydgtitlaga:
+ /eslint-module-utils/2.7.4_xb4o4f5ycgo55brxm3dvl3ugdy:
resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
engines: {node: '>=4'}
peerDependencies:
@@ -5065,27 +4976,27 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.42.1_rmayb2veg2btbq6mbmnyivgasy
+ '@typescript-eslint/parser': 5.45.0_hsf322ms6xhhd4b5ne6lb74y4a
debug: 3.2.7
- eslint: 8.27.0
+ eslint: 8.28.0
eslint-import-resolver-node: 0.3.6
- eslint-import-resolver-typescript: 2.7.1_dcpv4nbdr5ks2h5677xdltrk6e
+ eslint-import-resolver-typescript: 2.7.1_ktrec6dplf4now6nlbc6d67jee
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-plugin-eslint-comments/3.2.0_eslint@8.27.0:
+ /eslint-plugin-eslint-comments/3.2.0_eslint@8.28.0:
resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==}
engines: {node: '>=6.5.0'}
peerDependencies:
eslint: '>=4.19.1'
dependencies:
escape-string-regexp: 1.0.5
- eslint: 8.27.0
- ignore: 5.2.0
+ eslint: 8.28.0
+ ignore: 5.2.1
dev: true
- /eslint-plugin-import/2.26.0_fjrawv2a4e2kreqduevmayjdry:
+ /eslint-plugin-import/2.26.0_zakvy25bvwc2d644723rsy4ypy:
resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
engines: {node: '>=4'}
peerDependencies:
@@ -5095,14 +5006,14 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.42.1_rmayb2veg2btbq6mbmnyivgasy
+ '@typescript-eslint/parser': 5.45.0_hsf322ms6xhhd4b5ne6lb74y4a
array-includes: 3.1.6
array.prototype.flat: 1.3.1
debug: 2.6.9
doctrine: 2.1.0
- eslint: 8.27.0
+ eslint: 8.28.0
eslint-import-resolver-node: 0.3.6
- eslint-module-utils: 2.7.4_c5vbubjxm3sqe7zyydgtitlaga
+ eslint-module-utils: 2.7.4_xb4o4f5ycgo55brxm3dvl3ugdy
has: 1.0.3
is-core-module: 2.11.0
is-glob: 4.0.3
@@ -5116,25 +5027,26 @@ packages:
- supports-color
dev: true
- /eslint-plugin-react-hooks/4.6.0_eslint@8.27.0:
+ /eslint-plugin-react-hooks/4.6.0_eslint@8.28.0:
resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
dependencies:
- eslint: 8.27.0
+ eslint: 8.28.0
dev: true
- /eslint-plugin-react/7.31.10_eslint@8.27.0:
- resolution: {integrity: sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA==}
+ /eslint-plugin-react/7.31.11_eslint@8.28.0:
+ resolution: {integrity: sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
array-includes: 3.1.6
array.prototype.flatmap: 1.3.1
+ array.prototype.tosorted: 1.1.1
doctrine: 2.1.0
- eslint: 8.27.0
+ eslint: 8.28.0
estraverse: 5.3.0
jsx-ast-utils: 3.3.3
minimatch: 3.1.2
@@ -5163,13 +5075,13 @@ packages:
estraverse: 5.3.0
dev: true
- /eslint-utils/3.0.0_eslint@8.27.0:
+ /eslint-utils/3.0.0_eslint@8.28.0:
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
peerDependencies:
eslint: '>=5'
dependencies:
- eslint: 8.27.0
+ eslint: 8.28.0
eslint-visitor-keys: 2.1.0
dev: true
@@ -5183,8 +5095,8 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /eslint/8.27.0:
- resolution: {integrity: sha512-0y1bfG2ho7mty+SiILVf9PfuRA49ek4Nc60Wmmu62QlobNR+CeXa4xXIJgcuwSQgZiWaPH+5BDsctpIW0PR/wQ==}
+ /eslint/8.28.0:
+ resolution: {integrity: sha512-S27Di+EVyMxcHiwDrFzk8dJYAaD+/5SoWKxL1ri/71CRHsnJnRDPNt2Kzj24+MT9FDupf4aqqyqPrvI8MvQ4VQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
@@ -5199,7 +5111,7 @@ packages:
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.1.1
- eslint-utils: 3.0.0_eslint@8.27.0
+ eslint-utils: 3.0.0_eslint@8.28.0
eslint-visitor-keys: 3.3.0
espree: 9.4.1
esquery: 1.4.0
@@ -5208,14 +5120,14 @@ packages:
file-entry-cache: 6.0.1
find-up: 5.0.0
glob-parent: 6.0.2
- globals: 13.17.0
+ globals: 13.18.0
grapheme-splitter: 1.0.4
- ignore: 5.2.0
+ ignore: 5.2.1
import-fresh: 3.3.0
imurmurhash: 0.1.4
is-glob: 4.0.3
is-path-inside: 3.0.3
- js-sdsl: 4.1.5
+ js-sdsl: 4.2.0
js-yaml: 4.1.0
json-stable-stringify-without-jsonify: 1.0.1
levn: 0.4.1
@@ -5446,7 +5358,7 @@ packages:
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
dependencies:
- loader-utils: 2.0.3
+ loader-utils: 2.0.4
schema-utils: 3.1.1
webpack: 5.75.0
dev: false
@@ -5542,7 +5454,7 @@ packages:
optional: true
dev: false
- /fork-ts-checker-webpack-plugin/6.5.2_qw7fmzhoapcndkteb5rsc33stq:
+ /fork-ts-checker-webpack-plugin/6.5.2_vfotqvx6lgcbf3upbs6hgaza4q:
resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==}
engines: {node: '>=10', yarn: '>=1.0.0'}
peerDependencies:
@@ -5564,12 +5476,12 @@ packages:
deepmerge: 4.2.2
fs-extra: 9.1.0
glob: 7.2.3
- memfs: 3.4.10
+ memfs: 3.4.12
minimatch: 3.1.2
schema-utils: 2.7.0
semver: 7.3.8
tapable: 1.1.3
- typescript: 4.8.4
+ typescript: 4.9.3
webpack: 5.75.0
dev: false
@@ -5740,12 +5652,12 @@ packages:
fs.realpath: 1.0.0
inflight: 1.0.6
inherits: 2.0.4
- minimatch: 5.1.0
+ minimatch: 5.1.1
once: 1.4.0
dev: false
- /global-dirs/3.0.0:
- resolution: {integrity: sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==}
+ /global-dirs/3.0.1:
+ resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
engines: {node: '>=10'}
dependencies:
ini: 2.0.0
@@ -5772,8 +5684,8 @@ packages:
engines: {node: '>=4'}
dev: false
- /globals/13.17.0:
- resolution: {integrity: sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==}
+ /globals/13.18.0:
+ resolution: {integrity: sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
@@ -5786,7 +5698,7 @@ packages:
array-union: 2.1.0
dir-glob: 3.0.1
fast-glob: 3.2.12
- ignore: 5.2.0
+ ignore: 5.2.1
merge2: 1.4.1
slash: 3.0.0
@@ -5796,7 +5708,7 @@ packages:
dependencies:
dir-glob: 3.0.1
fast-glob: 3.2.12
- ignore: 5.2.0
+ ignore: 5.2.1
merge2: 1.4.1
slash: 4.0.0
dev: false
@@ -5962,7 +5874,7 @@ packages:
/history/4.10.1:
resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==}
dependencies:
- '@babel/runtime': 7.20.1
+ '@babel/runtime': 7.20.6
loose-envify: 1.4.0
resolve-pathname: 3.0.0
tiny-invariant: 1.3.1
@@ -6000,7 +5912,7 @@ packages:
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.15.1
+ terser: 5.16.0
dev: false
/html-tags/3.2.0:
@@ -6119,17 +6031,17 @@ packages:
safer-buffer: 2.1.2
dev: false
- /icss-utils/5.1.0_postcss@8.4.18:
+ /icss-utils/5.1.0_postcss@8.4.19:
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
dev: false
- /ignore/5.2.0:
- resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==}
+ /ignore/5.2.1:
+ resolution: {integrity: sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==}
engines: {node: '>= 4'}
/image-size/1.0.2:
@@ -6327,7 +6239,7 @@ packages:
resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==}
engines: {node: '>=10'}
dependencies:
- global-dirs: 3.0.0
+ global-dirs: 3.0.1
is-path-inside: 3.0.3
dev: false
@@ -6481,7 +6393,7 @@ packages:
'@jest/types': 29.3.1
'@types/node': 18.11.9
chalk: 4.1.2
- ci-info: 3.5.0
+ ci-info: 3.7.0
graceful-fs: 4.2.10
picomatch: 2.3.1
dev: false
@@ -6513,8 +6425,8 @@ packages:
'@sideway/formula': 3.0.0
'@sideway/pinpoint': 2.0.0
- /js-sdsl/4.1.5:
- resolution: {integrity: sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==}
+ /js-sdsl/4.2.0:
+ resolution: {integrity: sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==}
dev: true
/js-tokens/4.0.0:
@@ -6644,8 +6556,8 @@ packages:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
- /loader-utils/2.0.3:
- resolution: {integrity: sha512-THWqIsn8QRnvLl0shHYVBN9syumU8pYWEHPTmkiVGd+7K5eFNVSY6AJhRvgGF70gg1Dz+l/k8WicvFCxdEs60A==}
+ /loader-utils/2.0.4:
+ resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
dependencies:
big.js: 5.2.2
@@ -6653,8 +6565,8 @@ packages:
json5: 2.2.1
dev: false
- /loader-utils/3.2.0:
- resolution: {integrity: sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==}
+ /loader-utils/3.2.1:
+ resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==}
engines: {node: '>= 12.13.0'}
dev: false
@@ -6796,8 +6708,8 @@ packages:
engines: {node: '>= 0.6'}
dev: false
- /memfs/3.4.10:
- resolution: {integrity: sha512-0bCUP+L79P4am30yP1msPzApwuMQG23TjwlwdHeEV5MxioDR1a0AgB0T9FfggU52eJuDCq8WVwb5ekznFyWiTQ==}
+ /memfs/3.4.12:
+ resolution: {integrity: sha512-BcjuQn6vfqP+k100e0E9m61Hyqa//Brp+I3f0OBmN0ATHlFA8vx3Lt8z57R3u2bPqe3WGDBC+nF72fTH7isyEw==}
engines: {node: '>= 4.0.0'}
dependencies:
fs-monkey: 1.0.3
@@ -6864,8 +6776,8 @@ packages:
engines: {node: '>=4'}
dev: false
- /mini-css-extract-plugin/2.6.1_webpack@5.75.0:
- resolution: {integrity: sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==}
+ /mini-css-extract-plugin/2.7.1_webpack@5.75.0:
+ resolution: {integrity: sha512-viOoaUFy+Z2w43VsGPbtfwFrr0tKwDctK9dUofG5MBViYhD1noGFUzzDIVw0KPwCGUP+c7zqLxm+acuQs7zLzw==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
@@ -6883,8 +6795,8 @@ packages:
dependencies:
brace-expansion: 1.1.11
- /minimatch/5.1.0:
- resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==}
+ /minimatch/5.1.1:
+ resolution: {integrity: sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==}
engines: {node: '>=10'}
dependencies:
brace-expansion: 2.0.1
@@ -6943,10 +6855,6 @@ packages:
tslib: 2.4.1
dev: false
- /node-addon-api/4.3.0:
- resolution: {integrity: sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==}
- dev: false
-
/node-emoji/1.11.0:
resolution: {integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==}
dependencies:
@@ -6970,11 +6878,6 @@ packages:
engines: {node: '>= 6.13.0'}
dev: false
- /node-gyp-build/4.5.0:
- resolution: {integrity: sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==}
- hasBin: true
- dev: false
-
/node-releases/2.0.6:
resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==}
@@ -7236,15 +7139,15 @@ packages:
resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==}
dependencies:
domhandler: 5.0.3
- parse5: 7.1.1
+ parse5: 7.1.2
dev: false
/parse5/6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
dev: false
- /parse5/7.1.1:
- resolution: {integrity: sha512-kwpuwzB+px5WUg9pyK0IcK/shltJN5/OVhQagxhCQNtT9Y9QRZqNY2e1cmbu/paRh5LMnz/oVTVLBpjFmMZhSg==}
+ /parse5/7.1.2:
+ resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
dependencies:
entities: 4.4.0
dev: false
@@ -7337,17 +7240,17 @@ packages:
tslib: 2.4.1
dev: false
- /postcss-calc/8.2.4_postcss@8.4.18:
+ /postcss-calc/8.2.4_postcss@8.4.19:
resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
peerDependencies:
postcss: ^8.2.2
dependencies:
- postcss: 8.4.18
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.19
+ postcss-selector-parser: 6.0.11
postcss-value-parser: 4.2.0
dev: false
- /postcss-colormin/5.3.0_postcss@8.4.18:
+ /postcss-colormin/5.3.0_postcss@8.4.19:
resolution: {integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7356,88 +7259,88 @@ packages:
browserslist: 4.21.4
caniuse-api: 3.0.0
colord: 2.9.3
- postcss: 8.4.18
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: false
- /postcss-convert-values/5.1.3_postcss@8.4.18:
+ /postcss-convert-values/5.1.3_postcss@8.4.19:
resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
browserslist: 4.21.4
- postcss: 8.4.18
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: false
- /postcss-discard-comments/5.1.2_postcss@8.4.18:
+ /postcss-discard-comments/5.1.2_postcss@8.4.19:
resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
dev: false
- /postcss-discard-duplicates/5.1.0_postcss@8.4.18:
+ /postcss-discard-duplicates/5.1.0_postcss@8.4.19:
resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
dev: false
- /postcss-discard-empty/5.1.1_postcss@8.4.18:
+ /postcss-discard-empty/5.1.1_postcss@8.4.19:
resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
dev: false
- /postcss-discard-overridden/5.1.0_postcss@8.4.18:
+ /postcss-discard-overridden/5.1.0_postcss@8.4.19:
resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
dev: false
- /postcss-discard-unused/5.1.0_postcss@8.4.18:
+ /postcss-discard-unused/5.1.0_postcss@8.4.19:
resolution: {integrity: sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.19
+ postcss-selector-parser: 6.0.11
dev: false
- /postcss-import/14.1.0_postcss@8.4.18:
+ /postcss-import/14.1.0_postcss@8.4.19:
resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
engines: {node: '>=10.0.0'}
peerDependencies:
postcss: ^8.0.0
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.1
- /postcss-js/4.0.0_postcss@8.4.18:
+ /postcss-js/4.0.0_postcss@8.4.19:
resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
postcss: ^8.3.3
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.18
+ postcss: 8.4.19
- /postcss-load-config/3.1.4_postcss@8.4.18:
+ /postcss-load-config/3.1.4_postcss@8.4.19:
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
peerDependencies:
@@ -7450,46 +7353,46 @@ packages:
optional: true
dependencies:
lilconfig: 2.0.6
- postcss: 8.4.18
+ postcss: 8.4.19
yaml: 1.10.2
- /postcss-loader/7.0.1_sdypjwo5ssab3pyqgv4b4agnly:
- resolution: {integrity: sha512-VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ==}
+ /postcss-loader/7.0.2_upg3rk2kpasnbk27hkqapxaxfq:
+ resolution: {integrity: sha512-fUJzV/QH7NXUAqV8dWJ9Lg4aTkDCezpTS5HgJ2DvqznexTbSTxgi/dTECvTZ15BwKTtk8G/bqI/QTu2HPd3ZCg==}
engines: {node: '>= 14.15.0'}
peerDependencies:
postcss: ^7.0.0 || ^8.0.1
webpack: ^5.0.0
dependencies:
- cosmiconfig: 7.0.1
+ cosmiconfig: 7.1.0
klona: 2.0.5
- postcss: 8.4.18
+ postcss: 8.4.19
semver: 7.3.8
webpack: 5.75.0
dev: false
- /postcss-merge-idents/5.1.1_postcss@8.4.18:
+ /postcss-merge-idents/5.1.1_postcss@8.4.19:
resolution: {integrity: sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.1.0_postcss@8.4.18
- postcss: 8.4.18
+ cssnano-utils: 3.1.0_postcss@8.4.19
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: false
- /postcss-merge-longhand/5.1.7_postcss@8.4.18:
+ /postcss-merge-longhand/5.1.7_postcss@8.4.19:
resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
- stylehacks: 5.1.1_postcss@8.4.18
+ stylehacks: 5.1.1_postcss@8.4.19
dev: false
- /postcss-merge-rules/5.1.3_postcss@8.4.18:
+ /postcss-merge-rules/5.1.3_postcss@8.4.19:
resolution: {integrity: sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7497,218 +7400,218 @@ packages:
dependencies:
browserslist: 4.21.4
caniuse-api: 3.0.0
- cssnano-utils: 3.1.0_postcss@8.4.18
- postcss: 8.4.18
- postcss-selector-parser: 6.0.10
+ cssnano-utils: 3.1.0_postcss@8.4.19
+ postcss: 8.4.19
+ postcss-selector-parser: 6.0.11
dev: false
- /postcss-minify-font-values/5.1.0_postcss@8.4.18:
+ /postcss-minify-font-values/5.1.0_postcss@8.4.19:
resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-gradients/5.1.1_postcss@8.4.18:
+ /postcss-minify-gradients/5.1.1_postcss@8.4.19:
resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
colord: 2.9.3
- cssnano-utils: 3.1.0_postcss@8.4.18
- postcss: 8.4.18
+ cssnano-utils: 3.1.0_postcss@8.4.19
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-params/5.1.4_postcss@8.4.18:
+ /postcss-minify-params/5.1.4_postcss@8.4.19:
resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
browserslist: 4.21.4
- cssnano-utils: 3.1.0_postcss@8.4.18
- postcss: 8.4.18
+ cssnano-utils: 3.1.0_postcss@8.4.19
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-selectors/5.2.1_postcss@8.4.18:
+ /postcss-minify-selectors/5.2.1_postcss@8.4.19:
resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.19
+ postcss-selector-parser: 6.0.11
dev: false
- /postcss-modules-extract-imports/3.0.0_postcss@8.4.18:
+ /postcss-modules-extract-imports/3.0.0_postcss@8.4.19:
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
dev: false
- /postcss-modules-local-by-default/4.0.0_postcss@8.4.18:
+ /postcss-modules-local-by-default/4.0.0_postcss@8.4.19:
resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.18
- postcss: 8.4.18
- postcss-selector-parser: 6.0.10
+ icss-utils: 5.1.0_postcss@8.4.19
+ postcss: 8.4.19
+ postcss-selector-parser: 6.0.11
postcss-value-parser: 4.2.0
dev: false
- /postcss-modules-scope/3.0.0_postcss@8.4.18:
+ /postcss-modules-scope/3.0.0_postcss@8.4.19:
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.18
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.19
+ postcss-selector-parser: 6.0.11
dev: false
- /postcss-modules-values/4.0.0_postcss@8.4.18:
+ /postcss-modules-values/4.0.0_postcss@8.4.19:
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.18
- postcss: 8.4.18
+ icss-utils: 5.1.0_postcss@8.4.19
+ postcss: 8.4.19
dev: false
- /postcss-nested/6.0.0_postcss@8.4.18:
+ /postcss-nested/6.0.0_postcss@8.4.19:
resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
- postcss: 8.4.18
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.19
+ postcss-selector-parser: 6.0.11
- /postcss-normalize-charset/5.1.0_postcss@8.4.18:
+ /postcss-normalize-charset/5.1.0_postcss@8.4.19:
resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
dev: false
- /postcss-normalize-display-values/5.1.0_postcss@8.4.18:
+ /postcss-normalize-display-values/5.1.0_postcss@8.4.19:
resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-positions/5.1.1_postcss@8.4.18:
+ /postcss-normalize-positions/5.1.1_postcss@8.4.19:
resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-repeat-style/5.1.1_postcss@8.4.18:
+ /postcss-normalize-repeat-style/5.1.1_postcss@8.4.19:
resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-string/5.1.0_postcss@8.4.18:
+ /postcss-normalize-string/5.1.0_postcss@8.4.19:
resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-timing-functions/5.1.0_postcss@8.4.18:
+ /postcss-normalize-timing-functions/5.1.0_postcss@8.4.19:
resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-unicode/5.1.1_postcss@8.4.18:
+ /postcss-normalize-unicode/5.1.1_postcss@8.4.19:
resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
browserslist: 4.21.4
- postcss: 8.4.18
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-url/5.1.0_postcss@8.4.18:
+ /postcss-normalize-url/5.1.0_postcss@8.4.19:
resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
normalize-url: 6.1.0
- postcss: 8.4.18
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-whitespace/5.1.1_postcss@8.4.18:
+ /postcss-normalize-whitespace/5.1.1_postcss@8.4.19:
resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: false
- /postcss-ordered-values/5.1.3_postcss@8.4.18:
+ /postcss-ordered-values/5.1.3_postcss@8.4.19:
resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.1.0_postcss@8.4.18
- postcss: 8.4.18
+ cssnano-utils: 3.1.0_postcss@8.4.19
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: false
- /postcss-reduce-idents/5.2.0_postcss@8.4.18:
+ /postcss-reduce-idents/5.2.0_postcss@8.4.19:
resolution: {integrity: sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: false
- /postcss-reduce-initial/5.1.1_postcss@8.4.18:
+ /postcss-reduce-initial/5.1.1_postcss@8.4.19:
resolution: {integrity: sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7716,16 +7619,16 @@ packages:
dependencies:
browserslist: 4.21.4
caniuse-api: 3.0.0
- postcss: 8.4.18
+ postcss: 8.4.19
dev: false
- /postcss-reduce-transforms/5.1.0_postcss@8.4.18:
+ /postcss-reduce-transforms/5.1.0_postcss@8.4.19:
resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: false
@@ -7735,52 +7638,60 @@ packages:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
+ dev: true
- /postcss-sort-media-queries/4.3.0_postcss@8.4.18:
+ /postcss-selector-parser/6.0.11:
+ resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==}
+ engines: {node: '>=4'}
+ dependencies:
+ cssesc: 3.0.0
+ util-deprecate: 1.0.2
+
+ /postcss-sort-media-queries/4.3.0_postcss@8.4.19:
resolution: {integrity: sha512-jAl8gJM2DvuIJiI9sL1CuiHtKM4s5aEIomkU8G3LFvbP+p8i7Sz8VV63uieTgoewGqKbi+hxBTiOKJlB35upCg==}
engines: {node: '>=10.0.0'}
peerDependencies:
postcss: ^8.4.16
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
sort-css-media-queries: 2.1.0
dev: false
- /postcss-svgo/5.1.0_postcss@8.4.18:
+ /postcss-svgo/5.1.0_postcss@8.4.19:
resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
postcss-value-parser: 4.2.0
svgo: 2.8.0
dev: false
- /postcss-unique-selectors/5.1.1_postcss@8.4.18:
+ /postcss-unique-selectors/5.1.1_postcss@8.4.19:
resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.19
+ postcss-selector-parser: 6.0.11
dev: false
/postcss-value-parser/4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss-zindex/5.1.0_postcss@8.4.18:
+ /postcss-zindex/5.1.0_postcss@8.4.19:
resolution: {integrity: sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.19
dev: false
- /postcss/8.4.18:
- resolution: {integrity: sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==}
+ /postcss/8.4.19:
+ resolution: {integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.4
@@ -7797,17 +7708,17 @@ packages:
engines: {node: '>=4'}
dev: false
- /prettier-plugin-tailwindcss/0.1.13_prettier@2.7.1:
+ /prettier-plugin-tailwindcss/0.1.13_prettier@2.8.0:
resolution: {integrity: sha512-/EKQURUrxLu66CMUg4+1LwGdxnz8of7IDvrSLqEtDqhLH61SAlNNUSr90UTvZaemujgl3OH/VHg+fyGltrNixw==}
engines: {node: '>=12.17.0'}
peerDependencies:
prettier: '>=2.2.0'
dependencies:
- prettier: 2.7.1
+ prettier: 2.8.0
dev: true
- /prettier/2.7.1:
- resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==}
+ /prettier/2.8.0:
+ resolution: {integrity: sha512-9Lmg8hTFZKG0Asr/kW9Bp8tJjRVluO8EJQVfY2T7FMw9T5jy4I/Uvx0Rca/XWf50QQ1/SS48+6IJWnrb+2yemA==}
engines: {node: '>=10.13.0'}
hasBin: true
dev: true
@@ -7966,7 +7877,7 @@ packages:
pure-color: 1.3.0
dev: false
- /react-dev-utils/12.0.1_qw7fmzhoapcndkteb5rsc33stq:
+ /react-dev-utils/12.0.1_vfotqvx6lgcbf3upbs6hgaza4q:
resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==}
engines: {node: '>=14'}
peerDependencies:
@@ -7985,13 +7896,13 @@ packages:
escape-string-regexp: 4.0.0
filesize: 8.0.7
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.2_qw7fmzhoapcndkteb5rsc33stq
+ fork-ts-checker-webpack-plugin: 6.5.2_vfotqvx6lgcbf3upbs6hgaza4q
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
immer: 9.0.16
is-root: 2.1.0
- loader-utils: 3.2.0
+ loader-utils: 3.2.1
open: 8.4.0
pkg-up: 3.1.0
prompts: 2.4.2
@@ -8000,7 +7911,7 @@ packages:
shell-quote: 1.7.4
strip-ansi: 6.0.1
text-table: 0.2.0
- typescript: 4.8.4
+ typescript: 4.9.3
webpack: 5.75.0
transitivePeerDependencies:
- eslint
@@ -8038,7 +7949,7 @@ packages:
react: ^16.6.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.20.1
+ '@babel/runtime': 7.20.6
invariant: 2.2.4
prop-types: 15.8.1
react: 17.0.2
@@ -8046,8 +7957,8 @@ packages:
react-fast-compare: 3.2.0
shallowequal: 1.1.0
- /react-icons/4.6.0_react@17.0.2:
- resolution: {integrity: sha512-rR/L9m9340yO8yv1QT1QurxWQvWpbNHqVX0fzMln2HEb9TEIrQRGsqiNFQfiv9/JEUbyHmHPlNTB2LWm2Ttz0g==}
+ /react-icons/4.7.1_react@17.0.2:
+ resolution: {integrity: sha512-yHd3oKGMgm7zxo3EA7H2n7vxSoiGmHk5t6Ou4bXsfcgWyhfDKMpyKfhHR6Bjnn63c+YXBLBPUql9H4wPJM6sXw==}
peerDependencies:
react: '*'
dependencies:
@@ -8068,7 +7979,7 @@ packages:
react-base16-styling: 0.6.0
react-dom: 17.0.2_react@17.0.2
react-lifecycles-compat: 3.0.4
- react-textarea-autosize: 8.3.4_qnxonbsml5syl42mqdnwkqq4yu
+ react-textarea-autosize: 8.4.0_qnxonbsml5syl42mqdnwkqq4yu
transitivePeerDependencies:
- '@types/react'
- encoding
@@ -8085,7 +7996,7 @@ packages:
react-loadable: '*'
webpack: '>=4.41.1 || 5.x'
dependencies:
- '@babel/runtime': 7.20.1
+ '@babel/runtime': 7.20.6
react-loadable: /@docusaurus/react-loadable/5.5.2_react@17.0.2
webpack: 5.75.0
dev: false
@@ -8104,7 +8015,7 @@ packages:
react: '>=15'
react-router: '>=5'
dependencies:
- '@babel/runtime': 7.20.1
+ '@babel/runtime': 7.20.6
react: 17.0.2
react-router: 5.3.4_react@17.0.2
dev: false
@@ -8114,7 +8025,7 @@ packages:
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.20.1
+ '@babel/runtime': 7.20.6
history: 4.10.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -8129,7 +8040,7 @@ packages:
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.20.1
+ '@babel/runtime': 7.20.6
history: 4.10.1
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
@@ -8141,13 +8052,13 @@ packages:
tiny-warning: 1.0.3
dev: false
- /react-textarea-autosize/8.3.4_qnxonbsml5syl42mqdnwkqq4yu:
- resolution: {integrity: sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ==}
+ /react-textarea-autosize/8.4.0_qnxonbsml5syl42mqdnwkqq4yu:
+ resolution: {integrity: sha512-YrTFaEHLgJsi8sJVYHBzYn+mkP3prGkmP2DKb/tm0t7CLJY5t1Rxix8070LAKb0wby7bl/lf2EeHkuMihMZMwQ==}
engines: {node: '>=10'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.20.1
+ '@babel/runtime': 7.20.6
react: 17.0.2
use-composed-ref: 1.3.0_react@17.0.2
use-latest: 1.2.1_qnxonbsml5syl42mqdnwkqq4yu
@@ -8223,13 +8134,13 @@ packages:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
dev: false
- /regenerator-runtime/0.13.10:
- resolution: {integrity: sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==}
+ /regenerator-runtime/0.13.11:
+ resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
- /regenerator-transform/0.15.0:
- resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==}
+ /regenerator-transform/0.15.1:
+ resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==}
dependencies:
- '@babel/runtime': 7.20.1
+ '@babel/runtime': 7.20.6
dev: false
/regexp.prototype.flags/1.4.3:
@@ -8246,8 +8157,8 @@ packages:
engines: {node: '>=8'}
dev: true
- /regexpu-core/5.2.1:
- resolution: {integrity: sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==}
+ /regexpu-core/5.2.2:
+ resolution: {integrity: sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==}
engines: {node: '>=4'}
dependencies:
regenerate: 1.4.2
@@ -8255,7 +8166,7 @@ packages:
regjsgen: 0.7.1
regjsparser: 0.9.1
unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.0.0
+ unicode-match-property-value-ecmascript: 2.1.0
dev: false
/registry-auth-token/4.2.2:
@@ -8426,7 +8337,7 @@ packages:
dependencies:
find-up: 5.0.0
picocolors: 1.0.0
- postcss: 8.4.18
+ postcss: 8.4.19
strip-json-comments: 3.1.1
dev: false
@@ -8501,9 +8412,9 @@ packages:
engines: {node: '>= 12.13.0'}
dependencies:
'@types/json-schema': 7.0.11
- ajv: 8.11.0
+ ajv: 8.11.2
ajv-formats: 2.1.1
- ajv-keywords: 5.1.0_ajv@8.11.0
+ ajv-keywords: 5.1.0_ajv@8.11.2
dev: false
/section-matter/1.0.0:
@@ -8574,28 +8485,6 @@ packages:
dependencies:
randombytes: 2.1.0
- /serialport/10.4.0:
- resolution: {integrity: sha512-PszPM5SnFMgSXom60PkKS2A9nMlNbHkuoyRBlzdSWw9rmgOn258+V0dYbWMrETJMM+TJV32vqBzjg5MmmUMwMw==}
- engines: {node: '>=12.0.0'}
- dependencies:
- '@serialport/binding-mock': 10.2.2
- '@serialport/bindings-cpp': 10.7.0
- '@serialport/parser-byte-length': 10.3.0
- '@serialport/parser-cctalk': 10.3.0
- '@serialport/parser-delimiter': 10.3.0
- '@serialport/parser-inter-byte-timeout': 10.3.0
- '@serialport/parser-packet-length': 10.3.0
- '@serialport/parser-readline': 10.3.0
- '@serialport/parser-ready': 10.3.0
- '@serialport/parser-regex': 10.3.0
- '@serialport/parser-slip-encoder': 10.3.0
- '@serialport/parser-spacepacket': 10.3.0
- '@serialport/stream': 10.3.0
- debug: 4.3.4
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/serve-handler/6.1.5:
resolution: {integrity: sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg==}
dependencies:
@@ -8810,8 +8699,8 @@ packages:
engines: {node: '>= 0.8'}
dev: false
- /std-env/3.3.0:
- resolution: {integrity: sha512-cNNS+VYsXIs5gI6gJipO4qZ8YYT274JHvNnQ1/R/x8Q8mdP0qj0zoMchRXmBNPqp/0eOEhX+3g7g6Fgb7meLIQ==}
+ /std-env/3.3.1:
+ resolution: {integrity: sha512-3H20QlwQsSm2OvAxWIYhs+j01MzzqwMwGiiO1NQaJYZgJZFPuAbf95/DiKRBSTYIJ2FeGUc+B/6mPGcWP9dO3Q==}
dev: false
/string-width/4.2.3:
@@ -8932,15 +8821,15 @@ packages:
tslib: 2.4.1
dev: false
- /stylehacks/5.1.1_postcss@8.4.18:
+ /stylehacks/5.1.1_postcss@8.4.19:
resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
browserslist: 4.21.4
- postcss: 8.4.18
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.19
+ postcss-selector-parser: 6.0.11
dev: false
/sub-events/1.9.0:
@@ -8997,8 +8886,8 @@ packages:
react: 17.0.2
dev: false
- /tailwindcss/3.2.3_postcss@8.4.18:
- resolution: {integrity: sha512-Xt9D4PK4zuuQCEB8bwK9JUCKmTgUwyac/6b0/42Vqhgl6YJkep+Wf5wq+5uXYfmrupdAD0YY2NY1hyZp1HjRrg==}
+ /tailwindcss/3.2.4_postcss@8.4.19:
+ resolution: {integrity: sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==}
engines: {node: '>=12.13.0'}
hasBin: true
peerDependencies:
@@ -9018,12 +8907,12 @@ packages:
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.0
- postcss: 8.4.18
- postcss-import: 14.1.0_postcss@8.4.18
- postcss-js: 4.0.0_postcss@8.4.18
- postcss-load-config: 3.1.4_postcss@8.4.18
- postcss-nested: 6.0.0_postcss@8.4.18
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.19
+ postcss-import: 14.1.0_postcss@8.4.19
+ postcss-js: 4.0.0_postcss@8.4.19
+ postcss-load-config: 3.1.4_postcss@8.4.19
+ postcss-nested: 6.0.0_postcss@8.4.19
+ postcss-selector-parser: 6.0.11
postcss-value-parser: 4.2.0
quick-lru: 5.1.1
resolve: 1.22.1
@@ -9059,11 +8948,11 @@ packages:
jest-worker: 27.5.1
schema-utils: 3.1.1
serialize-javascript: 6.0.0
- terser: 5.15.1
+ terser: 5.16.0
webpack: 5.75.0
- /terser/5.15.1:
- resolution: {integrity: sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==}
+ /terser/5.16.0:
+ resolution: {integrity: sha512-KjTV81QKStSfwbNiwlBXfcgMcOloyuRdb62/iLFPGBcVNF4EXjhdYBhYHmbJpiBrVxZhDvltE11j+LBQUxEEJg==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -9146,14 +9035,14 @@ packages:
resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==}
dev: false
- /tsutils/3.21.0_typescript@4.8.4:
+ /tsutils/3.21.0_typescript@4.9.3:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
- typescript: 4.8.4
+ typescript: 4.9.3
dev: true
/type-check/0.4.0:
@@ -9186,8 +9075,8 @@ packages:
is-typedarray: 1.0.0
dev: false
- /typescript/4.8.4:
- resolution: {integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==}
+ /typescript/4.9.3:
+ resolution: {integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==}
engines: {node: '>=4.2.0'}
hasBin: true
@@ -9224,8 +9113,8 @@ packages:
unicode-property-aliases-ecmascript: 2.1.0
dev: false
- /unicode-match-property-value-ecmascript/2.0.0:
- resolution: {integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==}
+ /unicode-match-property-value-ecmascript/2.1.0:
+ resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
engines: {node: '>=4'}
dev: false
@@ -9370,7 +9259,7 @@ packages:
optional: true
dependencies:
file-loader: 6.2.0_webpack@5.75.0
- loader-utils: 2.0.3
+ loader-utils: 2.0.4
mime-types: 2.1.35
schema-utils: 3.1.1
webpack: 5.75.0
@@ -9387,8 +9276,8 @@ packages:
resolution: {integrity: sha512-KmkCs6SjE6t4ihrfW9JelAPQIIIFbJweaaSLTh/4AO+c58JlDcb+GbdPt8yr5lRcFg4rPswRFRRhBGpWwh0K/Q==}
dev: false
- /use-breakpoint/3.0.3_sfoxds7t5ydpegc3knd667wn6m:
- resolution: {integrity: sha512-p73F+NZjWNZM34mZwR7iC+he1qoejtWJt5F0+6+fEfxUgOxDaf6A5QmlwY/TgzUY2YvIObN1Hj4DbHZbORmgwQ==}
+ /use-breakpoint/3.0.4_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-/EYaLgXUXgOBCri6M0vh4bpRIyjdUEies0Nikvg5f5QnkejKnWZDmlsRK7Oa2BfoLQSBh2XKLza3rOcB1R9Kcw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
peerDependencies:
react: '>=16.8'
@@ -9544,7 +9433,7 @@ packages:
webpack: ^4.0.0 || ^5.0.0
dependencies:
colorette: 2.0.19
- memfs: 3.4.10
+ memfs: 3.4.12
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 4.0.0
@@ -9629,7 +9518,7 @@ packages:
acorn-import-assertions: 1.8.0_acorn@8.8.1
browserslist: 4.21.4
chrome-trace-event: 1.0.3
- enhanced-resolve: 5.10.0
+ enhanced-resolve: 5.12.0
es-module-lexer: 0.9.3
eslint-scope: 5.1.1
events: 3.3.0
@@ -9658,7 +9547,7 @@ packages:
chalk: 4.1.2
consola: 2.15.3
pretty-time: 1.1.0
- std-env: 3.3.0
+ std-env: 3.3.1
webpack: 5.75.0
dev: false
diff --git a/static/documents/mqtt/EncodePositionFlow.txt b/static/documents/mqtt/EncodePositionFlow.txt
new file mode 100644
index 00000000..a51621a1
--- /dev/null
+++ b/static/documents/mqtt/EncodePositionFlow.txt
@@ -0,0 +1 @@
+[{"id":"32ca608d9e7c5236","type":"inject","z":"23dbb1ee.bc2e8e","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":96.5,"y":1952,"wires":[["2b536512e8c7aef2"]]},{"id":"20bbd2d1408b8dc5","type":"change","z":"23dbb1ee.bc2e8e","name":"","rules":[{"t":"set","p":"channelId_outbound","pt":"flow","to":"LongFast","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":772,"y":2027,"wires":[[]]},{"id":"c6cb373157be01d6","type":"change","z":"23dbb1ee.bc2e8e","name":"","rules":[{"t":"set","p":"gatewayId_outbound","pt":"flow","to":"\"!55c7312c\"","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":772,"y":2066,"wires":[[]]},{"id":"24199ec7eaf89c1a","type":"change","z":"23dbb1ee.bc2e8e","name":"","rules":[{"t":"set","p":"portnum_outbound","pt":"flow","to":"3","tot":"num"}],"action":"","property":"","from":"","to":"","reg":false,"x":774,"y":2106,"wires":[[]]},{"id":"de38ad5ef343623a","type":"change","z":"23dbb1ee.bc2e8e","name":"","rules":[{"t":"set","p":"from_outbound","pt":"flow","to":"1439117612","tot":"num"}],"action":"","property":"","from":"","to":"","reg":false,"x":781,"y":2146,"wires":[[]]},{"id":"d435e8abe0852f93","type":"change","z":"23dbb1ee.bc2e8e","name":"","rules":[{"t":"set","p":"to_outbound","pt":"flow","to":"4294967295","tot":"num"}],"action":"","property":"","from":"","to":"","reg":false,"x":790,"y":2188,"wires":[[]]},{"id":"1f8d172708898860","type":"function","z":"23dbb1ee.bc2e8e","name":"Assemble Position protobuf","func":"msg.protobufType=null;\nmsg.payload =\n{\n \"packet\": {\n \"from\": flow.get(\"from_outbound\"),\n \"to\": flow.get(\"to_outbound\"), \n \"decoded\":{\n //how ENUMS are handled here\n //portnum is decoded as string but encoded as number\n //in the encode/decode node-red nodes based on protobuf.js\n \"portnum\": flow.get(\"portnum_outbound\"),\n \"payload\": msg.payload \n } \n },\n\n \"channelId\": flow.get(\"channelId_outbound\"),\n \"gatewayId\": flow.get(\"gatewayId_outbound\"),\n};\nreturn msg;\n//info on how to get json data into protobuf \"bytes\" field\n//https://github.com/protobufjs/protobuf.js/wiki/Changes-in-ProtoBuf.js-3.8","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":1086,"y":2019,"wires":[["b8ccf1cfe8bf40a3"]]},{"id":"b8ccf1cfe8bf40a3","type":"encode","z":"23dbb1ee.bc2e8e","name":"","protofile":"a0d4288141f6a629","protoType":"ServiceEnvelope","x":1287,"y":2020,"wires":[["dbc78f035c9c2b56","a002c148f3a06bac"]]},{"id":"03a7e69ca6d471fe","type":"debug","z":"23dbb1ee.bc2e8e","name":"show hex string","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":1319,"y":2180,"wires":[]},{"id":"dbc78f035c9c2b56","type":"function","z":"23dbb1ee.bc2e8e","name":"dump payload as hex string","func":"var hex=Buffer.from(msg.payload,\"hex\");\nmsg.payload=hex.toString(\"hex\");\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":1096,"y":2178,"wires":[["03a7e69ca6d471fe"]]},{"id":"2b536512e8c7aef2","type":"function","z":"23dbb1ee.bc2e8e","name":"Inject lat lon alt","func":"msg.payload={\n \"latitudeI\": 399600000,\n \"longitudeI\": -862600000,\n \"altitude\": 100\n}\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":277.5,"y":1953,"wires":[["9443a9a980e54c75"]]},{"id":"9443a9a980e54c75","type":"encode","z":"23dbb1ee.bc2e8e","name":"encode Position as protobuf","protofile":"dbab6472b07929a0","protoType":"Position","x":506,"y":1953,"wires":[["5c36d3a7f4dca14e"]]},{"id":"5c36d3a7f4dca14e","type":"change","z":"23dbb1ee.bc2e8e","name":"","rules":[{"t":"set","p":"nested_outbound","pt":"flow","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":776,"y":1952,"wires":[["20bbd2d1408b8dc5","c6cb373157be01d6","24199ec7eaf89c1a","de38ad5ef343623a","d435e8abe0852f93","04d0c4a5f3485c6f"]]},{"id":"04d0c4a5f3485c6f","type":"function","z":"23dbb1ee.bc2e8e","name":"dump payload as base64 string","func":"var hex=Buffer.from(msg.payload,\"base64\");\nmsg.payload=hex.toString(\"base64\");\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":1082,"y":1952,"wires":[["1f8d172708898860"]]},{"id":"a002c148f3a06bac","type":"decode","z":"23dbb1ee.bc2e8e","name":"test decode Protobuf","protofile":"a0d4288141f6a629","protoType":"ServiceEnvelope","x":1249,"y":1860,"wires":[["4b6fc79398d05782"]]},{"id":"4b6fc79398d05782","type":"debug","z":"23dbb1ee.bc2e8e","name":"test entire payload","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":1458,"y":1859,"wires":[]},{"id":"a0d4288141f6a629","type":"protobuf-file","protopath":"E:\\Meshtastic-protobufs-master\\mqtt.proto","watchFile":true,"keepCase":false},{"id":"dbab6472b07929a0","type":"protobuf-file","protopath":"E:\\Meshtastic-protobufs-master\\mesh.proto","watchFile":true,"keepCase":false}]
\ No newline at end of file
diff --git a/static/documents/mqtt/EncodingPosition.jpg b/static/documents/mqtt/EncodingPosition.jpg
new file mode 100644
index 00000000..937b2f5d
Binary files /dev/null and b/static/documents/mqtt/EncodingPosition.jpg differ