bec-widgets 2.7.0__py3-none-any.whl → 2.7.1__py3-none-any.whl

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.
CHANGELOG.md CHANGED
@@ -1,6 +1,28 @@
1
1
  # CHANGELOG
2
2
 
3
3
 
4
+ ## v2.7.1 (2025-05-26)
5
+
6
+ ### Bug Fixes
7
+
8
+ - **signal-combobox**: Bug fix in signal combobox that crashed upon switching from device to signal
9
+ input
10
+ ([`1a4eb1d`](https://github.com/bec-project/bec_widgets/commit/1a4eb1db67ff6cfc45ce91cd264ae2818a57230a))
11
+
12
+ - **signal-line-edit**: Fix signal_line_edit validity check; closes #610
13
+ ([`ec740d3`](https://github.com/bec-project/bec_widgets/commit/ec740d31fdea561f1ed9274ea79b7be3b6ecba11))
14
+
15
+ ### Refactoring
16
+
17
+ - Add rpc interface to signal_line_edit/combobox; add user access methods
18
+ ([`a8811c9`](https://github.com/bec-project/bec_widgets/commit/a8811c9d914feacf08f2f1f1aaf16302cd320ba3))
19
+
20
+ ### Testing
21
+
22
+ - **input-widgets**: Add e2e tests to test widget inputs with demo config of bec.
23
+ ([`f57950c`](https://github.com/bec-project/bec_widgets/commit/f57950c4e3b0b5eab7bc303eaead89f7e50e2804))
24
+
25
+
4
26
  ## v2.7.0 (2025-05-26)
5
27
 
6
28
  ### Bug Fixes
PKG-INFO CHANGED
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bec_widgets
3
- Version: 2.7.0
3
+ Version: 2.7.1
4
4
  Summary: BEC Widgets
5
5
  Project-URL: Bug Tracker, https://gitlab.psi.ch/bec/bec_widgets/issues
6
6
  Project-URL: Homepage, https://gitlab.psi.ch/bec/bec_widgets
bec_widgets/cli/client.py CHANGED
@@ -51,6 +51,8 @@ _Widgets = {
51
51
  "RingProgressBar": "RingProgressBar",
52
52
  "ScanControl": "ScanControl",
53
53
  "ScatterWaveform": "ScatterWaveform",
54
+ "SignalComboBox": "SignalComboBox",
55
+ "SignalLineEdit": "SignalLineEdit",
54
56
  "StopButton": "StopButton",
55
57
  "TextBox": "TextBox",
56
58
  "VSCodeEditor": "VSCodeEditor",
@@ -939,9 +941,22 @@ class DeviceComboBox(RPCBase):
939
941
  """Combobox widget for device input with autocomplete for device names."""
940
942
 
941
943
  @rpc_call
942
- def remove(self):
944
+ def set_device(self, device: "str"):
943
945
  """
944
- Cleanup the BECConnector
946
+ Set the device.
947
+
948
+ Args:
949
+ device (str): Default name.
950
+ """
951
+
952
+ @property
953
+ @rpc_call
954
+ def devices(self) -> "list[str]":
955
+ """
956
+ Get the list of devices for the applied filters.
957
+
958
+ Returns:
959
+ list[str]: List of devices.
945
960
  """
946
961
 
947
962
 
@@ -959,9 +974,32 @@ class DeviceLineEdit(RPCBase):
959
974
  """Line edit widget for device input with autocomplete for device names."""
960
975
 
961
976
  @rpc_call
962
- def remove(self):
977
+ def set_device(self, device: "str"):
963
978
  """
964
- Cleanup the BECConnector
979
+ Set the device.
980
+
981
+ Args:
982
+ device (str): Default name.
983
+ """
984
+
985
+ @property
986
+ @rpc_call
987
+ def devices(self) -> "list[str]":
988
+ """
989
+ Get the list of devices for the applied filters.
990
+
991
+ Returns:
992
+ list[str]: List of devices.
993
+ """
994
+
995
+ @property
996
+ @rpc_call
997
+ def _is_valid_input(self) -> bool:
998
+ """
999
+ Check if the current value is a valid device name.
1000
+
1001
+ Returns:
1002
+ bool: True if the current value is a valid device name, False otherwise.
965
1003
  """
966
1004
 
967
1005
 
@@ -3347,6 +3385,80 @@ class ScatterWaveform(RPCBase):
3347
3385
  """
3348
3386
 
3349
3387
 
3388
+ class SignalComboBox(RPCBase):
3389
+ """Line edit widget for device input with autocomplete for device names."""
3390
+
3391
+ @rpc_call
3392
+ def set_signal(self, signal: str):
3393
+ """
3394
+ Set the signal.
3395
+
3396
+ Args:
3397
+ signal (str): signal name.
3398
+ """
3399
+
3400
+ @rpc_call
3401
+ def set_device(self, device: str | None):
3402
+ """
3403
+ Set the device. If device is not valid, device will be set to None which happens
3404
+
3405
+ Args:
3406
+ device(str): device name.
3407
+ """
3408
+
3409
+ @property
3410
+ @rpc_call
3411
+ def signals(self) -> list[str]:
3412
+ """
3413
+ Get the list of device signals for the applied filters.
3414
+
3415
+ Returns:
3416
+ list[str]: List of device signals.
3417
+ """
3418
+
3419
+
3420
+ class SignalLineEdit(RPCBase):
3421
+ """Line edit widget for device input with autocomplete for device names."""
3422
+
3423
+ @property
3424
+ @rpc_call
3425
+ def _is_valid_input(self) -> bool:
3426
+ """
3427
+ Check if the current value is a valid device name.
3428
+
3429
+ Returns:
3430
+ bool: True if the current value is a valid device name, False otherwise.
3431
+ """
3432
+
3433
+ @rpc_call
3434
+ def set_signal(self, signal: str):
3435
+ """
3436
+ Set the signal.
3437
+
3438
+ Args:
3439
+ signal (str): signal name.
3440
+ """
3441
+
3442
+ @rpc_call
3443
+ def set_device(self, device: str | None):
3444
+ """
3445
+ Set the device. If device is not valid, device will be set to None which happens
3446
+
3447
+ Args:
3448
+ device(str): device name.
3449
+ """
3450
+
3451
+ @property
3452
+ @rpc_call
3453
+ def signals(self) -> list[str]:
3454
+ """
3455
+ Get the list of device signals for the applied filters.
3456
+
3457
+ Returns:
3458
+ list[str]: List of device signals.
3459
+ """
3460
+
3461
+
3350
3462
  class StopButton(RPCBase):
3351
3463
  """A button that stops the current scan."""
3352
3464
 
@@ -200,7 +200,13 @@ class DMMock:
200
200
  self.devices = DeviceContainer()
201
201
  self.enabled_devices = [device for device in self.devices if device.enabled]
202
202
 
203
- def add_devives(self, devices: list):
203
+ def add_devices(self, devices: list):
204
+ """
205
+ Add devices to the DeviceContainer.
206
+
207
+ Args:
208
+ devices (list): List of device instances to add.
209
+ """
204
210
  for device in devices:
205
211
  self.devices[device.name] = device
206
212
 
@@ -79,7 +79,7 @@ class DeviceSignalInputBase(BECWidget):
79
79
  @Slot(str)
80
80
  def set_device(self, device: str | None):
81
81
  """
82
- Set the device. If device is not valid, device will be set to None which happpens
82
+ Set the device. If device is not valid, device will be set to None which happens
83
83
 
84
84
  Args:
85
85
  device(str): device name.
@@ -112,9 +112,12 @@ class DeviceSignalInputBase(BECWidget):
112
112
  # See above convention for Signals and ComputedSignals
113
113
  if isinstance(device, Signal):
114
114
  self._signals = [self._device]
115
- FilterIO.set_selection(widget=self, selection=[self._device])
115
+ self._hinted_signals = [self._device]
116
+ self._normal_signals = []
117
+ self._config_signals = []
118
+ FilterIO.set_selection(widget=self, selection=self._signals)
116
119
  return
117
- device_info = device._info["signals"]
120
+ device_info = device._info.get("signals", {})
118
121
 
119
122
  def _update(kind: Kind):
120
123
  return [
@@ -22,10 +22,14 @@ class DeviceComboBox(DeviceInputBase, QComboBox):
22
22
  config: Device input configuration.
23
23
  gui_id: GUI ID.
24
24
  device_filter: Device filter, name of the device class from BECDeviceFilter and BECReadoutPriority. Check DeviceInputBase for more details.
25
+ readout_priority_filter: Readout priority filter, name of the readout priority class from BECDeviceFilter and BECReadoutPriority. Check DeviceInputBase for more details.
26
+ available_devices: List of available devices, if passed, it sets apply filters to false and device/readout priority filters will not be applied.
25
27
  default: Default device name.
26
28
  arg_name: Argument name, can be used for the other widgets which has to call some other function in bec using correct argument names.
27
29
  """
28
30
 
31
+ USER_ACCESS = ["set_device", "devices"]
32
+
29
33
  ICON_NAME = "list_alt"
30
34
  PLUGIN = True
31
35
 
@@ -24,11 +24,15 @@ class DeviceLineEdit(DeviceInputBase, QLineEdit):
24
24
  client: BEC client object.
25
25
  config: Device input configuration.
26
26
  gui_id: GUI ID.
27
- device_filter: Device filter, name of the device class from BECDeviceFilter and ReadoutPriority. Check DeviceInputBase for more details.
27
+ device_filter: Device filter, name of the device class from BECDeviceFilter and BECReadoutPriority. Check DeviceInputBase for more details.
28
+ readout_priority_filter: Readout priority filter, name of the readout priority class from BECDeviceFilter and BECReadoutPriority. Check DeviceInputBase for more details.
29
+ available_devices: List of available devices, if passed, it sets apply filters to false and device/readout priority filters will not be applied.
28
30
  default: Default device name.
29
31
  arg_name: Argument name, can be used for the other widgets which has to call some other function in bec using correct argument names.
30
32
  """
31
33
 
34
+ USER_ACCESS = ["set_device", "devices", "_is_valid_input"]
35
+
32
36
  device_selected = Signal(str)
33
37
  device_config_update = Signal()
34
38
 
@@ -51,7 +55,7 @@ class DeviceLineEdit(DeviceInputBase, QLineEdit):
51
55
  **kwargs,
52
56
  ):
53
57
  self._callback_id = None
54
- self._is_valid_input = False
58
+ self.__is_valid_input = False
55
59
  self._accent_colors = get_accent_colors()
56
60
  super().__init__(parent=parent, client=client, gui_id=gui_id, config=config, **kwargs)
57
61
  self.completer = QCompleter(self)
@@ -95,6 +99,20 @@ class DeviceLineEdit(DeviceInputBase, QLineEdit):
95
99
  self.textChanged.connect(self.check_validity)
96
100
  self.check_validity(self.text())
97
101
 
102
+ @property
103
+ def _is_valid_input(self) -> bool:
104
+ """
105
+ Check if the current value is a valid device name.
106
+
107
+ Returns:
108
+ bool: True if the current value is a valid device name, False otherwise.
109
+ """
110
+ return self.__is_valid_input
111
+
112
+ @_is_valid_input.setter
113
+ def _is_valid_input(self, value: bool) -> None:
114
+ self.__is_valid_input = value
115
+
98
116
  def on_device_update(self, action: str, content: dict) -> None:
99
117
  """
100
118
  Callback for device update events. Triggers the device_update signal.
@@ -23,8 +23,11 @@ class SignalComboBox(DeviceSignalInputBase, QComboBox):
23
23
  arg_name: Argument name, can be used for the other widgets which has to call some other function in bec using correct argument names.
24
24
  """
25
25
 
26
+ USER_ACCESS = ["set_signal", "set_device", "signals"]
27
+
26
28
  ICON_NAME = "list_alt"
27
29
  PLUGIN = True
30
+ RPC = True
28
31
 
29
32
  device_signal_changed = Signal(str)
30
33
 
@@ -24,9 +24,12 @@ class SignalLineEdit(DeviceSignalInputBase, QLineEdit):
24
24
  arg_name: Argument name, can be used for the other widgets which has to call some other function in bec using correct argument names.
25
25
  """
26
26
 
27
+ USER_ACCESS = ["_is_valid_input", "set_signal", "set_device", "signals"]
28
+
27
29
  device_signal_changed = Signal(str)
28
30
 
29
31
  PLUGIN = True
32
+ RPC = True
30
33
  ICON_NAME = "vital_signs"
31
34
 
32
35
  def __init__(
@@ -41,7 +44,7 @@ class SignalLineEdit(DeviceSignalInputBase, QLineEdit):
41
44
  arg_name: str | None = None,
42
45
  **kwargs,
43
46
  ):
44
- self._is_valid_input = False
47
+ self.__is_valid_input = False
45
48
  super().__init__(parent=parent, client=client, gui_id=gui_id, config=config, **kwargs)
46
49
  self._accent_colors = get_accent_colors()
47
50
  self.completer = QCompleter(self)
@@ -65,8 +68,22 @@ class SignalLineEdit(DeviceSignalInputBase, QLineEdit):
65
68
  self.set_device(device)
66
69
  if default is not None:
67
70
  self.set_signal(default)
68
- self.textChanged.connect(self.validate_device)
69
- self.validate_device(self.text())
71
+ self.textChanged.connect(self.check_validity)
72
+ self.check_validity(self.text())
73
+
74
+ @property
75
+ def _is_valid_input(self) -> bool:
76
+ """
77
+ Check if the current value is a valid device name.
78
+
79
+ Returns:
80
+ bool: True if the current value is a valid device name, False otherwise.
81
+ """
82
+ return self.__is_valid_input
83
+
84
+ @_is_valid_input.setter
85
+ def _is_valid_input(self, value: bool) -> None:
86
+ self.__is_valid_input = value
70
87
 
71
88
  def get_current_device(self) -> object:
72
89
  """
@@ -131,6 +148,9 @@ if __name__ == "__main__": # pragma: no cover
131
148
  from qtpy.QtWidgets import QApplication, QVBoxLayout, QWidget
132
149
 
133
150
  from bec_widgets.utils.colors import set_theme
151
+ from bec_widgets.widgets.control.device_input.device_combobox.device_combobox import (
152
+ DeviceComboBox,
153
+ )
134
154
 
135
155
  app = QApplication([])
136
156
  set_theme("dark")
@@ -138,6 +158,12 @@ if __name__ == "__main__": # pragma: no cover
138
158
  widget.setFixedSize(200, 200)
139
159
  layout = QVBoxLayout()
140
160
  widget.setLayout(layout)
141
- layout.addWidget(SignalLineEdit(device="samx"))
161
+ device_line_edit = DeviceComboBox()
162
+ device_line_edit.filter_to_positioner = True
163
+ signal_line_edit = SignalLineEdit()
164
+ device_line_edit.device_selected.connect(signal_line_edit.set_device)
165
+
166
+ layout.addWidget(device_line_edit)
167
+ layout.addWidget(signal_line_edit)
142
168
  widget.show()
143
169
  app.exec_()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bec_widgets
3
- Version: 2.7.0
3
+ Version: 2.7.1
4
4
  Summary: BEC Widgets
5
5
  Project-URL: Bug Tracker, https://gitlab.psi.ch/bec/bec_widgets/issues
6
6
  Project-URL: Homepage, https://gitlab.psi.ch/bec/bec_widgets
@@ -2,11 +2,11 @@
2
2
  .gitlab-ci.yml,sha256=1nMYldzVk0tFkBWYTcUjumOrdSADASheWOAc0kOFDYs,9509
3
3
  .pylintrc,sha256=eeY8YwSI74oFfq6IYIbCqnx3Vk8ZncKaatv96n_Y8Rs,18544
4
4
  .readthedocs.yaml,sha256=ivqg3HTaOxNbEW3bzWh9MXAkrekuGoNdj0Mj3SdRYuw,639
5
- CHANGELOG.md,sha256=RnEXyJT_0vMFYeinWyayLtZF9IYbWRTRWvsguApDIFE,287017
5
+ CHANGELOG.md,sha256=6YbGceWS4rhFIeqFqswxqovoHKYmVEiYv9MUjt9L_OI,287860
6
6
  LICENSE,sha256=Daeiu871NcAp8uYi4eB_qHgvypG-HX0ioRQyQxFwjeg,1531
7
- PKG-INFO,sha256=q_orCUbgBKXQm6s-Bz7BhApp1xrvFBCvDxSO0uhFjlU,1273
7
+ PKG-INFO,sha256=Y_57lRMl_nuLmuqg18CxTycbI32aOzdupElg65WqfSQ,1273
8
8
  README.md,sha256=oY5Jc1uXehRASuwUJ0umin2vfkFh7tHF-LLruHTaQx0,3560
9
- pyproject.toml,sha256=DvXMh73EMRWBgfztGZvR9qx1bYkxiVBpN1yEbI2s0e8,2902
9
+ pyproject.toml,sha256=g_0rYxfWFe_V6RoaJwQtEAEz8MlETNPBzBRvlywaFf8,2902
10
10
  .git_hooks/pre-commit,sha256=n3RofIZHJl8zfJJIUomcMyYGFi_rwq4CC19z0snz3FI,286
11
11
  .github/pull_request_template.md,sha256=F_cJXzooWMFgMGtLK-7KeGcQt0B4AYFse5oN0zQ9p6g,801
12
12
  .github/ISSUE_TEMPLATE/bug_report.yml,sha256=WdRnt7HGxvsIBLzhkaOWNfg8IJQYa_oV9_F08Ym6znQ,1081
@@ -35,7 +35,7 @@ bec_widgets/assets/app_icons/bec_widgets_icon.png,sha256=K8dgGwIjalDh9PRHUsSQBqg
35
35
  bec_widgets/assets/app_icons/ui_loader_tile.png,sha256=qSK3XHqvnAVGV9Q0ulORcGFbXJ9LDq2uz8l9uTtMsNk,1812476
36
36
  bec_widgets/assets/app_icons/widget_launch_tile.png,sha256=bWsICHFfSe9-ESUj3AwlE95dDOea-f6M-s9fBapsxB4,2252911
37
37
  bec_widgets/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- bec_widgets/cli/client.py,sha256=9CMOUsZ9m98rOlolXKwIlv8jcC7FHBY7CiYxT-fjcYk,90925
38
+ bec_widgets/cli/client.py,sha256=GOlZajpUb1yMhAJgpsw8kjMFYIudA83l4jN7-XMSsvA,93483
39
39
  bec_widgets/cli/client_utils.py,sha256=F2hyt--jL53bN8NoWifNUMqwwx5FbpS6I1apERdTRzM,18114
40
40
  bec_widgets/cli/generate_cli.py,sha256=xcPNyJoa3IjddX1yEDY45tT-Cs4jO5cQLUmcEubKs44,10976
41
41
  bec_widgets/cli/server.py,sha256=bhI5qj5vhg3qy4tkL1R2Bk_wcf-gjprTIAbVFH6BKXQ,5695
@@ -58,7 +58,7 @@ bec_widgets/examples/plugin_example_pyside/tictactoe.py,sha256=s3rCurXloVcmMdzZi
58
58
  bec_widgets/examples/plugin_example_pyside/tictactoeplugin.py,sha256=MFMwONn4EZ3V8DboEG4I3BXpURE9JDbKB7XTzzfZl5w,1978
59
59
  bec_widgets/examples/plugin_example_pyside/tictactoetaskmenu.py,sha256=SiJaoX3OYA8YMkSwU1d7KEfSUjQQUsQgpRAxSSlr8oQ,2376
60
60
  bec_widgets/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
- bec_widgets/tests/utils.py,sha256=-aBZ9LfzN1rWUarT5FZusdjY4GpRI2FIx2zfxF9STLY,6958
61
+ bec_widgets/tests/utils.py,sha256=DSzi6Z70fospjfyx0Uz5bWIDwaAzKbzcHfWPW0YyxzQ,7102
62
62
  bec_widgets/utils/__init__.py,sha256=1930ji1Jj6dVuY81Wd2kYBhHYNV-2R0bN_L4o9zBj1U,533
63
63
  bec_widgets/utils/bec_connector.py,sha256=ATOSyZqryn1QHPc7aotiDnUtzFhlj_gmcukMT_pqjHQ,19272
64
64
  bec_widgets/utils/bec_designer.py,sha256=ehNl_i743rijmhPiIGNd1bihE7-l4oJzTVoa4yjPjls,5426
@@ -177,14 +177,14 @@ bec_widgets/widgets/control/device_control/positioner_group/register_positioner_
177
177
  bec_widgets/widgets/control/device_input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
178
178
  bec_widgets/widgets/control/device_input/base_classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
179
179
  bec_widgets/widgets/control/device_input/base_classes/device_input_base.py,sha256=r4DwWQz2wwNQ3Uswzdy12MGycV7pFrE_Zv4h_2G5IRA,15915
180
- bec_widgets/widgets/control/device_input/base_classes/device_signal_input_base.py,sha256=rauBYZ2_5mXkTFgVk5d77g8D7b_ugK7g0By7a5YVmu0,9139
180
+ bec_widgets/widgets/control/device_input/base_classes/device_signal_input_base.py,sha256=oylgVQ2XyN7CWrI_Aj4xtKT5tac41JRpGvccaY0SUHw,9271
181
181
  bec_widgets/widgets/control/device_input/device_combobox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
182
182
  bec_widgets/widgets/control/device_input/device_combobox/device_combo_box.pyproject,sha256=wI2eXR5ky_IM9-BCHJnH_9CEqYcZwIuLcgitSEr8OJU,40
183
183
  bec_widgets/widgets/control/device_input/device_combobox/device_combo_box_plugin.py,sha256=E8LD9T4O2w621q25uHqBqZLDiQ6zpMR25ZDuf51jrPw,1434
184
- bec_widgets/widgets/control/device_input/device_combobox/device_combobox.py,sha256=5HZBYWM9rhqisd8G0p2Scdzg7-WC_u8ob6fj0hpuApM,6131
184
+ bec_widgets/widgets/control/device_input/device_combobox/device_combobox.py,sha256=babUAPI8St58FV13b4RZJ10DXcj-2mlYcNKKsdpB7Hs,6507
185
185
  bec_widgets/widgets/control/device_input/device_combobox/register_device_combo_box.py,sha256=elw4M4xfIFWe8C0MkdqqqyfnyOVrdl0g0j6bqwOU1GE,526
186
186
  bec_widgets/widgets/control/device_input/device_line_edit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
- bec_widgets/widgets/control/device_input/device_line_edit/device_line_edit.py,sha256=NRCqE0o30caosgmMTIWCWgqbpDe1EXThR--XJrHP9rI,6620
187
+ bec_widgets/widgets/control/device_input/device_line_edit/device_line_edit.py,sha256=k87NtUD2TUB4c6-Ks-eZgafWbjTwbk0RKiqf9-OkjMk,7415
188
188
  bec_widgets/widgets/control/device_input/device_line_edit/device_line_edit.pyproject,sha256=tqAYXRbxsHR41MwqmAxvfq1CFeZ1IRv84whUG67HjjE,41
189
189
  bec_widgets/widgets/control/device_input/device_line_edit/device_line_edit_plugin.py,sha256=LoG1VyO21pZ9dbnDVU03xzqgP8P1oEmdeotlkYs_pE8,1466
190
190
  bec_widgets/widgets/control/device_input/device_line_edit/register_device_line_edit.py,sha256=NTB3HghW5S7NvUlPe_k_uFYQLWPYgjgln2bAYipfkpM,527
@@ -192,10 +192,10 @@ bec_widgets/widgets/control/device_input/signal_combobox/__init__.py,sha256=47DE
192
192
  bec_widgets/widgets/control/device_input/signal_combobox/register_signal_combo_box.py,sha256=VEdFRUfLph7JE2arcnzHw8etsE-4wZkwyzlNLMJBsZk,526
193
193
  bec_widgets/widgets/control/device_input/signal_combobox/signal_combo_box.pyproject,sha256=xod6iyRD-WD0Uk6LWXjSxFJCQy-831pvTkKcw2FAdnM,33
194
194
  bec_widgets/widgets/control/device_input/signal_combobox/signal_combo_box_plugin.py,sha256=sstqm2KtyR5wwOIYJRbzOqHMq5_9ExKP-YS5qV5ACrA,1373
195
- bec_widgets/widgets/control/device_input/signal_combobox/signal_combobox.py,sha256=YuoI6E2tcc0ECd999h_HVlff3vWqrhpUsVbzt59OFyo,4567
195
+ bec_widgets/widgets/control/device_input/signal_combobox/signal_combobox.py,sha256=NCT0ql6KCe-YspoYKSv2py7JeqKBGJFU97q6UoG-Oxg,4641
196
196
  bec_widgets/widgets/control/device_input/signal_line_edit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
197
197
  bec_widgets/widgets/control/device_input/signal_line_edit/register_signal_line_edit.py,sha256=aQLTy_3gbji0vq5VvvAddHFimpwGGaMYJy5iGgX23aM,527
198
- bec_widgets/widgets/control/device_input/signal_line_edit/signal_line_edit.py,sha256=iqHC-XkzAMqvZDRNZQpHM10ZKA2Oyu1XozMOK5YuEDM,5169
198
+ bec_widgets/widgets/control/device_input/signal_line_edit/signal_line_edit.py,sha256=-y_Oy8A7pQVQbzjvHznGxTX-wCisP-4l5py7WOm1_EY,6008
199
199
  bec_widgets/widgets/control/device_input/signal_line_edit/signal_line_edit.pyproject,sha256=3NBnjBB6JRuF2W9-SR6x09KO1C2oB1IEV3VW__miIgI,34
200
200
  bec_widgets/widgets/control/device_input/signal_line_edit/signal_line_edit_plugin.py,sha256=t2VBGsbysCL6154Z5Ny5Nk2UWcURMGS-ibVKiRvYs6Y,1384
201
201
  bec_widgets/widgets/control/scan_control/__init__.py,sha256=IOfHl15vxb_uC6KN62-PeUzbBha_vQyqkkXbJ2HU674,38
@@ -404,8 +404,8 @@ bec_widgets/widgets/utility/visual/dark_mode_button/dark_mode_button.py,sha256=O
404
404
  bec_widgets/widgets/utility/visual/dark_mode_button/dark_mode_button.pyproject,sha256=Lbi9zb6HNlIq14k6hlzR-oz6PIFShBuF7QxE6d87d64,34
405
405
  bec_widgets/widgets/utility/visual/dark_mode_button/dark_mode_button_plugin.py,sha256=CzChz2SSETYsR8-36meqWnsXCT-FIy_J_xeU5coWDY8,1350
406
406
  bec_widgets/widgets/utility/visual/dark_mode_button/register_dark_mode_button.py,sha256=rMpZ1CaoucwobgPj1FuKTnt07W82bV1GaSYdoqcdMb8,521
407
- bec_widgets-2.7.0.dist-info/METADATA,sha256=q_orCUbgBKXQm6s-Bz7BhApp1xrvFBCvDxSO0uhFjlU,1273
408
- bec_widgets-2.7.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
409
- bec_widgets-2.7.0.dist-info/entry_points.txt,sha256=dItMzmwA1wizJ1Itx15qnfJ0ZzKVYFLVJ1voxT7K7D4,214
410
- bec_widgets-2.7.0.dist-info/licenses/LICENSE,sha256=Daeiu871NcAp8uYi4eB_qHgvypG-HX0ioRQyQxFwjeg,1531
411
- bec_widgets-2.7.0.dist-info/RECORD,,
407
+ bec_widgets-2.7.1.dist-info/METADATA,sha256=Y_57lRMl_nuLmuqg18CxTycbI32aOzdupElg65WqfSQ,1273
408
+ bec_widgets-2.7.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
409
+ bec_widgets-2.7.1.dist-info/entry_points.txt,sha256=dItMzmwA1wizJ1Itx15qnfJ0ZzKVYFLVJ1voxT7K7D4,214
410
+ bec_widgets-2.7.1.dist-info/licenses/LICENSE,sha256=Daeiu871NcAp8uYi4eB_qHgvypG-HX0ioRQyQxFwjeg,1531
411
+ bec_widgets-2.7.1.dist-info/RECORD,,
pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "bec_widgets"
7
- version = "2.7.0"
7
+ version = "2.7.1"
8
8
  description = "BEC Widgets"
9
9
  requires-python = ">=3.10"
10
10
  classifiers = [