openc3-cosmos-demo 5.5.1 → 5.5.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 375902608394fe2ed9bdf8aa85422c89039e23a702a2c6b97292cc17839f13e5
4
- data.tar.gz: cf4d41758c383312d3e0eea75e023cdd003cb01ade1b5f51327f3247c2bdac9e
3
+ metadata.gz: dc2738b6f1bad4eae1536aace0e87f2fa09185618a431a0a41e87035adca40fa
4
+ data.tar.gz: 246ff45f251f462ef9a00890c111c40d034c116efd23a5514391a459e59b3e2f
5
5
  SHA512:
6
- metadata.gz: 74cb979d5ceff4abe480c18d49c34183117644f7168c17a8ba67bc40c93672f465876419ac3a102d93d097c81067ce78780c5e1a7f9e173ce46e06c59254a7d2
7
- data.tar.gz: 279dd234d248d14fa578c8b7a9f0ec7642d71d3b8b7f7dd9b0b77b493a02453472124b1e355b479377bddca16747ce3d7c30602c79e146ce05b123a1ca317a42
6
+ metadata.gz: 512bb79994c26f20ff54885f789fdab1664f0131116df00e7626b71425af4559e01f912930e1aeb1bde691a8754561ecb5dbda8c50f0945646aefe87d2e9b3f6
7
+ data.tar.gz: 89e027be21b73c953a3698257bd737efc5711e16329fd71035f84431eb01ef2f691e78f81162e29deb32dd5cb08caea5267a5b095f9becd3b524534ed5f53e55
@@ -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)