openc3 5.11.3 → 5.13.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 +2 -2
- data/bin/openc3cli +29 -15
- data/data/config/_id_items.yaml +6 -4
- data/data/config/_id_params.yaml +9 -6
- data/data/config/_items.yaml +6 -4
- data/data/config/_params.yaml +3 -2
- data/data/config/graph_settings.yaml +1 -1
- data/data/config/interface_modifiers.yaml +1 -1
- data/data/config/item_modifiers.yaml +1 -2
- data/data/config/microservice.yaml +10 -1
- data/data/config/parameter_modifiers.yaml +13 -14
- data/data/config/plugins.yaml +13 -3
- data/data/config/screen.yaml +1 -2
- data/data/config/target.yaml +9 -0
- data/data/config/target_config.yaml +14 -6
- data/data/config/tool.yaml +12 -3
- data/lib/openc3/api/api.rb +1 -1
- data/lib/openc3/api/cmd_api.rb +123 -59
- data/lib/openc3/api/config_api.rb +12 -12
- data/lib/openc3/api/limits_api.rb +4 -3
- data/lib/openc3/api/settings_api.rb +5 -2
- data/lib/openc3/api/tlm_api.rb +70 -34
- data/lib/openc3/conversions/unix_time_conversion.rb +8 -6
- data/lib/openc3/interfaces/mqtt_interface.rb +11 -9
- data/lib/openc3/interfaces/mqtt_stream_interface.rb +78 -0
- data/lib/openc3/interfaces/tcpip_server_interface.rb +0 -7
- data/lib/openc3/io/json_drb.rb +3 -2
- data/lib/openc3/io/json_rpc.rb +6 -6
- data/lib/openc3/logs/buffered_packet_log_writer.rb +4 -2
- data/lib/openc3/logs/packet_log_reader.rb +2 -2
- data/lib/openc3/logs/packet_log_writer.rb +22 -7
- data/lib/openc3/logs/text_log_writer.rb +3 -2
- data/lib/openc3/microservices/cleanup_microservice.rb +8 -1
- data/lib/openc3/microservices/decom_microservice.rb +1 -1
- data/lib/openc3/microservices/interface_microservice.rb +2 -2
- data/lib/openc3/microservices/microservice.rb +5 -2
- data/lib/openc3/microservices/reaction_microservice.rb +1 -0
- data/lib/openc3/microservices/timeline_microservice.rb +7 -5
- data/lib/openc3/microservices/trigger_group_microservice.rb +2 -1
- data/lib/openc3/migrations/20231022000000_tlm_viewer_config.rb +22 -0
- data/lib/openc3/models/activity_model.rb +21 -3
- data/lib/openc3/models/cvt_model.rb +2 -1
- data/lib/openc3/models/gem_model.rb +4 -1
- data/lib/openc3/models/interface_model.rb +11 -5
- data/lib/openc3/models/metadata_model.rb +11 -0
- data/lib/openc3/models/microservice_model.rb +16 -3
- data/lib/openc3/models/model.rb +18 -0
- data/lib/openc3/models/note_model.rb +11 -0
- data/lib/openc3/models/plugin_model.rb +56 -4
- data/lib/openc3/models/python_package_model.rb +104 -0
- data/lib/openc3/models/scope_model.rb +2 -0
- data/lib/openc3/models/sorted_model.rb +17 -8
- data/lib/openc3/models/target_model.rb +53 -18
- data/lib/openc3/models/tool_config_model.rb +9 -3
- data/lib/openc3/models/tool_model.rb +22 -7
- data/lib/openc3/models/widget_model.rb +19 -3
- data/lib/openc3/operators/microservice_operator.rb +2 -0
- data/lib/openc3/packets/json_packet.rb +46 -15
- data/lib/openc3/packets/limits.rb +6 -18
- data/lib/openc3/packets/packet.rb +1 -0
- data/lib/openc3/packets/packet_config.rb +2 -1
- data/lib/openc3/packets/parsers/format_string_parser.rb +4 -4
- data/lib/openc3/packets/parsers/limits_parser.rb +4 -4
- data/lib/openc3/packets/parsers/limits_response_parser.rb +5 -5
- data/lib/openc3/packets/parsers/processor_parser.rb +4 -4
- data/lib/openc3/packets/parsers/state_parser.rb +3 -3
- data/lib/openc3/packets/parsers/xtce_parser.rb +5 -1
- data/lib/openc3/script/api_shared.rb +81 -63
- data/lib/openc3/script/calendar.rb +109 -0
- data/lib/openc3/script/commands.rb +18 -19
- data/lib/openc3/script/limits.rb +1 -1
- data/lib/openc3/script/{gems.rb → packages.rb} +20 -16
- data/lib/openc3/script/script.rb +49 -38
- 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/system/system.rb +2 -0
- data/lib/openc3/system/target.rb +10 -1
- data/lib/openc3/top_level.rb +2 -2
- data/lib/openc3/utilities/aws_bucket.rb +3 -2
- data/lib/openc3/utilities/bucket_file_cache.rb +1 -1
- data/lib/openc3/utilities/cli_generator.rb +33 -20
- data/lib/openc3/utilities/local_mode.rb +5 -3
- data/lib/openc3/utilities/logger.rb +18 -17
- data/lib/openc3/utilities/process_manager.rb +1 -1
- data/lib/openc3/utilities/ruby_lex_utils.rb +0 -8
- data/lib/openc3/version.rb +6 -6
- 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/target/targets/TARGET/lib/target.py +9 -0
- data/templates/target/targets/TARGET/procedures/procedure.py +3 -0
- data/templates/tool_angular/package.json +22 -21
- data/templates/tool_angular/yarn.lock +2319 -3156
- data/templates/tool_react/package.json +16 -16
- data/templates/tool_react/yarn.lock +763 -645
- data/templates/tool_svelte/package.json +15 -14
- data/templates/tool_svelte/src/services/openc3-api.js +33 -82
- data/templates/tool_svelte/yarn.lock +748 -538
- data/templates/tool_vue/package.json +15 -14
- data/templates/tool_vue/yarn.lock +150 -64
- data/templates/widget/package.json +14 -13
- data/templates/widget/yarn.lock +133 -58
- metadata +60 -7
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "<%= tool_name %>",
|
3
|
-
"version": "5.
|
3
|
+
"version": "5.13.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.13.0",
|
15
|
+
"@astrouxds/astro-web-components": "7.19.1",
|
16
|
+
"axios": "1.6.2",
|
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.15",
|
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",
|
@@ -36,17 +37,17 @@
|
|
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.0.
|
42
|
-
"eslint-plugin-vue": "9.
|
43
|
-
"html-webpack-plugin": "^5.5.
|
44
|
-
"prettier": "3.
|
45
|
-
"sass": "1.
|
40
|
+
"eslint": "8.55.0",
|
41
|
+
"eslint-config-prettier": "9.1.0",
|
42
|
+
"eslint-plugin-prettier": "5.0.1",
|
43
|
+
"eslint-plugin-vue": "9.19.2",
|
44
|
+
"html-webpack-plugin": "^5.5.4",
|
45
|
+
"prettier": "3.1.1",
|
46
|
+
"sass": "1.69.5",
|
46
47
|
"sass-loader": "13.3.2",
|
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
|
-
"webpack": "5.
|
50
|
+
"vue-template-compiler": "2.7.15",
|
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.19.1":
|
143
|
+
version "7.19.1"
|
144
|
+
resolved "https://registry.yarnpkg.com/@astrouxds/astro-web-components/-/astro-web-components-7.19.1.tgz#ccd6cea003afe2a007c4abaa9703ce3aeb339acf"
|
145
|
+
integrity sha512-jYkcCxk09abPper9iFB6zNV+dE2E21c4jo6rvLRSwjxjoWFE7BGqhzGmONhoKwG/z2cRjsE6X+P0JlzK9V6fgw==
|
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.55.0":
|
1261
|
+
version "8.55.0"
|
1262
|
+
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.55.0.tgz#b721d52060f369aa259cf97392403cb9ce892ec6"
|
1263
|
+
integrity sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA==
|
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"
|
@@ -1330,12 +1359,12 @@
|
|
1330
1359
|
dependencies:
|
1331
1360
|
"@hapi/hoek" "^9.0.0"
|
1332
1361
|
|
1333
|
-
"@humanwhocodes/config-array@^0.11.
|
1334
|
-
version "0.11.
|
1335
|
-
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.
|
1336
|
-
integrity sha512-
|
1362
|
+
"@humanwhocodes/config-array@^0.11.13":
|
1363
|
+
version "0.11.13"
|
1364
|
+
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.13.tgz#075dc9684f40a531d9b26b0822153c1e832ee297"
|
1365
|
+
integrity sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==
|
1337
1366
|
dependencies:
|
1338
|
-
"@humanwhocodes/object-schema" "^
|
1367
|
+
"@humanwhocodes/object-schema" "^2.0.1"
|
1339
1368
|
debug "^4.1.1"
|
1340
1369
|
minimatch "^3.0.5"
|
1341
1370
|
|
@@ -1344,10 +1373,10 @@
|
|
1344
1373
|
resolved "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz"
|
1345
1374
|
integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
|
1346
1375
|
|
1347
|
-
"@humanwhocodes/object-schema@^
|
1348
|
-
version "
|
1349
|
-
resolved "https://registry.
|
1350
|
-
integrity sha512-
|
1376
|
+
"@humanwhocodes/object-schema@^2.0.1":
|
1377
|
+
version "2.0.1"
|
1378
|
+
resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz#e5211452df060fa8522b55c7b3c0c4d1981cb044"
|
1379
|
+
integrity sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==
|
1351
1380
|
|
1352
1381
|
"@istanbuljs/load-nyc-config@^1.0.0":
|
1353
1382
|
version "1.1.0"
|
@@ -1562,6 +1591,11 @@
|
|
1562
1591
|
resolved "https://registry.npmjs.org/@soda/get-current-script/-/get-current-script-1.0.2.tgz"
|
1563
1592
|
integrity sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w==
|
1564
1593
|
|
1594
|
+
"@stencil/core@~3.4.1":
|
1595
|
+
version "3.4.2"
|
1596
|
+
resolved "https://registry.yarnpkg.com/@stencil/core/-/core-3.4.2.tgz#57ce7f71fe18c2ec0967821bec667fc453cca962"
|
1597
|
+
integrity sha512-FAUhUVaakCy29nU2GwO/HQBRV1ihPRvncz3PUc8oR+UJLAxGabTmP8PLY7wvHfbw+Cvi4VXfJFTBvdfDu6iKPQ==
|
1598
|
+
|
1565
1599
|
"@trysound/sax@0.2.0":
|
1566
1600
|
version "0.2.0"
|
1567
1601
|
resolved "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz"
|
@@ -1806,6 +1840,11 @@
|
|
1806
1840
|
dependencies:
|
1807
1841
|
"@types/node" "*"
|
1808
1842
|
|
1843
|
+
"@ungap/structured-clone@^1.2.0":
|
1844
|
+
version "1.2.0"
|
1845
|
+
resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406"
|
1846
|
+
integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==
|
1847
|
+
|
1809
1848
|
"@vue/babel-helper-vue-jsx-merge-props@^1.4.0":
|
1810
1849
|
version "1.4.0"
|
1811
1850
|
resolved "https://registry.npmjs.org/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.4.0.tgz"
|
@@ -2160,6 +2199,15 @@
|
|
2160
2199
|
postcss "^8.4.14"
|
2161
2200
|
source-map "^0.6.1"
|
2162
2201
|
|
2202
|
+
"@vue/compiler-sfc@2.7.15":
|
2203
|
+
version "2.7.15"
|
2204
|
+
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-2.7.15.tgz#62135fb2f69559fc723fd9c56b8e8b0ac7864a0b"
|
2205
|
+
integrity sha512-FCvIEevPmgCgqFBH7wD+3B97y7u7oj/Wr69zADBf403Tui377bThTjBvekaZvlRr4IwUAu3M6hYZeULZFJbdYg==
|
2206
|
+
dependencies:
|
2207
|
+
"@babel/parser" "^7.18.4"
|
2208
|
+
postcss "^8.4.14"
|
2209
|
+
source-map "^0.6.1"
|
2210
|
+
|
2163
2211
|
"@vue/component-compiler-utils@^3.1.0", "@vue/component-compiler-utils@^3.3.0":
|
2164
2212
|
version "3.3.0"
|
2165
2213
|
resolved "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.3.0.tgz"
|
@@ -2713,13 +2761,14 @@ autoprefixer@^10.2.4:
|
|
2713
2761
|
picocolors "^1.0.0"
|
2714
2762
|
postcss-value-parser "^4.2.0"
|
2715
2763
|
|
2716
|
-
axios@
|
2717
|
-
version "
|
2718
|
-
resolved "https://registry.
|
2719
|
-
integrity sha512-
|
2764
|
+
axios@1.6.2:
|
2765
|
+
version "1.6.2"
|
2766
|
+
resolved "https://registry.yarnpkg.com/axios/-/axios-1.6.2.tgz#de67d42c755b571d3e698df1b6504cde9b0ee9f2"
|
2767
|
+
integrity sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==
|
2720
2768
|
dependencies:
|
2721
|
-
follow-redirects "^1.
|
2769
|
+
follow-redirects "^1.15.0"
|
2722
2770
|
form-data "^4.0.0"
|
2771
|
+
proxy-from-env "^1.1.0"
|
2723
2772
|
|
2724
2773
|
babel-core@^7.0.0-bridge.0:
|
2725
2774
|
version "7.0.0-bridge.0"
|
@@ -3663,6 +3712,11 @@ csstype@^3.1.0:
|
|
3663
3712
|
resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz"
|
3664
3713
|
integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==
|
3665
3714
|
|
3715
|
+
date-fns-tz@~1.3.7:
|
3716
|
+
version "1.3.8"
|
3717
|
+
resolved "https://registry.yarnpkg.com/date-fns-tz/-/date-fns-tz-1.3.8.tgz#083e3a4e1f19b7857fa0c18deea6c2bc46ded7b9"
|
3718
|
+
integrity sha512-qwNXUFtMHTTU6CFSFjoJ80W8Fzzp24LntbjFFBgL/faqds4e5mo9mftoRLgr3Vi1trISsg4awSpYVsOQCRnapQ==
|
3719
|
+
|
3666
3720
|
date-fns@2.30.0:
|
3667
3721
|
version "2.30.0"
|
3668
3722
|
resolved "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz"
|
@@ -3670,6 +3724,11 @@ date-fns@2.30.0:
|
|
3670
3724
|
dependencies:
|
3671
3725
|
"@babel/runtime" "^7.21.0"
|
3672
3726
|
|
3727
|
+
date-fns@~2.21.3:
|
3728
|
+
version "2.21.3"
|
3729
|
+
resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.21.3.tgz#8f5f6889d7a96bbcc1f0ea50239b397a83357f9b"
|
3730
|
+
integrity sha512-HeYdzCaFflc1i4tGbj7JKMjM4cKGYoyxwcIIkHzNgCkX8xXDNJDZXgDDVchIWpN4eQc3lH37WarduXFZJOtxfw==
|
3731
|
+
|
3673
3732
|
de-indent@^1.0.2:
|
3674
3733
|
version "1.0.2"
|
3675
3734
|
resolved "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz"
|
@@ -4115,17 +4174,25 @@ escape-string-regexp@^4.0.0:
|
|
4115
4174
|
resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
|
4116
4175
|
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
|
4117
4176
|
|
4118
|
-
eslint-config-prettier@9.
|
4119
|
-
version "9.
|
4120
|
-
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.
|
4121
|
-
integrity sha512-
|
4177
|
+
eslint-config-prettier@9.1.0:
|
4178
|
+
version "9.1.0"
|
4179
|
+
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz#31af3d94578645966c082fcb71a5846d3c94867f"
|
4180
|
+
integrity sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==
|
4122
4181
|
|
4123
4182
|
eslint-config-prettier@^8.8.0:
|
4124
4183
|
version "8.10.0"
|
4125
4184
|
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz#3a06a662130807e2502fc3ff8b4143d8a0658e11"
|
4126
4185
|
integrity sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==
|
4127
4186
|
|
4128
|
-
eslint-plugin-prettier@5.0.
|
4187
|
+
eslint-plugin-prettier@5.0.1:
|
4188
|
+
version "5.0.1"
|
4189
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.1.tgz#a3b399f04378f79f066379f544e42d6b73f11515"
|
4190
|
+
integrity sha512-m3u5RnR56asrwV/lDC4GHorlW75DsFfmUcjfCYylTUs85dBRnB7VM6xG8eCMJdeDRnppzmxZVf1GEPJvl1JmNg==
|
4191
|
+
dependencies:
|
4192
|
+
prettier-linter-helpers "^1.0.0"
|
4193
|
+
synckit "^0.8.5"
|
4194
|
+
|
4195
|
+
eslint-plugin-prettier@^5.0.0:
|
4129
4196
|
version "5.0.0"
|
4130
4197
|
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.0.tgz#6887780ed95f7708340ec79acfdf60c35b9be57a"
|
4131
4198
|
integrity sha512-AgaZCVuYDXHUGxj/ZGu1u8H8CYgDY3iG6w5kUFw4AzMVXzB7VvbKgYR4nATIN+OvUrghMbiDLeimVjVY5ilq3w==
|
@@ -4133,10 +4200,10 @@ eslint-plugin-prettier@5.0.0, eslint-plugin-prettier@^5.0.0:
|
|
4133
4200
|
prettier-linter-helpers "^1.0.0"
|
4134
4201
|
synckit "^0.8.5"
|
4135
4202
|
|
4136
|
-
eslint-plugin-vue@9.
|
4137
|
-
version "9.
|
4138
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.
|
4139
|
-
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==
|
4140
4207
|
dependencies:
|
4141
4208
|
"@eslint-community/eslint-utils" "^4.4.0"
|
4142
4209
|
natural-compare "^1.4.0"
|
@@ -4196,18 +4263,19 @@ eslint-webpack-plugin@^3.1.0:
|
|
4196
4263
|
normalize-path "^3.0.0"
|
4197
4264
|
schema-utils "^4.0.0"
|
4198
4265
|
|
4199
|
-
eslint@8.
|
4200
|
-
version "8.
|
4201
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.
|
4202
|
-
integrity sha512-
|
4266
|
+
eslint@8.55.0:
|
4267
|
+
version "8.55.0"
|
4268
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.55.0.tgz#078cb7b847d66f2c254ea1794fa395bf8e7e03f8"
|
4269
|
+
integrity sha512-iyUUAM0PCKj5QpwGfmCAG9XXbZCWsqP/eWAWrG/W0umvjuLRBECwSFdt+rCntju0xEH7teIABPwXpahftIaTdA==
|
4203
4270
|
dependencies:
|
4204
4271
|
"@eslint-community/eslint-utils" "^4.2.0"
|
4205
4272
|
"@eslint-community/regexpp" "^4.6.1"
|
4206
|
-
"@eslint/eslintrc" "^2.1.
|
4207
|
-
"@eslint/js" "8.
|
4208
|
-
"@humanwhocodes/config-array" "^0.11.
|
4273
|
+
"@eslint/eslintrc" "^2.1.4"
|
4274
|
+
"@eslint/js" "8.55.0"
|
4275
|
+
"@humanwhocodes/config-array" "^0.11.13"
|
4209
4276
|
"@humanwhocodes/module-importer" "^1.0.1"
|
4210
4277
|
"@nodelib/fs.walk" "^1.2.8"
|
4278
|
+
"@ungap/structured-clone" "^1.2.0"
|
4211
4279
|
ajv "^6.12.4"
|
4212
4280
|
chalk "^4.0.0"
|
4213
4281
|
cross-spawn "^7.0.2"
|
@@ -4758,11 +4826,16 @@ flow-parser@0.*:
|
|
4758
4826
|
resolved "https://registry.npmjs.org/flow-parser/-/flow-parser-0.208.0.tgz"
|
4759
4827
|
integrity sha512-nuoC/kw8BH0gw7ykHNlKJVvtQWh/j5+CE3P/54RBMy63IoGlj9ScTQOC1ntLzwnnfzm9gT5OOukWG0TKrgKyug==
|
4760
4828
|
|
4761
|
-
follow-redirects@^1.0.0
|
4829
|
+
follow-redirects@^1.0.0:
|
4762
4830
|
version "1.15.2"
|
4763
4831
|
resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz"
|
4764
4832
|
integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==
|
4765
4833
|
|
4834
|
+
follow-redirects@^1.15.0:
|
4835
|
+
version "1.15.3"
|
4836
|
+
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.3.tgz#fe2f3ef2690afce7e82ed0b44db08165b207123a"
|
4837
|
+
integrity sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==
|
4838
|
+
|
4766
4839
|
for-in@^1.0.2:
|
4767
4840
|
version "1.0.2"
|
4768
4841
|
resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz"
|
@@ -5224,10 +5297,10 @@ html-webpack-plugin@^5.1.0:
|
|
5224
5297
|
pretty-error "^4.0.0"
|
5225
5298
|
tapable "^2.0.0"
|
5226
5299
|
|
5227
|
-
html-webpack-plugin@^5.5.
|
5228
|
-
version "5.5.
|
5229
|
-
resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.5.
|
5230
|
-
integrity sha512-
|
5300
|
+
html-webpack-plugin@^5.5.4:
|
5301
|
+
version "5.5.4"
|
5302
|
+
resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.5.4.tgz#517a48e6f046ff1ae1a172c983cd993eb79d2f6a"
|
5303
|
+
integrity sha512-3wNSaVVxdxcu0jd4FpQFoICdqgxs4zIQQvj+2yQKFfBOnLETQ6X5CDWdeasuGlSsooFlMkEioWDTqBv1wvw5Iw==
|
5231
5304
|
dependencies:
|
5232
5305
|
"@types/html-minifier-terser" "^6.0.0"
|
5233
5306
|
html-minifier-terser "^6.0.2"
|
@@ -7347,10 +7420,10 @@ prettier-linter-helpers@^1.0.0:
|
|
7347
7420
|
dependencies:
|
7348
7421
|
fast-diff "^1.1.2"
|
7349
7422
|
|
7350
|
-
prettier@3.
|
7351
|
-
version "3.
|
7352
|
-
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.
|
7353
|
-
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==
|
7354
7427
|
|
7355
7428
|
"prettier@^1.18.2 || ^2.0.0":
|
7356
7429
|
version "2.8.8"
|
@@ -7418,6 +7491,11 @@ proxy-addr@~2.0.7:
|
|
7418
7491
|
forwarded "0.2.0"
|
7419
7492
|
ipaddr.js "1.9.1"
|
7420
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
|
+
|
7421
7499
|
ps-list@^6.3.0:
|
7422
7500
|
version "6.3.0"
|
7423
7501
|
resolved "https://registry.npmjs.org/ps-list/-/ps-list-6.3.0.tgz"
|
@@ -7812,10 +7890,10 @@ sass-loader@13.3.2:
|
|
7812
7890
|
dependencies:
|
7813
7891
|
neo-async "^2.6.2"
|
7814
7892
|
|
7815
|
-
sass@1.
|
7816
|
-
version "1.
|
7817
|
-
resolved "https://registry.yarnpkg.com/sass/-/sass-1.
|
7818
|
-
integrity sha512-
|
7893
|
+
sass@1.69.5:
|
7894
|
+
version "1.69.5"
|
7895
|
+
resolved "https://registry.yarnpkg.com/sass/-/sass-1.69.5.tgz#23e18d1c757a35f2e52cc81871060b9ad653dfde"
|
7896
|
+
integrity sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==
|
7819
7897
|
dependencies:
|
7820
7898
|
chokidar ">=3.0.0 <4.0.0"
|
7821
7899
|
immutable "^4.0.0"
|
@@ -8944,10 +9022,10 @@ vue-style-loader@^4.1.0, vue-style-loader@^4.1.3:
|
|
8944
9022
|
hash-sum "^1.0.2"
|
8945
9023
|
loader-utils "^1.0.2"
|
8946
9024
|
|
8947
|
-
vue-template-compiler@2.7.
|
8948
|
-
version "2.7.
|
8949
|
-
resolved "https://registry.
|
8950
|
-
integrity sha512-
|
9025
|
+
vue-template-compiler@2.7.15:
|
9026
|
+
version "2.7.15"
|
9027
|
+
resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.7.15.tgz#ec88ba8ceafe0f17a528b89c57e01e02da92b0de"
|
9028
|
+
integrity sha512-yQxjxMptBL7UAog00O8sANud99C6wJF+7kgbcwqkvA38vCGF7HWE66w0ZFnS/kX5gSoJr/PQ4/oS3Ne2pW37Og==
|
8951
9029
|
dependencies:
|
8952
9030
|
de-indent "^1.0.2"
|
8953
9031
|
he "^1.2.0"
|
@@ -8957,7 +9035,15 @@ vue-template-es2015-compiler@^1.9.0:
|
|
8957
9035
|
resolved "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz"
|
8958
9036
|
integrity sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==
|
8959
9037
|
|
8960
|
-
vue@2.7.
|
9038
|
+
vue@2.7.15:
|
9039
|
+
version "2.7.15"
|
9040
|
+
resolved "https://registry.yarnpkg.com/vue/-/vue-2.7.15.tgz#94cd34e6e9f22cd2d35a02143f96a5beac1c1f54"
|
9041
|
+
integrity sha512-a29fsXd2G0KMRqIFTpRgpSbWaNBK3lpCTOLuGLEDnlHWdjB8fwl6zyYZ8xCrqkJdatwZb4mGHiEfJjnw0Q6AwQ==
|
9042
|
+
dependencies:
|
9043
|
+
"@vue/compiler-sfc" "2.7.15"
|
9044
|
+
csstype "^3.1.0"
|
9045
|
+
|
9046
|
+
vue@^2.6.14:
|
8961
9047
|
version "2.7.14"
|
8962
9048
|
resolved "https://registry.npmjs.org/vue/-/vue-2.7.14.tgz"
|
8963
9049
|
integrity sha512-b2qkFyOM0kwqWFuQmgd4o+uHGU7T+2z3T+WQp8UBjADfEv2n4FEMffzBmCKNP0IGzOEEfYjvtcC62xaSKeQDrQ==
|
@@ -9091,10 +9177,10 @@ webpack-virtual-modules@^0.4.2:
|
|
9091
9177
|
resolved "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz"
|
9092
9178
|
integrity sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==
|
9093
9179
|
|
9094
|
-
webpack@5.
|
9095
|
-
version "5.
|
9096
|
-
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.
|
9097
|
-
integrity sha512-
|
9180
|
+
webpack@5.89.0:
|
9181
|
+
version "5.89.0"
|
9182
|
+
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.89.0.tgz#56b8bf9a34356e93a6625770006490bf3a7f32dc"
|
9183
|
+
integrity sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==
|
9098
9184
|
dependencies:
|
9099
9185
|
"@types/eslint-scope" "^3.7.3"
|
9100
9186
|
"@types/estree" "^1.0.0"
|
@@ -1,18 +1,19 @@
|
|
1
1
|
{
|
2
2
|
"name": "widget",
|
3
|
-
"version": "5.
|
3
|
+
"version": "5.13.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.13.0",
|
10
|
+
"@astrouxds/astro-web-components": "7.19.1",
|
11
|
+
"vue": "2.7.15",
|
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.0",
|
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",
|
@@ -21,15 +22,15 @@
|
|
21
22
|
"@vue/eslint-config-prettier": "8.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.0.
|
27
|
-
"eslint-plugin-vue": "9.
|
28
|
-
"prettier": "3.
|
29
|
-
"sass": "1.
|
25
|
+
"eslint": "8.55.0",
|
26
|
+
"eslint-config-prettier": "9.1.0",
|
27
|
+
"eslint-plugin-prettier": "5.0.1",
|
28
|
+
"eslint-plugin-vue": "9.19.2",
|
29
|
+
"prettier": "3.1.1",
|
30
|
+
"sass": "1.69.5",
|
30
31
|
"sass-loader": "13.3.2",
|
31
32
|
"vue-cli-plugin-vuetify": "2.5.8",
|
32
|
-
"vue-template-compiler": "2.7.
|
33
|
-
"webpack": "5.
|
33
|
+
"vue-template-compiler": "2.7.15",
|
34
|
+
"webpack": "5.89.0"
|
34
35
|
}
|
35
36
|
}
|