openc3 5.12.0 → 5.14.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of openc3 might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile +3 -3
- data/bin/openc3cli +21 -18
- data/data/config/command_modifiers.yaml +53 -1
- data/data/config/graph_settings.yaml +1 -1
- data/data/config/item_modifiers.yaml +1 -2
- data/data/config/parameter_modifiers.yaml +13 -14
- data/data/config/screen.yaml +1 -2
- data/data/config/target_config.yaml +2 -6
- data/lib/openc3/accessors/accessor.rb +42 -29
- data/lib/openc3/accessors/binary_accessor.rb +11 -1
- data/lib/openc3/accessors/form_accessor.rb +11 -1
- data/lib/openc3/accessors/http_accessor.rb +38 -0
- data/lib/openc3/accessors/json_accessor.rb +15 -3
- data/lib/openc3/accessors/template_accessor.rb +150 -0
- data/lib/openc3/accessors/xml_accessor.rb +11 -1
- data/lib/openc3/accessors.rb +1 -0
- data/lib/openc3/api/cmd_api.rb +99 -35
- data/lib/openc3/api/limits_api.rb +3 -3
- data/lib/openc3/api/tlm_api.rb +70 -31
- data/lib/openc3/interfaces/interface.rb +9 -7
- data/lib/openc3/interfaces/mqtt_interface.rb +11 -9
- data/lib/openc3/interfaces/mqtt_stream_interface.rb +78 -0
- data/lib/openc3/interfaces/protocols/cmd_response_protocol.rb +116 -0
- data/lib/openc3/interfaces/tcpip_client_interface.rb +4 -0
- data/lib/openc3/interfaces/tcpip_server_interface.rb +5 -0
- data/lib/openc3/interfaces.rb +1 -1
- data/lib/openc3/logs/packet_log_reader.rb +2 -2
- data/lib/openc3/logs/text_log_writer.rb +3 -2
- data/lib/openc3/microservices/decom_microservice.rb +1 -0
- data/lib/openc3/microservices/interface_microservice.rb +10 -1
- data/lib/openc3/microservices/trigger_group_microservice.rb +2 -1
- data/lib/openc3/models/cvt_model.rb +16 -12
- data/lib/openc3/models/gem_model.rb +20 -3
- data/lib/openc3/models/microservice_model.rb +1 -1
- data/lib/openc3/models/plugin_model.rb +43 -5
- data/lib/openc3/models/target_model.rb +69 -8
- data/lib/openc3/packets/json_packet.rb +46 -15
- data/lib/openc3/packets/packet.rb +92 -4
- data/lib/openc3/packets/packet_config.rb +27 -2
- data/lib/openc3/packets/parsers/xtce_parser.rb +5 -1
- data/lib/openc3/script/api_shared.rb +42 -31
- data/lib/openc3/script/commands.rb +18 -12
- data/lib/openc3/script/limits.rb +1 -1
- data/lib/openc3/script/script.rb +6 -12
- data/lib/openc3/script/storage.rb +4 -4
- data/lib/openc3/script/web_socket_api.rb +2 -2
- data/lib/openc3/streams/mqtt_stream.rb +109 -0
- data/lib/openc3/streams/tcpip_socket_stream.rb +19 -0
- data/lib/openc3/system/system.rb +13 -1
- data/lib/openc3/utilities/cli_generator.rb +48 -21
- data/lib/openc3/utilities/local_mode.rb +3 -3
- data/lib/openc3/utilities/logger.rb +17 -16
- data/lib/openc3/utilities/process_manager.rb +1 -1
- data/lib/openc3/utilities/store_queued.rb +126 -0
- data/lib/openc3/version.rb +5 -5
- data/templates/conversion/conversion.py +28 -0
- data/templates/conversion/conversion.rb +1 -18
- data/templates/limits_response/response.py +37 -0
- data/templates/limits_response/response.rb +0 -17
- data/templates/microservice/microservices/TEMPLATE/microservice.py +54 -0
- data/templates/microservice/microservices/TEMPLATE/microservice.rb +0 -7
- data/templates/plugin/.gitignore +1 -0
- data/templates/plugin/plugin.gemspec +2 -2
- data/templates/target/targets/TARGET/lib/target.py +9 -0
- data/templates/target/targets/TARGET/procedures/procedure.py +3 -0
- data/templates/target/targets/TARGET/public/README.txt +1 -0
- data/templates/tool_angular/package.json +21 -20
- data/templates/tool_angular/yarn.lock +2287 -3171
- data/templates/tool_react/package.json +15 -15
- data/templates/tool_react/yarn.lock +716 -789
- data/templates/tool_svelte/package.json +16 -15
- data/templates/tool_svelte/src/services/openc3-api.js +17 -22
- data/templates/tool_svelte/yarn.lock +715 -620
- data/templates/tool_vue/package.json +16 -15
- data/templates/tool_vue/yarn.lock +149 -69
- data/templates/widget/package.json +15 -14
- data/templates/widget/yarn.lock +132 -63
- metadata +160 -148
- data/lib/openc3/io/openc3_snmp.rb +0 -61
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "<%= tool_name %>",
|
3
|
-
"version": "5.
|
3
|
+
"version": "5.14.0",
|
4
4
|
"private": true,
|
5
5
|
"scripts": {
|
6
6
|
"serve": "vue-cli-service serve",
|
@@ -11,20 +11,21 @@
|
|
11
11
|
"test:components": "vue-cli-service test:components"
|
12
12
|
},
|
13
13
|
"dependencies": {
|
14
|
-
"@openc3/tool-common": "5.
|
15
|
-
"
|
14
|
+
"@openc3/tool-common": "5.14.0",
|
15
|
+
"@astrouxds/astro-web-components": "7.20.0",
|
16
|
+
"axios": "1.6.5",
|
16
17
|
"date-fns": "2.30.0",
|
17
18
|
"portal-vue": "2.1.7",
|
18
19
|
"single-spa-vue": "2.5.1",
|
19
20
|
"sprintf-js": "1.1.3",
|
20
21
|
"systemjs-webpack-interop": "2.3.7",
|
21
|
-
"vue": "2.7.
|
22
|
+
"vue": "2.7.16",
|
22
23
|
"vue-router": "3.5.3",
|
23
24
|
"vuetify": "2.7.1",
|
24
25
|
"vuex": "3.6.2"
|
25
26
|
},
|
26
27
|
"devDependencies": {
|
27
|
-
"@babel/eslint-parser": "7.
|
28
|
+
"@babel/eslint-parser": "7.23.3",
|
28
29
|
"@vue/babel-preset-app": "5.0.8",
|
29
30
|
"@vue/cli": "5.0.8",
|
30
31
|
"@vue/cli-plugin-babel": "5.0.8",
|
@@ -32,21 +33,21 @@
|
|
32
33
|
"@vue/cli-plugin-router": "5.0.8",
|
33
34
|
"@vue/cli-plugin-vuex": "5.0.8",
|
34
35
|
"@vue/cli-service": "5.0.8",
|
35
|
-
"@vue/eslint-config-prettier": "
|
36
|
+
"@vue/eslint-config-prettier": "9.0.0",
|
36
37
|
"@vue/test-utils": "1.3.0",
|
37
38
|
"babel-loader": "9.1.3",
|
38
39
|
"babel-plugin-istanbul": "6.1.1",
|
39
|
-
"eslint": "8.
|
40
|
-
"eslint-config-prettier": "9.
|
41
|
-
"eslint-plugin-prettier": "5.
|
42
|
-
"eslint-plugin-vue": "9.
|
43
|
-
"html-webpack-plugin": "^5.
|
44
|
-
"prettier": "3.
|
45
|
-
"sass": "1.69.
|
46
|
-
"sass-loader": "13.3.
|
40
|
+
"eslint": "8.56.0",
|
41
|
+
"eslint-config-prettier": "9.1.0",
|
42
|
+
"eslint-plugin-prettier": "5.1.2",
|
43
|
+
"eslint-plugin-vue": "9.19.2",
|
44
|
+
"html-webpack-plugin": "^5.6.0",
|
45
|
+
"prettier": "3.1.1",
|
46
|
+
"sass": "1.69.7",
|
47
|
+
"sass-loader": "13.3.3",
|
47
48
|
"vue-cli-plugin-single-spa": "3.3.0",
|
48
49
|
"vue-cli-plugin-vuetify": "2.5.8",
|
49
|
-
"vue-template-compiler": "2.7.
|
50
|
+
"vue-template-compiler": "2.7.16",
|
50
51
|
"webpack": "5.89.0"
|
51
52
|
}
|
52
53
|
}
|
@@ -139,6 +139,16 @@
|
|
139
139
|
dependencies:
|
140
140
|
xss "^1.0.8"
|
141
141
|
|
142
|
+
"@astrouxds/astro-web-components@7.20.0":
|
143
|
+
version "7.20.0"
|
144
|
+
resolved "https://registry.yarnpkg.com/@astrouxds/astro-web-components/-/astro-web-components-7.20.0.tgz#4867b80193f2fc34c03f15f1c4952e65aa85af2c"
|
145
|
+
integrity sha512-9iDFQRiwWkm2s5sDoMEXy5RbZvdfNx2d8td+ET6ZKxRk+SBxX6UJXHZRv+OMrdiID8chE9rLUr5SNj4xrohuTQ==
|
146
|
+
dependencies:
|
147
|
+
"@floating-ui/dom" "~1.0.6"
|
148
|
+
"@stencil/core" "~3.4.1"
|
149
|
+
date-fns "~2.21.3"
|
150
|
+
date-fns-tz "~1.3.7"
|
151
|
+
|
142
152
|
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.22.5":
|
143
153
|
version "7.22.5"
|
144
154
|
resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz"
|
@@ -172,10 +182,10 @@
|
|
172
182
|
json5 "^2.2.2"
|
173
183
|
semver "^6.3.0"
|
174
184
|
|
175
|
-
"@babel/eslint-parser@7.
|
176
|
-
version "7.
|
177
|
-
resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.
|
178
|
-
integrity sha512-
|
185
|
+
"@babel/eslint-parser@7.23.3":
|
186
|
+
version "7.23.3"
|
187
|
+
resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.23.3.tgz#7bf0db1c53b54da0c8a12627373554a0828479ca"
|
188
|
+
integrity sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==
|
179
189
|
dependencies:
|
180
190
|
"@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1"
|
181
191
|
eslint-visitor-keys "^2.1.0"
|
@@ -1232,10 +1242,10 @@
|
|
1232
1242
|
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.6.2.tgz#1816b5f6948029c5eaacb0703b850ee0cb37d8f8"
|
1233
1243
|
integrity sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==
|
1234
1244
|
|
1235
|
-
"@eslint/eslintrc@^2.1.
|
1236
|
-
version "2.1.
|
1237
|
-
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.
|
1238
|
-
integrity sha512-
|
1245
|
+
"@eslint/eslintrc@^2.1.4":
|
1246
|
+
version "2.1.4"
|
1247
|
+
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad"
|
1248
|
+
integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==
|
1239
1249
|
dependencies:
|
1240
1250
|
ajv "^6.12.4"
|
1241
1251
|
debug "^4.3.2"
|
@@ -1247,10 +1257,29 @@
|
|
1247
1257
|
minimatch "^3.1.2"
|
1248
1258
|
strip-json-comments "^3.1.1"
|
1249
1259
|
|
1250
|
-
"@eslint/js@8.
|
1251
|
-
version "8.
|
1252
|
-
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.
|
1253
|
-
integrity sha512-
|
1260
|
+
"@eslint/js@8.56.0":
|
1261
|
+
version "8.56.0"
|
1262
|
+
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.56.0.tgz#ef20350fec605a7f7035a01764731b2de0f3782b"
|
1263
|
+
integrity sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==
|
1264
|
+
|
1265
|
+
"@floating-ui/core@^1.0.4":
|
1266
|
+
version "1.5.2"
|
1267
|
+
resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.5.2.tgz#53a0f7a98c550e63134d504f26804f6b83dbc071"
|
1268
|
+
integrity sha512-Ii3MrfY/GAIN3OhXNzpCKaLxHQfJF9qvwq/kEJYdqDxeIHa01K8sldugal6TmeeXl+WMvhv9cnVzUTaFFJF09A==
|
1269
|
+
dependencies:
|
1270
|
+
"@floating-ui/utils" "^0.1.3"
|
1271
|
+
|
1272
|
+
"@floating-ui/dom@~1.0.6":
|
1273
|
+
version "1.0.12"
|
1274
|
+
resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.0.12.tgz#07c870a05d9b825a6d7657524f48fe6761722800"
|
1275
|
+
integrity sha512-HeG/wHoa2laUHlDX3xkzqlUqliAfa+zqV04LaKIwNCmCNaW2p0fQi4/Kd0LB4GdFoJ2UllLFq5gWnXAd67lg7w==
|
1276
|
+
dependencies:
|
1277
|
+
"@floating-ui/core" "^1.0.4"
|
1278
|
+
|
1279
|
+
"@floating-ui/utils@^0.1.3":
|
1280
|
+
version "0.1.6"
|
1281
|
+
resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.1.6.tgz#22958c042e10b67463997bd6ea7115fe28cbcaf9"
|
1282
|
+
integrity sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==
|
1254
1283
|
|
1255
1284
|
"@graphql-tools/merge@8.3.1":
|
1256
1285
|
version "8.3.1"
|
@@ -1455,6 +1484,11 @@
|
|
1455
1484
|
"@nodelib/fs.scandir" "2.1.5"
|
1456
1485
|
fastq "^1.6.0"
|
1457
1486
|
|
1487
|
+
"@pkgr/core@^0.1.0":
|
1488
|
+
version "0.1.0"
|
1489
|
+
resolved "https://registry.yarnpkg.com/@pkgr/core/-/core-0.1.0.tgz#7d8dacb7fdef0e4387caf7396cbd77f179867d06"
|
1490
|
+
integrity sha512-Zwq5OCzuwJC2jwqmpEQt7Ds1DTi6BWSwoGkbb1n9pO3hzb35BoJELx7c0T23iDkBGkh2e7tvOtjF3tr3OaQHDQ==
|
1491
|
+
|
1458
1492
|
"@pkgr/utils@^2.3.1":
|
1459
1493
|
version "2.4.2"
|
1460
1494
|
resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.4.2.tgz#9e638bbe9a6a6f165580dc943f138fd3309a2cbc"
|
@@ -1562,6 +1596,11 @@
|
|
1562
1596
|
resolved "https://registry.npmjs.org/@soda/get-current-script/-/get-current-script-1.0.2.tgz"
|
1563
1597
|
integrity sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w==
|
1564
1598
|
|
1599
|
+
"@stencil/core@~3.4.1":
|
1600
|
+
version "3.4.2"
|
1601
|
+
resolved "https://registry.yarnpkg.com/@stencil/core/-/core-3.4.2.tgz#57ce7f71fe18c2ec0967821bec667fc453cca962"
|
1602
|
+
integrity sha512-FAUhUVaakCy29nU2GwO/HQBRV1ihPRvncz3PUc8oR+UJLAxGabTmP8PLY7wvHfbw+Cvi4VXfJFTBvdfDu6iKPQ==
|
1603
|
+
|
1565
1604
|
"@trysound/sax@0.2.0":
|
1566
1605
|
version "0.2.0"
|
1567
1606
|
resolved "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz"
|
@@ -2165,6 +2204,15 @@
|
|
2165
2204
|
postcss "^8.4.14"
|
2166
2205
|
source-map "^0.6.1"
|
2167
2206
|
|
2207
|
+
"@vue/compiler-sfc@2.7.15":
|
2208
|
+
version "2.7.15"
|
2209
|
+
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-2.7.15.tgz#62135fb2f69559fc723fd9c56b8e8b0ac7864a0b"
|
2210
|
+
integrity sha512-FCvIEevPmgCgqFBH7wD+3B97y7u7oj/Wr69zADBf403Tui377bThTjBvekaZvlRr4IwUAu3M6hYZeULZFJbdYg==
|
2211
|
+
dependencies:
|
2212
|
+
"@babel/parser" "^7.18.4"
|
2213
|
+
postcss "^8.4.14"
|
2214
|
+
source-map "^0.6.1"
|
2215
|
+
|
2168
2216
|
"@vue/component-compiler-utils@^3.1.0", "@vue/component-compiler-utils@^3.3.0":
|
2169
2217
|
version "3.3.0"
|
2170
2218
|
resolved "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.3.0.tgz"
|
@@ -2181,12 +2229,12 @@
|
|
2181
2229
|
optionalDependencies:
|
2182
2230
|
prettier "^1.18.2 || ^2.0.0"
|
2183
2231
|
|
2184
|
-
"@vue/eslint-config-prettier@
|
2185
|
-
version "
|
2186
|
-
resolved "https://registry.yarnpkg.com/@vue/eslint-config-prettier/-/eslint-config-prettier-
|
2187
|
-
integrity sha512-
|
2232
|
+
"@vue/eslint-config-prettier@9.0.0":
|
2233
|
+
version "9.0.0"
|
2234
|
+
resolved "https://registry.yarnpkg.com/@vue/eslint-config-prettier/-/eslint-config-prettier-9.0.0.tgz#f63394f8f7759d92b6ef3f3e1d30ff6b0c0b97c1"
|
2235
|
+
integrity sha512-z1ZIAAUS9pKzo/ANEfd2sO+v2IUalz7cM/cTLOZ7vRFOPk5/xuRKQteOu1DErFLAh/lYGXMVZ0IfYKlyInuDVg==
|
2188
2236
|
dependencies:
|
2189
|
-
eslint-config-prettier "^
|
2237
|
+
eslint-config-prettier "^9.0.0"
|
2190
2238
|
eslint-plugin-prettier "^5.0.0"
|
2191
2239
|
|
2192
2240
|
"@vue/shared@3.3.4":
|
@@ -2718,13 +2766,14 @@ autoprefixer@^10.2.4:
|
|
2718
2766
|
picocolors "^1.0.0"
|
2719
2767
|
postcss-value-parser "^4.2.0"
|
2720
2768
|
|
2721
|
-
axios@
|
2722
|
-
version "
|
2723
|
-
resolved "https://registry.
|
2724
|
-
integrity sha512-
|
2769
|
+
axios@1.6.5:
|
2770
|
+
version "1.6.5"
|
2771
|
+
resolved "https://registry.yarnpkg.com/axios/-/axios-1.6.5.tgz#2c090da14aeeab3770ad30c3a1461bc970fb0cd8"
|
2772
|
+
integrity sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==
|
2725
2773
|
dependencies:
|
2726
|
-
follow-redirects "^1.
|
2774
|
+
follow-redirects "^1.15.4"
|
2727
2775
|
form-data "^4.0.0"
|
2776
|
+
proxy-from-env "^1.1.0"
|
2728
2777
|
|
2729
2778
|
babel-core@^7.0.0-bridge.0:
|
2730
2779
|
version "7.0.0-bridge.0"
|
@@ -3668,6 +3717,11 @@ csstype@^3.1.0:
|
|
3668
3717
|
resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz"
|
3669
3718
|
integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==
|
3670
3719
|
|
3720
|
+
date-fns-tz@~1.3.7:
|
3721
|
+
version "1.3.8"
|
3722
|
+
resolved "https://registry.yarnpkg.com/date-fns-tz/-/date-fns-tz-1.3.8.tgz#083e3a4e1f19b7857fa0c18deea6c2bc46ded7b9"
|
3723
|
+
integrity sha512-qwNXUFtMHTTU6CFSFjoJ80W8Fzzp24LntbjFFBgL/faqds4e5mo9mftoRLgr3Vi1trISsg4awSpYVsOQCRnapQ==
|
3724
|
+
|
3671
3725
|
date-fns@2.30.0:
|
3672
3726
|
version "2.30.0"
|
3673
3727
|
resolved "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz"
|
@@ -3675,6 +3729,11 @@ date-fns@2.30.0:
|
|
3675
3729
|
dependencies:
|
3676
3730
|
"@babel/runtime" "^7.21.0"
|
3677
3731
|
|
3732
|
+
date-fns@~2.21.3:
|
3733
|
+
version "2.21.3"
|
3734
|
+
resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.21.3.tgz#8f5f6889d7a96bbcc1f0ea50239b397a83357f9b"
|
3735
|
+
integrity sha512-HeYdzCaFflc1i4tGbj7JKMjM4cKGYoyxwcIIkHzNgCkX8xXDNJDZXgDDVchIWpN4eQc3lH37WarduXFZJOtxfw==
|
3736
|
+
|
3678
3737
|
de-indent@^1.0.2:
|
3679
3738
|
version "1.0.2"
|
3680
3739
|
resolved "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz"
|
@@ -4120,23 +4179,18 @@ escape-string-regexp@^4.0.0:
|
|
4120
4179
|
resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
|
4121
4180
|
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
|
4122
4181
|
|
4123
|
-
eslint-config-prettier@9.0.0:
|
4124
|
-
version "9.
|
4125
|
-
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.
|
4126
|
-
integrity sha512-
|
4127
|
-
|
4128
|
-
eslint-config-prettier@^8.8.0:
|
4129
|
-
version "8.10.0"
|
4130
|
-
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz#3a06a662130807e2502fc3ff8b4143d8a0658e11"
|
4131
|
-
integrity sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==
|
4182
|
+
eslint-config-prettier@9.1.0, eslint-config-prettier@^9.0.0:
|
4183
|
+
version "9.1.0"
|
4184
|
+
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz#31af3d94578645966c082fcb71a5846d3c94867f"
|
4185
|
+
integrity sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==
|
4132
4186
|
|
4133
|
-
eslint-plugin-prettier@5.
|
4134
|
-
version "5.
|
4135
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.
|
4136
|
-
integrity sha512-
|
4187
|
+
eslint-plugin-prettier@5.1.2:
|
4188
|
+
version "5.1.2"
|
4189
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.2.tgz#584c94d4bf31329b2d4cbeb10fd600d17d6de742"
|
4190
|
+
integrity sha512-dhlpWc9vOwohcWmClFcA+HjlvUpuyynYs0Rf+L/P6/0iQE6vlHW9l5bkfzN62/Stm9fbq8ku46qzde76T1xlSg==
|
4137
4191
|
dependencies:
|
4138
4192
|
prettier-linter-helpers "^1.0.0"
|
4139
|
-
synckit "^0.8.
|
4193
|
+
synckit "^0.8.6"
|
4140
4194
|
|
4141
4195
|
eslint-plugin-prettier@^5.0.0:
|
4142
4196
|
version "5.0.0"
|
@@ -4146,10 +4200,10 @@ eslint-plugin-prettier@^5.0.0:
|
|
4146
4200
|
prettier-linter-helpers "^1.0.0"
|
4147
4201
|
synckit "^0.8.5"
|
4148
4202
|
|
4149
|
-
eslint-plugin-vue@9.
|
4150
|
-
version "9.
|
4151
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.
|
4152
|
-
integrity sha512-
|
4203
|
+
eslint-plugin-vue@9.19.2:
|
4204
|
+
version "9.19.2"
|
4205
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.19.2.tgz#7ab83a001a1ac8bccae013c5b9cb5d2c644fb376"
|
4206
|
+
integrity sha512-CPDqTOG2K4Ni2o4J5wixkLVNwgctKXFu6oBpVJlpNq7f38lh9I80pRTouZSJ2MAebPJlINU/KTFSXyQfBUlymA==
|
4153
4207
|
dependencies:
|
4154
4208
|
"@eslint-community/eslint-utils" "^4.4.0"
|
4155
4209
|
natural-compare "^1.4.0"
|
@@ -4209,15 +4263,15 @@ eslint-webpack-plugin@^3.1.0:
|
|
4209
4263
|
normalize-path "^3.0.0"
|
4210
4264
|
schema-utils "^4.0.0"
|
4211
4265
|
|
4212
|
-
eslint@8.
|
4213
|
-
version "8.
|
4214
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.
|
4215
|
-
integrity sha512-
|
4266
|
+
eslint@8.56.0:
|
4267
|
+
version "8.56.0"
|
4268
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.56.0.tgz#4957ce8da409dc0809f99ab07a1b94832ab74b15"
|
4269
|
+
integrity sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==
|
4216
4270
|
dependencies:
|
4217
4271
|
"@eslint-community/eslint-utils" "^4.2.0"
|
4218
4272
|
"@eslint-community/regexpp" "^4.6.1"
|
4219
|
-
"@eslint/eslintrc" "^2.1.
|
4220
|
-
"@eslint/js" "8.
|
4273
|
+
"@eslint/eslintrc" "^2.1.4"
|
4274
|
+
"@eslint/js" "8.56.0"
|
4221
4275
|
"@humanwhocodes/config-array" "^0.11.13"
|
4222
4276
|
"@humanwhocodes/module-importer" "^1.0.1"
|
4223
4277
|
"@nodelib/fs.walk" "^1.2.8"
|
@@ -4772,11 +4826,16 @@ flow-parser@0.*:
|
|
4772
4826
|
resolved "https://registry.npmjs.org/flow-parser/-/flow-parser-0.208.0.tgz"
|
4773
4827
|
integrity sha512-nuoC/kw8BH0gw7ykHNlKJVvtQWh/j5+CE3P/54RBMy63IoGlj9ScTQOC1ntLzwnnfzm9gT5OOukWG0TKrgKyug==
|
4774
4828
|
|
4775
|
-
follow-redirects@^1.0.0
|
4829
|
+
follow-redirects@^1.0.0:
|
4776
4830
|
version "1.15.2"
|
4777
4831
|
resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz"
|
4778
4832
|
integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==
|
4779
4833
|
|
4834
|
+
follow-redirects@^1.15.4:
|
4835
|
+
version "1.15.4"
|
4836
|
+
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.4.tgz#cdc7d308bf6493126b17ea2191ea0ccf3e535adf"
|
4837
|
+
integrity sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==
|
4838
|
+
|
4780
4839
|
for-in@^1.0.2:
|
4781
4840
|
version "1.0.2"
|
4782
4841
|
resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz"
|
@@ -5238,10 +5297,10 @@ html-webpack-plugin@^5.1.0:
|
|
5238
5297
|
pretty-error "^4.0.0"
|
5239
5298
|
tapable "^2.0.0"
|
5240
5299
|
|
5241
|
-
html-webpack-plugin@^5.
|
5242
|
-
version "5.
|
5243
|
-
resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.
|
5244
|
-
integrity sha512-
|
5300
|
+
html-webpack-plugin@^5.6.0:
|
5301
|
+
version "5.6.0"
|
5302
|
+
resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.6.0.tgz#50a8fa6709245608cb00e811eacecb8e0d7b7ea0"
|
5303
|
+
integrity sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==
|
5245
5304
|
dependencies:
|
5246
5305
|
"@types/html-minifier-terser" "^6.0.0"
|
5247
5306
|
html-minifier-terser "^6.0.2"
|
@@ -7361,10 +7420,10 @@ prettier-linter-helpers@^1.0.0:
|
|
7361
7420
|
dependencies:
|
7362
7421
|
fast-diff "^1.1.2"
|
7363
7422
|
|
7364
|
-
prettier@3.
|
7365
|
-
version "3.
|
7366
|
-
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.
|
7367
|
-
integrity sha512-
|
7423
|
+
prettier@3.1.1:
|
7424
|
+
version "3.1.1"
|
7425
|
+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.1.1.tgz#6ba9f23165d690b6cbdaa88cb0807278f7019848"
|
7426
|
+
integrity sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==
|
7368
7427
|
|
7369
7428
|
"prettier@^1.18.2 || ^2.0.0":
|
7370
7429
|
version "2.8.8"
|
@@ -7432,6 +7491,11 @@ proxy-addr@~2.0.7:
|
|
7432
7491
|
forwarded "0.2.0"
|
7433
7492
|
ipaddr.js "1.9.1"
|
7434
7493
|
|
7494
|
+
proxy-from-env@^1.1.0:
|
7495
|
+
version "1.1.0"
|
7496
|
+
resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2"
|
7497
|
+
integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==
|
7498
|
+
|
7435
7499
|
ps-list@^6.3.0:
|
7436
7500
|
version "6.3.0"
|
7437
7501
|
resolved "https://registry.npmjs.org/ps-list/-/ps-list-6.3.0.tgz"
|
@@ -7819,17 +7883,17 @@ safe-regex@^1.1.0:
|
|
7819
7883
|
resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"
|
7820
7884
|
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
|
7821
7885
|
|
7822
|
-
sass-loader@13.3.
|
7823
|
-
version "13.3.
|
7824
|
-
resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-13.3.
|
7825
|
-
integrity sha512-
|
7886
|
+
sass-loader@13.3.3:
|
7887
|
+
version "13.3.3"
|
7888
|
+
resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-13.3.3.tgz#60df5e858788cffb1a3215e5b92e9cba61e7e133"
|
7889
|
+
integrity sha512-mt5YN2F1MOZr3d/wBRcZxeFgwgkH44wVc2zohO2YF6JiOMkiXe4BYRZpSu2sO1g71mo/j16txzUhsKZlqjVGzA==
|
7826
7890
|
dependencies:
|
7827
7891
|
neo-async "^2.6.2"
|
7828
7892
|
|
7829
|
-
sass@1.69.
|
7830
|
-
version "1.69.
|
7831
|
-
resolved "https://registry.yarnpkg.com/sass/-/sass-1.69.
|
7832
|
-
integrity sha512-
|
7893
|
+
sass@1.69.7:
|
7894
|
+
version "1.69.7"
|
7895
|
+
resolved "https://registry.yarnpkg.com/sass/-/sass-1.69.7.tgz#6e7e1c8f51e8162faec3e9619babc7da780af3b7"
|
7896
|
+
integrity sha512-rzj2soDeZ8wtE2egyLXgOOHQvaC2iosZrkF6v3EUG+tBwEvhqUCzm0VP3k9gHF9LXbSrRhT5SksoI56Iw8NPnQ==
|
7833
7897
|
dependencies:
|
7834
7898
|
chokidar ">=3.0.0 <4.0.0"
|
7835
7899
|
immutable "^4.0.0"
|
@@ -8474,6 +8538,14 @@ synckit@^0.8.5:
|
|
8474
8538
|
"@pkgr/utils" "^2.3.1"
|
8475
8539
|
tslib "^2.5.0"
|
8476
8540
|
|
8541
|
+
synckit@^0.8.6:
|
8542
|
+
version "0.8.8"
|
8543
|
+
resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.8.tgz#fe7fe446518e3d3d49f5e429f443cf08b6edfcd7"
|
8544
|
+
integrity sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==
|
8545
|
+
dependencies:
|
8546
|
+
"@pkgr/core" "^0.1.0"
|
8547
|
+
tslib "^2.6.2"
|
8548
|
+
|
8477
8549
|
systemjs-webpack-interop@2.3.7, systemjs-webpack-interop@^2.3.7:
|
8478
8550
|
version "2.3.7"
|
8479
8551
|
resolved "https://registry.npmjs.org/systemjs-webpack-interop/-/systemjs-webpack-interop-2.3.7.tgz"
|
@@ -8673,7 +8745,7 @@ tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0:
|
|
8673
8745
|
resolved "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz"
|
8674
8746
|
integrity sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==
|
8675
8747
|
|
8676
|
-
tslib@^2.5.0, tslib@^2.6.0:
|
8748
|
+
tslib@^2.5.0, tslib@^2.6.0, tslib@^2.6.2:
|
8677
8749
|
version "2.6.2"
|
8678
8750
|
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
|
8679
8751
|
integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
|
@@ -8958,10 +9030,10 @@ vue-style-loader@^4.1.0, vue-style-loader@^4.1.3:
|
|
8958
9030
|
hash-sum "^1.0.2"
|
8959
9031
|
loader-utils "^1.0.2"
|
8960
9032
|
|
8961
|
-
vue-template-compiler@2.7.
|
8962
|
-
version "2.7.
|
8963
|
-
resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.7.
|
8964
|
-
integrity sha512-
|
9033
|
+
vue-template-compiler@2.7.16:
|
9034
|
+
version "2.7.16"
|
9035
|
+
resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.7.16.tgz#c81b2d47753264c77ac03b9966a46637482bb03b"
|
9036
|
+
integrity sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==
|
8965
9037
|
dependencies:
|
8966
9038
|
de-indent "^1.0.2"
|
8967
9039
|
he "^1.2.0"
|
@@ -8971,7 +9043,15 @@ vue-template-es2015-compiler@^1.9.0:
|
|
8971
9043
|
resolved "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz"
|
8972
9044
|
integrity sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==
|
8973
9045
|
|
8974
|
-
vue@2.7.
|
9046
|
+
vue@2.7.15:
|
9047
|
+
version "2.7.15"
|
9048
|
+
resolved "https://registry.yarnpkg.com/vue/-/vue-2.7.15.tgz#94cd34e6e9f22cd2d35a02143f96a5beac1c1f54"
|
9049
|
+
integrity sha512-a29fsXd2G0KMRqIFTpRgpSbWaNBK3lpCTOLuGLEDnlHWdjB8fwl6zyYZ8xCrqkJdatwZb4mGHiEfJjnw0Q6AwQ==
|
9050
|
+
dependencies:
|
9051
|
+
"@vue/compiler-sfc" "2.7.15"
|
9052
|
+
csstype "^3.1.0"
|
9053
|
+
|
9054
|
+
vue@^2.6.14:
|
8975
9055
|
version "2.7.14"
|
8976
9056
|
resolved "https://registry.npmjs.org/vue/-/vue-2.7.14.tgz"
|
8977
9057
|
integrity sha512-b2qkFyOM0kwqWFuQmgd4o+uHGU7T+2z3T+WQp8UBjADfEv2n4FEMffzBmCKNP0IGzOEEfYjvtcC62xaSKeQDrQ==
|
@@ -1,35 +1,36 @@
|
|
1
1
|
{
|
2
2
|
"name": "widget",
|
3
|
-
"version": "5.
|
3
|
+
"version": "5.14.0",
|
4
4
|
"private": true,
|
5
5
|
"scripts": {
|
6
6
|
"build": "vue-cli-service build --target lib --dest tools/widgets/<%= widget_name %> --formats umd-min <%= widget_path %> --name <%= widget_name %>"
|
7
7
|
},
|
8
8
|
"dependencies": {
|
9
|
-
"@openc3/tool-common": "5.
|
10
|
-
"
|
9
|
+
"@openc3/tool-common": "5.14.0",
|
10
|
+
"@astrouxds/astro-web-components": "7.20.0",
|
11
|
+
"vue": "2.7.16",
|
11
12
|
"vuetify": "2.7.1"
|
12
13
|
},
|
13
14
|
"devDependencies": {
|
14
|
-
"@babel/eslint-parser": "7.
|
15
|
-
"@rushstack/eslint-patch": "1.
|
15
|
+
"@babel/eslint-parser": "7.23.3",
|
16
|
+
"@rushstack/eslint-patch": "1.6.1",
|
16
17
|
"@vue/babel-preset-app": "5.0.8",
|
17
18
|
"@vue/cli": "5.0.8",
|
18
19
|
"@vue/cli-plugin-babel": "5.0.8",
|
19
20
|
"@vue/cli-plugin-eslint": "5.0.8",
|
20
21
|
"@vue/cli-service": "5.0.8",
|
21
|
-
"@vue/eslint-config-prettier": "
|
22
|
+
"@vue/eslint-config-prettier": "9.0.0",
|
22
23
|
"babel-loader": "9.1.3",
|
23
24
|
"babel-plugin-istanbul": "6.1.1",
|
24
|
-
"eslint": "8.
|
25
|
-
"eslint-config-prettier": "9.
|
26
|
-
"eslint-plugin-prettier": "5.
|
27
|
-
"eslint-plugin-vue": "9.
|
28
|
-
"prettier": "3.
|
29
|
-
"sass": "1.69.
|
30
|
-
"sass-loader": "13.3.
|
25
|
+
"eslint": "8.56.0",
|
26
|
+
"eslint-config-prettier": "9.1.0",
|
27
|
+
"eslint-plugin-prettier": "5.1.2",
|
28
|
+
"eslint-plugin-vue": "9.19.2",
|
29
|
+
"prettier": "3.1.1",
|
30
|
+
"sass": "1.69.7",
|
31
|
+
"sass-loader": "13.3.3",
|
31
32
|
"vue-cli-plugin-vuetify": "2.5.8",
|
32
|
-
"vue-template-compiler": "2.7.
|
33
|
+
"vue-template-compiler": "2.7.16",
|
33
34
|
"webpack": "5.89.0"
|
34
35
|
}
|
35
36
|
}
|