bec-widgets 0.105.0__py3-none-any.whl → 0.106.0__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,5 +1,19 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v0.106.0 (2024-09-05)
4
+
5
+ ### Feature
6
+
7
+ * feat(plot_base): toggle to switch outer axes for plotting widgets ([`06d7741`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/06d7741622aea8556208cd17cae521c37333f8b6))
8
+
9
+ ### Refactor
10
+
11
+ * refactor: use DAPComboBox in curve_dialog selection ([`998a745`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/998a7451335b1b35c3e18691d3bab8d882e2d30b))
12
+
13
+ ### Test
14
+
15
+ * test: fix tests ([`6b15abc`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/6b15abcc73170cb49292741a619a08ee615e6250))
16
+
3
17
  ## v0.105.0 (2024-09-04)
4
18
 
5
19
  ### Feature
@@ -143,15 +157,3 @@
143
157
  * fix(toolbar): widget action added ([`2efd487`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/2efd48736cbe04e84533f7933c552ea8274e2162))
144
158
 
145
159
  * fix(reset_button): reset button added ([`6ed1efc`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/6ed1efc6af193908f70aa37fb73157d2ca6a62f4))
146
-
147
- * fix(abort_button): abort button added; some minor fixes ([`a568633`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/a568633c3206a8c26069d140f2d9a548bf4124b0))
148
-
149
- ## v0.99.11 (2024-08-29)
150
-
151
- ### Fix
152
-
153
- * fix(resume_button): resume button added ([`8be8295`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/8be8295b2b38f36da210ab36c5da6d0a00e330cc))
154
-
155
- ### Refactor
156
-
157
- * refactor(icons): general app icon changed; jupyter app icon changed to material icon ([`5d73fe4`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/5d73fe455a568ad40a9fadc5ce6e249d782ad20d))
PKG-INFO CHANGED
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bec_widgets
3
- Version: 0.105.0
3
+ Version: 0.106.0
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
@@ -1653,6 +1653,15 @@ class BECPlotBase(RPCBase):
1653
1653
  y(bool): Show grid on the y-axis.
1654
1654
  """
1655
1655
 
1656
+ @rpc_call
1657
+ def set_outer_axes(self, show: "bool" = True):
1658
+ """
1659
+ Set the outer axes of the plot widget.
1660
+
1661
+ Args:
1662
+ show(bool): Show the outer axes.
1663
+ """
1664
+
1656
1665
  @rpc_call
1657
1666
  def lock_aspect_ratio(self, lock):
1658
1667
  """
@@ -2317,7 +2326,7 @@ class DapComboBox(RPCBase):
2317
2326
  @rpc_call
2318
2327
  def select_y_axis(self, y_axis: str):
2319
2328
  """
2320
- Receive update signal for the y axis.
2329
+ Slot to update the y axis.
2321
2330
 
2322
2331
  Args:
2323
2332
  y_axis(str): Y axis.
@@ -2326,19 +2335,19 @@ class DapComboBox(RPCBase):
2326
2335
  @rpc_call
2327
2336
  def select_x_axis(self, x_axis: str):
2328
2337
  """
2329
- Receive update signal for the x axis.
2338
+ Slot to update the x axis.
2330
2339
 
2331
2340
  Args:
2332
2341
  x_axis(str): X axis.
2333
2342
  """
2334
2343
 
2335
2344
  @rpc_call
2336
- def select_fit(self, fit_name: str | None):
2345
+ def select_fit_model(self, fit_name: str | None):
2337
2346
  """
2338
- Select current fit.
2347
+ Slot to update the fit model.
2339
2348
 
2340
- Args:
2341
- default_device(str): Default device name.
2349
+ Args:
2350
+ default_device(str): Default device name.
2342
2351
  """
2343
2352
 
2344
2353
 
@@ -31,6 +31,7 @@ class AxisSettings(SettingWidget):
31
31
 
32
32
  # Top Box
33
33
  WidgetIO.set_value(self.ui.plot_title, axis_config["title"])
34
+ self.ui.switch_outer_axes.checked = axis_config["outer_axes"]
34
35
 
35
36
  # X Axis Box
36
37
  WidgetIO.set_value(self.ui.x_label, axis_config["x_label"])
@@ -63,6 +64,7 @@ class AxisSettings(SettingWidget):
63
64
  @Slot()
64
65
  def accept_changes(self):
65
66
  title = WidgetIO.get_value(self.ui.plot_title)
67
+ outer_axes = self.ui.switch_outer_axes.checked
66
68
 
67
69
  # X Axis
68
70
  x_label = WidgetIO.get_value(self.ui.x_label)
@@ -86,3 +88,4 @@ class AxisSettings(SettingWidget):
86
88
  y_lim=y_lim,
87
89
  )
88
90
  self.target_widget.set_grid(x_grid, y_grid)
91
+ self.target_widget.set_outer_axes(outer_axes)
@@ -6,8 +6,8 @@
6
6
  <rect>
7
7
  <x>0</x>
8
8
  <y>0</y>
9
- <width>417</width>
10
- <height>250</height>
9
+ <width>427</width>
10
+ <height>270</height>
11
11
  </rect>
12
12
  </property>
13
13
  <property name="minimumSize">
@@ -26,7 +26,28 @@
26
26
  <string>Form</string>
27
27
  </property>
28
28
  <layout class="QGridLayout" name="gridLayout">
29
- <item row="1" column="1">
29
+ <item row="0" column="0" colspan="2">
30
+ <layout class="QHBoxLayout" name="horizontalLayout">
31
+ <item>
32
+ <widget class="QLabel" name="plot_title_label">
33
+ <property name="text">
34
+ <string>Plot Title</string>
35
+ </property>
36
+ </widget>
37
+ </item>
38
+ <item>
39
+ <widget class="QLineEdit" name="plot_title"/>
40
+ </item>
41
+ </layout>
42
+ </item>
43
+ <item row="1" column="0">
44
+ <widget class="QLabel" name="label_outer_axes">
45
+ <property name="text">
46
+ <string>Outer Axes</string>
47
+ </property>
48
+ </widget>
49
+ </item>
50
+ <item row="2" column="1">
30
51
  <widget class="QGroupBox" name="y_axis_box">
31
52
  <property name="title">
32
53
  <string>Y Axis</string>
@@ -120,7 +141,7 @@
120
141
  </layout>
121
142
  </widget>
122
143
  </item>
123
- <item row="1" column="0">
144
+ <item row="2" column="0">
124
145
  <widget class="QGroupBox" name="x_axis_box">
125
146
  <property name="title">
126
147
  <string>X Axis</string>
@@ -214,22 +235,22 @@
214
235
  </layout>
215
236
  </widget>
216
237
  </item>
217
- <item row="0" column="0" colspan="2">
218
- <layout class="QHBoxLayout" name="horizontalLayout">
219
- <item>
220
- <widget class="QLabel" name="plot_title_label">
221
- <property name="text">
222
- <string>Plot Title</string>
223
- </property>
224
- </widget>
225
- </item>
226
- <item>
227
- <widget class="QLineEdit" name="plot_title"/>
228
- </item>
229
- </layout>
238
+ <item row="1" column="1">
239
+ <widget class="ToggleSwitch" name="switch_outer_axes">
240
+ <property name="checked" stdset="0">
241
+ <bool>false</bool>
242
+ </property>
243
+ </widget>
230
244
  </item>
231
245
  </layout>
232
246
  </widget>
247
+ <customwidgets>
248
+ <customwidget>
249
+ <class>ToggleSwitch</class>
250
+ <extends>QWidget</extends>
251
+ <header>toggle_switch</header>
252
+ </customwidget>
253
+ </customwidgets>
233
254
  <resources/>
234
255
  <connections/>
235
256
  </ui>
@@ -1,5 +1,6 @@
1
1
  from __future__ import annotations
2
2
 
3
+ from collections import defaultdict
3
4
  from typing import Literal, Optional
4
5
 
5
6
  import bec_qthemes
@@ -31,6 +32,7 @@ class AxisConfig(BaseModel):
31
32
  y_lim: Optional[tuple] = Field(None, description="The limits of the y-axis.")
32
33
  x_grid: bool = Field(False, description="Show grid on the x-axis.")
33
34
  y_grid: bool = Field(False, description="Show grid on the y-axis.")
35
+ outer_axes: bool = Field(False, description="Show the outer axes of the plot widget.")
34
36
  model_config: dict = {"validate_assignment": True}
35
37
 
36
38
 
@@ -75,6 +77,7 @@ class BECPlotBase(BECConnector, pg.GraphicsLayout):
75
77
  "set_x_lim",
76
78
  "set_y_lim",
77
79
  "set_grid",
80
+ "set_outer_axes",
78
81
  "lock_aspect_ratio",
79
82
  "export",
80
83
  "remove",
@@ -336,6 +339,17 @@ class BECPlotBase(BECConnector, pg.GraphicsLayout):
336
339
  self.config.axis.x_grid = x
337
340
  self.config.axis.y_grid = y
338
341
 
342
+ def set_outer_axes(self, show: bool = True):
343
+ """
344
+ Set the outer axes of the plot widget.
345
+
346
+ Args:
347
+ show(bool): Show the outer axes.
348
+ """
349
+ self.plot_item.showAxis("top", show)
350
+ self.plot_item.showAxis("right", show)
351
+ self.config.axis.outer_axes = show
352
+
339
353
  def add_legend(self):
340
354
  """Add legend to the plot"""
341
355
  self.plot_item.addLegend()
@@ -13,6 +13,7 @@ from bec_widgets.qt_utils.error_popups import WarningPopupUtility
13
13
  from bec_widgets.qt_utils.settings_dialog import SettingWidget
14
14
  from bec_widgets.utils import Colors, UILoader
15
15
  from bec_widgets.widgets.color_button.color_button import ColorButton
16
+ from bec_widgets.widgets.dap_combo_box.dap_combo_box import DapComboBox
16
17
  from bec_widgets.widgets.device_line_edit.device_line_edit import DeviceLineEdit
17
18
 
18
19
  MODULE_PATH = os.path.dirname(bec_widgets.__file__)
@@ -241,8 +242,9 @@ class DialogRow(QObject):
241
242
  self.device_line_edit = DeviceLineEdit()
242
243
  self.entry_line_edit = QLineEdit()
243
244
 
244
- self.dap_combo = QComboBox()
245
- self.populate_dap_combobox()
245
+ self.dap_combo = DapComboBox()
246
+ self.dap_combo.populate_fit_model_combobox()
247
+ self.dap_combo.select_fit_model("GaussianModel")
246
248
 
247
249
  # Styling
248
250
  self.color_button = ColorButton()
@@ -261,16 +263,6 @@ class DialogRow(QObject):
261
263
  lambda: self.remove_row()
262
264
  ) # From some reason do not work without lambda
263
265
 
264
- def populate_dap_combobox(self):
265
- available_models = [
266
- attr
267
- for attr in dir(self.client.dap)
268
- if not attr.startswith("__")
269
- and not callable(getattr(self.client.dap, attr))
270
- and not attr.startswith("_")
271
- ]
272
- self.dap_combo.addItems(available_models)
273
-
274
266
  def add_scan_row(self):
275
267
  if self.config is not None:
276
268
  self.device_line_edit.setText(self.config.signals.y.name)
@@ -298,7 +290,7 @@ class DialogRow(QObject):
298
290
  if self.config is not None:
299
291
  self.device_line_edit.setText(self.config.signals.y.name)
300
292
  self.entry_line_edit.setText(self.config.signals.y.entry)
301
- self.dap_combo.setCurrentText(self.config.signals.dap)
293
+ self.dap_combo.fit_model_combobox.setCurrentText(self.config.signals.dap)
302
294
  self.color_button.set_color(self.config.color)
303
295
  self.style_combo.setCurrentText(self.config.pen_style)
304
296
  self.width.setValue(self.config.pen_width)
@@ -312,7 +304,7 @@ class DialogRow(QObject):
312
304
 
313
305
  self.table_widget.setCellWidget(self.row, 0, self.device_line_edit)
314
306
  self.table_widget.setCellWidget(self.row, 1, self.entry_line_edit)
315
- self.table_widget.setCellWidget(self.row, 2, self.dap_combo)
307
+ self.table_widget.setCellWidget(self.row, 2, self.dap_combo.fit_model_combobox)
316
308
  self.table_widget.setCellWidget(self.row, 3, self.color_button)
317
309
  self.table_widget.setCellWidget(self.row, 4, self.style_combo)
318
310
  self.table_widget.setCellWidget(self.row, 5, self.width)
@@ -560,6 +560,15 @@ class BECWaveformWidget(BECWidget, QWidget):
560
560
  """
561
561
  self.waveform.set_grid(x_grid, y_grid)
562
562
 
563
+ def set_outer_axes(self, show: bool):
564
+ """
565
+ Set the outer axes visibility of the plot widget.
566
+
567
+ Args:
568
+ show(bool): Visibility of the outer axes.
569
+ """
570
+ self.waveform.set_outer_axes(show)
571
+
563
572
  def lock_aspect_ratio(self, lock: bool):
564
573
  """
565
574
  Lock the aspect ratio of the plot widget.
@@ -633,10 +642,7 @@ class BECWaveformWidget(BECWidget, QWidget):
633
642
  def main(): # pragma: no cover
634
643
  from qtpy.QtWidgets import QApplication
635
644
 
636
- from bec_widgets.utils.colors import set_theme
637
-
638
645
  app = QApplication(sys.argv)
639
- set_theme("auto")
640
646
  widget = BECWaveformWidget()
641
647
  widget.show()
642
648
  sys.exit(app.exec_())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bec_widgets
3
- Version: 0.105.0
3
+ Version: 0.106.0
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=Dc1iDjsc72UxdUtihx4uSZU0lrTQeR8hZwGx1MQBfKE,8432
3
3
  .pylintrc,sha256=eeY8YwSI74oFfq6IYIbCqnx3Vk8ZncKaatv96n_Y8Rs,18544
4
4
  .readthedocs.yaml,sha256=aSOc277LqXcsTI6lgvm_JY80lMlr69GbPKgivua2cS0,603
5
- CHANGELOG.md,sha256=g_RZX5HUBV0m39MX5Y8FO-GeBRnh2Wt2fob7OVvKlZY,7294
5
+ CHANGELOG.md,sha256=VgvcwmknCXjX8mxzyJp2yygmsjtJtbaHfD8KQU5RpE0,7261
6
6
  LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
7
- PKG-INFO,sha256=oeOXM8pekkxHvoDKlMGeTVyy__CKVPQW0zJqHpaimZs,1334
7
+ PKG-INFO,sha256=ffhpXp786ojh7YAGYizUsBPGvONAJlGKSpSvSaTL804,1334
8
8
  README.md,sha256=Od69x-RS85Hph0-WwWACwal4yUd67XkEn4APEfHhHFw,2649
9
- pyproject.toml,sha256=LYboSo9nhqhJ2QeWVBT_4QKioh4f-0AG8Hi1BfOhPTw,2544
9
+ pyproject.toml,sha256=tFMA5VaEZprfuybgIv-mHOCvtaC1VMWruKRtKHyqI5M,2544
10
10
  .git_hooks/pre-commit,sha256=n3RofIZHJl8zfJJIUomcMyYGFi_rwq4CC19z0snz3FI,286
11
11
  .gitlab/issue_templates/bug_report_template.md,sha256=gAuyEwl7XlnebBrkiJ9AqffSNOywmr8vygUFWKTuQeI,386
12
12
  .gitlab/issue_templates/documentation_update_template.md,sha256=FHLdb3TS_D9aL4CYZCjyXSulbaW5mrN2CmwTaeLPbNw,860
@@ -22,7 +22,7 @@ bec_widgets/assets/status_icons/running.svg,sha256=nlc6rKh_f-uOxQSk0BkBNyWnPAJU5
22
22
  bec_widgets/assets/status_icons/warning.svg,sha256=CNx88p9kbDG51s9ztKf-cfYan4JdDBbk3-IFKfOOFlI,364
23
23
  bec_widgets/cli/__init__.py,sha256=d0Q6Fn44e7wFfLabDOBxpcJ1DPKWlFunGYDUBmO-4hA,22
24
24
  bec_widgets/cli/auto_updates.py,sha256=DwzRChcFIWPH2kCYvp8H7dXvyYSKGYv6LwCmK2sDR2E,5676
25
- bec_widgets/cli/client.py,sha256=_DAmHtAAZdRfRNzBztxb1tdx5uWjhZ0hFNntlufulUI,79062
25
+ bec_widgets/cli/client.py,sha256=DCFTDwMNjLQwQe3mhg7eWoECYqaQJmvFvOrNhVZmmJ4,79251
26
26
  bec_widgets/cli/client_utils.py,sha256=EdDfo3uuYAWtZiDGGu3_GPnl94FSLkNG2N_4I9FNfMc,11809
27
27
  bec_widgets/cli/generate_cli.py,sha256=Ea5px9KblUlcGg-1JbJBTIU7laGg2n8PM7Efw9WVVzM,5889
28
28
  bec_widgets/cli/rpc_register.py,sha256=QxXUZu5XNg00Yf5O3UHWOXg3-f_pzKjjoZYMOa-MOJc,2216
@@ -146,9 +146,9 @@ bec_widgets/widgets/dock/register_dock_area.py,sha256=Yqd1mq6CcHwlxHZxX5EHKONy4P
146
146
  bec_widgets/widgets/figure/__init__.py,sha256=3hGx_KOV7QHCYAV06aNuUgKq4QIYCjUTad-DrwkUaBM,44
147
147
  bec_widgets/widgets/figure/figure.py,sha256=IzQaV_9utjViJyjMydOa3-EJ9k-FVG2PTVm8_ENCbgY,28849
148
148
  bec_widgets/widgets/figure/plots/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
149
- bec_widgets/widgets/figure/plots/axis_settings.py,sha256=QxRpQwgfBr1H0HTjfOpiXi_-n8I0BaZhS8LRXNeVfFg,3544
150
- bec_widgets/widgets/figure/plots/axis_settings.ui,sha256=a2qIuK9lyi9HCyrSvPr6wxzmm1FymaWcpmyOhMIiFt8,11013
151
- bec_widgets/widgets/figure/plots/plot_base.py,sha256=wuX0HQ_yY7gueXYOm1U1DIDLw8P5a6GW6WrJkYbPf_A,15210
149
+ bec_widgets/widgets/figure/plots/axis_settings.py,sha256=grgrX4t4eAzccW4jj4HYtMSxy8Wgcd9N9J1aU7UHtIs,3723
150
+ bec_widgets/widgets/figure/plots/axis_settings.ui,sha256=ye-guaRU_jhu7sHZS-9AjBjLrCtA1msOD0dszu4o9x8,11785
151
+ bec_widgets/widgets/figure/plots/plot_base.py,sha256=kciIDnTGi01R0wrXh7Jw_MUT1t4fy3wSUOj3x5DMMBY,15679
152
152
  bec_widgets/widgets/figure/plots/image/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
153
  bec_widgets/widgets/figure/plots/image/image.py,sha256=rq2zy-vwZLd3___rFRNEBnPFGKSu88T5T4ngrTkcbr0,25014
154
154
  bec_widgets/widgets/figure/plots/image/image_item.py,sha256=DhlBbI-c8nVbJ8tREQhyNr8Qk4W6PXF0HgBhrIoYQPo,11012
@@ -237,10 +237,10 @@ bec_widgets/widgets/waveform/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
237
237
  bec_widgets/widgets/waveform/bec_waveform_widget.pyproject,sha256=GLD8GN9dXx9wNbtnevrxqqcwk7vKV-Uv8QYSycdaoaI,33
238
238
  bec_widgets/widgets/waveform/bec_waveform_widget_plugin.py,sha256=qSQTeCzIUn8rgDkjIM47Rr3-fqg1uk8rDf_lCoY9gZw,1402
239
239
  bec_widgets/widgets/waveform/register_bec_waveform_widget.py,sha256=qZHVZH_lP2hvzkG1Ra0EyrXlMeLkRCy0aceH-bfJ1cs,490
240
- bec_widgets/widgets/waveform/waveform_widget.py,sha256=n6_8B4frmpZGGGx6eWntLsoL-CpJ0_Bca9oENWJTY0Y,22264
240
+ bec_widgets/widgets/waveform/waveform_widget.py,sha256=nEIRz6mnBpVl2BTauQHMI_DJHXO7aO5HyuAsf8OrMag,22427
241
241
  bec_widgets/widgets/waveform/waveform_popups/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
242
242
  bec_widgets/widgets/waveform/waveform_popups/curve_dialog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
243
- bec_widgets/widgets/waveform/waveform_popups/curve_dialog/curve_dialog.py,sha256=ApWv0n33TJBP59CQ4MUdyPRSiKfXjTdfui1IfwzFNjE,13172
243
+ bec_widgets/widgets/waveform/waveform_popups/curve_dialog/curve_dialog.py,sha256=VxbAtI_ZLfkrkTXqImQcNPwKDqFRWEj-vI8v6mmVMJ8,13025
244
244
  bec_widgets/widgets/waveform/waveform_popups/curve_dialog/curve_dialog.ui,sha256=OaQE5HlyBQ3RQoHqxOFHiUoNcx8SDZP5sHJ9NNGhsPI,10404
245
245
  bec_widgets/widgets/waveform/waveform_popups/dap_summary_dialog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
246
246
  bec_widgets/widgets/waveform/waveform_popups/dap_summary_dialog/dap_summary_dialog.py,sha256=XOHppMcONwfhAYpqIc51VOrpunWmPSn50sT3I0MjW2c,1173
@@ -249,8 +249,8 @@ bec_widgets/widgets/website/register_website_widget.py,sha256=LIQJpV9uqcBiPR9cEA
249
249
  bec_widgets/widgets/website/website.py,sha256=42pncCc_zI2eqeMArIurVmPUukRo5bTxa2h1Skah-io,3012
250
250
  bec_widgets/widgets/website/website_widget.pyproject,sha256=scOiV3cV1_BjbzpPzy2N8rIJL5P2qIZz8ObTJ-Uvdtg,25
251
251
  bec_widgets/widgets/website/website_widget_plugin.py,sha256=pz38_C2cZ0yvPPS02wdIPcmhFo_yiwUhflsASocAPQQ,1341
252
- bec_widgets-0.105.0.dist-info/METADATA,sha256=oeOXM8pekkxHvoDKlMGeTVyy__CKVPQW0zJqHpaimZs,1334
253
- bec_widgets-0.105.0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
254
- bec_widgets-0.105.0.dist-info/entry_points.txt,sha256=3otEkCdDB9LZJuBLzG4pFLK5Di0CVybN_12IsZrQ-58,166
255
- bec_widgets-0.105.0.dist-info/licenses/LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
256
- bec_widgets-0.105.0.dist-info/RECORD,,
252
+ bec_widgets-0.106.0.dist-info/METADATA,sha256=ffhpXp786ojh7YAGYizUsBPGvONAJlGKSpSvSaTL804,1334
253
+ bec_widgets-0.106.0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
254
+ bec_widgets-0.106.0.dist-info/entry_points.txt,sha256=3otEkCdDB9LZJuBLzG4pFLK5Di0CVybN_12IsZrQ-58,166
255
+ bec_widgets-0.106.0.dist-info/licenses/LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
256
+ bec_widgets-0.106.0.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 = "0.105.0"
7
+ version = "0.106.0"
8
8
  description = "BEC Widgets"
9
9
  requires-python = ">=3.10"
10
10
  classifiers = [