openc3-cosmos-demo 5.5.1 → 5.5.2.pre.beta0.20230315041141

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 375902608394fe2ed9bdf8aa85422c89039e23a702a2c6b97292cc17839f13e5
4
- data.tar.gz: cf4d41758c383312d3e0eea75e023cdd003cb01ade1b5f51327f3247c2bdac9e
3
+ metadata.gz: d68b184dd454d8f36558554f50a6aea6e01add20919215d8514e35612c3a709d
4
+ data.tar.gz: 393df363aa79e1f77ed8f87da87f060e8d26745ab576d6bb67635688008a2ad7
5
5
  SHA512:
6
- metadata.gz: 74cb979d5ceff4abe480c18d49c34183117644f7168c17a8ba67bc40c93672f465876419ac3a102d93d097c81067ce78780c5e1a7f9e173ce46e06c59254a7d2
7
- data.tar.gz: 279dd234d248d14fa578c8b7a9f0ec7642d71d3b8b7f7dd9b0b77b493a02453472124b1e355b479377bddca16747ce3d7c30602c79e146ce05b123a1ca317a42
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)