openc3-cosmos-demo 5.5.1 → 5.5.2.pre.beta0.20230315041141
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/targets/SYSTEM/procedures/interactive.rb +2 -0
- data/tools/widgets/BigWidget/BigWidget.umd.min.js +2 -2
- data/tools/widgets/BigWidget/BigWidget.umd.min.js.map +1 -1
- data/tools/widgets/HelloworldWidget/HelloworldWidget.umd.min.js +1 -1
- data/tools/widgets/HelloworldWidget/HelloworldWidget.umd.min.js.map +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d68b184dd454d8f36558554f50a6aea6e01add20919215d8514e35612c3a709d
|
4
|
+
data.tar.gz: 393df363aa79e1f77ed8f87da87f060e8d26745ab576d6bb67635688008a2ad7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0020462c6750d25adbe3349ce426a7f9688727eaff209cfd11ccfe813c9fc5912cf6d2a994120b3f2081875411768542c8a3c3e74375d0ad46d195c0f7c25219
|
7
|
+
data.tar.gz: 9f2adff2d4d1c17d658d3f33efa3781c559102bece6cf5b653a5485e802006cf85990f9a773b01d15763f6831f04e987a79f4aef834b9ff2189a2e351b88553d
|
@@ -10,6 +10,8 @@ answer = combo_box("This is a combo box with info & details", 'one', 'two', 'thr
|
|
10
10
|
puts "answer:#{answer}"
|
11
11
|
answer = combo_box("This is a combo box", 'one', 'two', 'three', text_color: 'blue', background_color: 'grey', font_size: 20, font_family: 'courier', details: "Some more stuff")
|
12
12
|
puts "answer:#{answer}"
|
13
|
+
answer = combo_box("This is a multi-select combo box", 'one', 'two', 'three', multiple: true)
|
14
|
+
puts "answer:#{answer} len:#{answer.length} [0]:#{answer[0]}"
|
13
15
|
answer = prompt("This is a test", text_color: 'blue', background_color: 'grey', font_size: 20, font_family: 'courier', informative: "Informative text", details: "Some more stuff")
|
14
16
|
puts "answer:#{answer}"
|
15
17
|
answer = prompt("This is a test", font_size: 30, details: "Some more stuff", informative: nil)
|