bec-widgets 0.108.0__py3-none-any.whl → 0.109.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,5 +1,21 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v0.109.1 (2024-09-09)
4
+
5
+ ### Fix
6
+
7
+ * fix: refactor textbox widget, remove inheritance, adhere to bec style; closes #324 ([`b0d786b`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/b0d786b991677c0846a0c6ba3f2252d48d94ccaa))
8
+
9
+ ## v0.109.0 (2024-09-06)
10
+
11
+ ### Feature
12
+
13
+ * feat(accent colors): added helper function to get all accent colors ([`84a59f7`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/84a59f70eed6d8a3c3aeeabc77a5f9ea4e864f61))
14
+
15
+ ### Fix
16
+
17
+ * fix(theme): fixed theme access for themecontainer ([`de303f0`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/de303f0227fc9d3a74a0410f1e7999ac5132273c))
18
+
3
19
  ## v0.108.0 (2024-09-06)
4
20
 
5
21
  ### Documentation
@@ -144,20 +160,6 @@
144
160
 
145
161
  * docs(becwidget): improvements to the bec widget base class docs; fixed type hint import for sphinx ([`99d5e8e`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/99d5e8e71c7f89a53d7967126f4056dde005534c))
146
162
 
147
- ### Feature
148
-
149
- * feat(theme): added theme handler to bec widget base class; added tests ([`7fb938a`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/7fb938a8506685278ee5eeb6fe9a03f74b713cf8))
150
-
151
163
  ### Fix
152
164
 
153
165
  * fix(pyqt slot): removed slot decorator to avoid problems with pyqt6 ([`6c1f89a`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/6c1f89ad39b7240ab1d1c1123422b99ae195bf01))
154
-
155
- ## v0.99.15 (2024-08-31)
156
-
157
- ### Fix
158
-
159
- * fix(theme): update pg axes on theme update ([`af23e74`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/af23e74f71152f4abc319ab7b45e65deefde3519))
160
-
161
- * fix(positioner_box): fixed positioner box dialog; added test; closes #332 ([`0bf1cf9`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/0bf1cf9b8ab2f9171d5ff63d4e3672eb93e9a5fa))
162
-
163
- ## v0.99.14 (2024-08-30)
PKG-INFO CHANGED
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bec_widgets
3
- Version: 0.108.0
3
+ Version: 0.109.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
@@ -2914,31 +2914,21 @@ class StopButton(RPCBase):
2914
2914
 
2915
2915
  class TextBox(RPCBase):
2916
2916
  @rpc_call
2917
- def set_color(self, background_color: str, font_color: str) -> None:
2917
+ def set_plain_text(self, text: str) -> None:
2918
2918
  """
2919
- Set the background color of the widget.
2920
-
2921
- Args:
2922
- background_color (str): The color to set the background in HEX.
2923
- font_color (str): The color to set the font in HEX.
2924
- """
2925
-
2926
- @rpc_call
2927
- def set_text(self, text: str) -> None:
2928
- """
2929
- Set the text of the widget.
2919
+ Set the plain text of the widget.
2930
2920
 
2931
2921
  Args:
2932
2922
  text (str): The text to set.
2933
2923
  """
2934
2924
 
2935
2925
  @rpc_call
2936
- def set_font_size(self, size: int) -> None:
2926
+ def set_html_text(self, text: str) -> None:
2937
2927
  """
2938
- Set the font size of the text in the widget.
2928
+ Set the HTML text of the widget.
2939
2929
 
2940
2930
  Args:
2941
- size (int): The font size to set.
2931
+ text (str): The text to set.
2942
2932
  """
2943
2933
 
2944
2934
 
@@ -71,7 +71,7 @@ class BECWidget(BECConnector):
71
71
  if theme is None:
72
72
  qapp = QApplication.instance()
73
73
  if hasattr(qapp, "theme"):
74
- theme = qapp.theme["theme"]
74
+ theme = qapp.theme.theme
75
75
  else:
76
76
  theme = "dark"
77
77
  self.apply_theme(theme)
@@ -1,6 +1,8 @@
1
+ from __future__ import annotations
2
+
1
3
  import itertools
2
4
  import re
3
- from typing import Literal
5
+ from typing import TYPE_CHECKING, Literal
4
6
 
5
7
  import bec_qthemes
6
8
  import numpy as np
@@ -8,25 +10,38 @@ import pyqtgraph as pg
8
10
  from bec_qthemes._os_appearance.listener import OSThemeSwitchListener
9
11
  from pydantic_core import PydanticCustomError
10
12
  from qtpy.QtGui import QColor
11
- from qtpy.QtWidgets import QApplication, QPushButton, QToolButton
13
+ from qtpy.QtWidgets import QApplication
14
+
15
+ if TYPE_CHECKING:
16
+ from bec_qthemes._main import AccentColors
12
17
 
13
18
 
14
19
  def get_theme_palette():
15
20
  if QApplication.instance() is None or not hasattr(QApplication.instance(), "theme"):
16
21
  theme = "dark"
17
22
  else:
18
- theme = QApplication.instance().theme["theme"]
23
+ theme = QApplication.instance().theme.theme
19
24
  return bec_qthemes.load_palette(theme)
20
25
 
21
26
 
27
+ def get_accent_colors() -> AccentColors | None:
28
+ """
29
+ Get the accent colors for the current theme. These colors are extensions of the color palette
30
+ and are used to highlight specific elements in the UI.
31
+ """
32
+ if QApplication.instance() is None or not hasattr(QApplication.instance(), "theme"):
33
+ return None
34
+ return QApplication.instance().theme.accent_colors
35
+
36
+
22
37
  def _theme_update_callback():
23
38
  """
24
39
  Internal callback function to update the theme based on the system theme.
25
40
  """
26
41
  app = QApplication.instance()
27
42
  # pylint: disable=protected-access
28
- app.theme["theme"] = app.os_listener._theme.lower()
29
- app.theme_signal.theme_updated.emit(app.theme["theme"])
43
+ app.theme.theme = app.os_listener._theme.lower()
44
+ app.theme_signal.theme_updated.emit(app.theme.theme)
30
45
  apply_theme(app.os_listener._theme.lower())
31
46
 
32
47
 
@@ -124,7 +139,7 @@ class Colors:
124
139
  color_index = int(color_selection[ii])
125
140
  color = cmap_colors[color_index]
126
141
  app = QApplication.instance()
127
- if hasattr(app, "theme") and app.theme["theme"] == "light":
142
+ if hasattr(app, "theme") and app.theme.theme == "light":
128
143
  background = 255
129
144
  else:
130
145
  background = 0
@@ -6,6 +6,7 @@ from qtpy.QtGui import QColor, QPainter, QPainterPath
6
6
  from qtpy.QtWidgets import QApplication, QLabel, QVBoxLayout, QWidget
7
7
 
8
8
  from bec_widgets.utils.bec_widget import BECWidget
9
+ from bec_widgets.utils.colors import get_accent_colors
9
10
 
10
11
 
11
12
  class BECProgressBar(BECWidget, QWidget):
@@ -26,7 +27,7 @@ class BECProgressBar(BECWidget, QWidget):
26
27
  super().__init__(client=client, config=config, gui_id=gui_id)
27
28
  QWidget.__init__(self, parent=parent)
28
29
 
29
- accent_colors = QApplication.instance().theme.accent_colors
30
+ accent_colors = get_accent_colors()
30
31
 
31
32
  # internal values
32
33
  self._oversampling_factor = 50
@@ -60,7 +60,7 @@ class DarkModeButton(BECWidget, QWidget):
60
60
  bool: True if dark mode is enabled, False otherwise.
61
61
  """
62
62
  qapp = QApplication.instance()
63
- if hasattr(qapp, "theme") and qapp.theme["theme"] == "dark":
63
+ if hasattr(qapp, "theme") and qapp.theme.theme == "dark":
64
64
  return True
65
65
 
66
66
  return False
@@ -119,7 +119,7 @@ class BECPlotBase(BECConnector, pg.GraphicsLayout):
119
119
  if theme is None:
120
120
  qapp = QApplication.instance()
121
121
  if hasattr(qapp, "theme"):
122
- theme = qapp.theme["theme"]
122
+ theme = qapp.theme.theme
123
123
  else:
124
124
  theme = "dark"
125
125
  self.apply_theme(theme)
@@ -16,6 +16,7 @@ from qtpy.QtWidgets import QApplication, QWidget
16
16
 
17
17
  from bec_widgets.qt_utils.error_popups import SafeSlot as Slot
18
18
  from bec_widgets.utils import Colors, EntryValidator
19
+ from bec_widgets.utils.colors import get_accent_colors
19
20
  from bec_widgets.utils.linear_region_selector import LinearRegionWrapper
20
21
  from bec_widgets.widgets.figure.plots.plot_base import BECPlotBase, SubplotConfig
21
22
  from bec_widgets.widgets.figure.plots.waveform.waveform_curve import (
@@ -108,7 +109,7 @@ class BECWaveform(BECPlotBase):
108
109
  self.scan_item = None
109
110
  self._roi_region = None
110
111
  self.roi_select = None
111
- self._accent_colors = QApplication.instance().theme.accent_colors
112
+ self._accent_colors = get_accent_colors()
112
113
  self._x_axis_mode = {
113
114
  "name": None,
114
115
  "entry": None,
@@ -1,39 +1,47 @@
1
+ """Module for a text box widget that displays text in plain and HTML format and adheres to the BECWidget interface & style."""
2
+
1
3
  import re
4
+ from html.parser import HTMLParser
2
5
 
3
- from pydantic import Field, field_validator
4
- from qtpy.QtWidgets import QTextEdit
6
+ from bec_lib.logger import bec_logger
7
+ from pydantic import Field
8
+ from qtpy.QtCore import Property, Slot
9
+ from qtpy.QtWidgets import QTextEdit, QVBoxLayout, QWidget
5
10
 
6
11
  from bec_widgets.utils.bec_connector import ConnectionConfig
7
12
  from bec_widgets.utils.bec_widget import BECWidget
8
- from bec_widgets.utils.colors import Colors
13
+
14
+ logger = bec_logger.logger
15
+
16
+ DEFAULT_TEXT = "<h1>Welcome to the BEC Widget TextBox</h1><p>A widget that allows user to display text in plain and HTML format.</p><p>This is an example of displaying HTML text.</p>"
9
17
 
10
18
 
11
19
  class TextBoxConfig(ConnectionConfig):
20
+ """Configuration for the TextBox widget.
12
21
 
13
- theme: str = Field("dark", description="The theme of the figure widget.")
14
- font_color: str = Field("#FFF", description="The font color of the text")
15
- background_color: str = Field("#000", description="The background color of the widget.")
16
- font_size: int = Field(16, description="The font size of the text in the widget.")
17
- text: str = Field("", description="The text to display in the widget.")
22
+ Args:
23
+ text (str, optional): The text to display in the widget. Defaults to None.
24
+ is_html (bool, optional): Whether the text is in HTML format or not. Defaults to False.
25
+ """
18
26
 
19
- @classmethod
20
- @field_validator("theme")
21
- def validate_theme(cls, v):
22
- """Validate the theme of the figure widget."""
23
- if v not in ["dark", "light"]:
24
- raise ValueError("Theme must be either 'dark' or 'light'")
25
- return v
27
+ text: str | None = Field(None, description="The text to display in the widget.")
28
+ is_html: bool = Field(False, description="Whether the text is in HTML format or not.")
26
29
 
27
- _validate_font_color = field_validator("font_color")(Colors.validate_color)
28
- _validate_background_color = field_validator("background_color")(Colors.validate_color)
29
30
 
31
+ class TextBox(BECWidget, QWidget):
32
+ """A widget that displays text in plain and HTML format
30
33
 
31
- class TextBox(BECWidget, QTextEdit):
34
+ Args:
35
+ parent (QWidget, optional): The parent widget. Defaults to None.
36
+ client ([type], optional): The client to use. Defaults to None.
37
+ config ([type], optional): The config to use. Defaults to None.
38
+ gui_id ([type], optional): The gui_id to use. Defaults to None.
39
+ """
32
40
 
33
- USER_ACCESS = ["set_color", "set_text", "set_font_size"]
41
+ USER_ACCESS = ["set_plain_text", "set_html_text"]
34
42
  ICON_NAME = "chat"
35
43
 
36
- def __init__(self, parent=None, text: str = "", client=None, config=None, gui_id=None):
44
+ def __init__(self, parent=None, client=None, config=None, gui_id=None):
37
45
  if config is None:
38
46
  config = TextBoxConfig(widget_class=self.__class__.__name__)
39
47
  else:
@@ -41,80 +49,79 @@ class TextBox(BECWidget, QTextEdit):
41
49
  config = TextBoxConfig(**config)
42
50
  self.config = config
43
51
  super().__init__(client=client, config=config, gui_id=gui_id)
44
- QTextEdit.__init__(self, parent=parent)
45
-
52
+ QWidget.__init__(self, parent)
53
+ self.layout = QVBoxLayout(self)
54
+ self.text_box_text_edit = QTextEdit(parent=self)
55
+ self.layout.addWidget(self.text_box_text_edit)
56
+ self.setLayout(self.layout)
57
+ self.layout.setContentsMargins(0, 0, 0, 0)
46
58
  self.config = config
47
- self.setReadOnly(True)
48
- self.setGeometry(self.rect())
49
- self.set_color(self.config.background_color, self.config.font_color)
50
- if not text:
51
- text = "<h1>Welcome to the BEC Widget TextBox</h1><p>A widget that allows user to display text in plain and HTML format.</p><p>This is an example of displaying HTML text.</p>"
52
- self.set_text(text)
53
-
54
- def change_theme(self) -> None:
55
- """
56
- Change the theme of the figure widget.
57
- """
58
- if self.config.theme == "dark":
59
- theme = "light"
60
- font_color = "#000"
61
- background_color = "#FFF"
59
+ self.text_box_text_edit.setReadOnly(True)
60
+ if self.config.text is not None:
61
+ if self.config.is_html:
62
+ self.set_html_text(self.config.text)
63
+ else:
64
+ self.set_plain_text(self.config.text)
62
65
  else:
63
- theme = "dark"
64
- font_color = "#FFF"
65
- background_color = "#000"
66
- self.config.theme = theme
67
- self.set_color(background_color, font_color)
66
+ self.set_html_text(DEFAULT_TEXT)
68
67
 
69
- def set_color(self, background_color: str, font_color: str) -> None:
70
- """Set the background color of the widget.
68
+ @Slot(str)
69
+ def set_plain_text(self, text: str) -> None:
70
+ """Set the plain text of the widget.
71
71
 
72
72
  Args:
73
- background_color (str): The color to set the background in HEX.
74
- font_color (str): The color to set the font in HEX.
75
-
73
+ text (str): The text to set.
76
74
  """
77
- self.config.background_color = background_color
78
- self.config.font_color = font_color
79
- self._update_stylesheet()
75
+ self.text_box_text_edit.setPlainText(text)
76
+ self.config.text = text
77
+ self.config.is_html = False
80
78
 
81
- def set_font_size(self, size: int) -> None:
82
- """Set the font size of the text in the widget.
79
+ @Slot(str)
80
+ def set_html_text(self, text: str) -> None:
81
+ """Set the HTML text of the widget.
83
82
 
84
83
  Args:
85
- size (int): The font size to set.
84
+ text (str): The text to set.
86
85
  """
87
- self.config.font_size = size
88
- self._update_stylesheet()
86
+ self.text_box_text_edit.setHtml(text)
87
+ self.config.text = text
88
+ self.config.is_html = True
89
89
 
90
- def _update_stylesheet(self):
91
- """Update the stylesheet of the widget."""
92
- self.setStyleSheet(
93
- f"background-color: {self.config.background_color}; color: {self.config.font_color}; font-size: {self.config.font_size}px"
94
- )
90
+ @Property(str)
91
+ def plain_text(self) -> str:
92
+ """Get the text of the widget.
95
93
 
96
- def set_text(self, text: str) -> None:
94
+ Returns:
95
+ str: The text of the widget.
96
+ """
97
+ return self.text_box_text_edit.toPlainText()
98
+
99
+ @plain_text.setter
100
+ def plain_text(self, text: str) -> None:
97
101
  """Set the text of the widget.
98
102
 
99
103
  Args:
100
104
  text (str): The text to set.
101
105
  """
102
- if self.is_html(text):
103
- self.setHtml(text)
104
- else:
105
- self.setPlainText(text)
106
- self.config.text = text
107
-
108
- def is_html(self, text: str) -> bool:
109
- """Check if the text contains HTML tags.
106
+ self.set_plain_text(text)
110
107
 
111
- Args:
112
- text (str): The text to check.
108
+ @Property(str)
109
+ def html_text(self) -> str:
110
+ """Get the HTML text of the widget.
113
111
 
114
112
  Returns:
115
- bool: True if the text contains HTML tags, False otherwise.
113
+ str: The HTML text of the widget.
116
114
  """
117
- return bool(re.search(r"<[a-zA-Z/][^>]*>", text))
115
+ return self.text_box_text_edit.toHtml()
116
+
117
+ @html_text.setter
118
+ def html_text(self, text: str) -> None:
119
+ """Set the HTML text of the widget.
120
+
121
+ Args:
122
+ text (str): The HTML text to set.
123
+ """
124
+ self.set_html_text(text)
118
125
 
119
126
 
120
127
  if __name__ == "__main__":
@@ -123,7 +130,6 @@ if __name__ == "__main__":
123
130
  from qtpy.QtWidgets import QApplication
124
131
 
125
132
  app = QApplication(sys.argv)
126
-
127
133
  widget = TextBox()
128
134
  widget.show()
129
135
  sys.exit(app.exec())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bec_widgets
3
- Version: 0.108.0
3
+ Version: 0.109.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=Dc1iDjsc72UxdUtihx4uSZU0lrTQeR8hZwGx1MQBfKE,8432
3
3
  .pylintrc,sha256=eeY8YwSI74oFfq6IYIbCqnx3Vk8ZncKaatv96n_Y8Rs,18544
4
4
  .readthedocs.yaml,sha256=aSOc277LqXcsTI6lgvm_JY80lMlr69GbPKgivua2cS0,603
5
- CHANGELOG.md,sha256=apWeMcUSqInZhgc5D8Hr58kcnMt6hA1Ybx3ouRbOhZk,7244
5
+ CHANGELOG.md,sha256=83toIm-bLOmMXqLc9D_TuEkaAmajXcVh2gp_jSZ0N1o,7266
6
6
  LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
7
- PKG-INFO,sha256=BGf3jlAjgMTSAg0eeqjTNolgh8gfWwzSsOdWxL-e8FY,1334
7
+ PKG-INFO,sha256=zZkCksUj3vS0F-9_qaUXWatTcIGMUxtUYALlYIAmQeo,1334
8
8
  README.md,sha256=Od69x-RS85Hph0-WwWACwal4yUd67XkEn4APEfHhHFw,2649
9
- pyproject.toml,sha256=6_DDd-tPxZvvy7p-Wk0HRZV6gbxqb39tEpIBh1yo9R0,2544
9
+ pyproject.toml,sha256=Acf6n5A69AFyAgZ3AJrP3hmbHsi7XEZNGXe0ic-zuDE,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=aG1m5xXbIsn0Cq7isrUgyA_l4yLFgbKsmmiXye6yPp8,81550
25
+ bec_widgets/cli/client.py,sha256=_sgO24vbZnc-dRPZjH_sDfvYHHvR-OeYkQmr_oGuSbU,81230
26
26
  bec_widgets/cli/client_utils.py,sha256=EdDfo3uuYAWtZiDGGu3_GPnl94FSLkNG2N_4I9FNfMc,11809
27
27
  bec_widgets/cli/generate_cli.py,sha256=zRhhcErjHqnNymoxu9oqeUZUfwLX84De1RIeGiZGUyY,6602
28
28
  bec_widgets/cli/rpc_register.py,sha256=QxXUZu5XNg00Yf5O3UHWOXg3-f_pzKjjoZYMOa-MOJc,2216
@@ -52,8 +52,8 @@ bec_widgets/utils/bec_connector.py,sha256=I9M_4g-_-WaMmhyXzChFCGXAElelx0mG6E1g0K
52
52
  bec_widgets/utils/bec_designer.py,sha256=Z3MeMju-KmTz8POtm23VQfp4rvtD2sF6eIOKQkl2F7w,4729
53
53
  bec_widgets/utils/bec_dispatcher.py,sha256=OFmkx9vOz4pA4Sdc14QreyDZ870QYskJ4B5daVVeYg4,6325
54
54
  bec_widgets/utils/bec_table.py,sha256=nA2b8ukSeUfquFMAxGrUVOqdrzMoDYD6O_4EYbOG2zk,717
55
- bec_widgets/utils/bec_widget.py,sha256=PRI1cjR7P4BxJRVz_hCF_KZ-891UmP4eADtHsOnxPG0,3333
56
- bec_widgets/utils/colors.py,sha256=N3GbVBpExfC1m_dnYFDoua-iRLM90E5kTKVOIkZVmDM,12372
55
+ bec_widgets/utils/bec_widget.py,sha256=1lrHNuvW6uOuPpr-cJBYJNbFekTsqpnQdfTo3P5tbWI,3330
56
+ bec_widgets/utils/colors.py,sha256=aUQkDMTRjTjS9lQfgO5NrUllU2r4ygDTTSUROtTBX90,12838
57
57
  bec_widgets/utils/container_utils.py,sha256=0wr3ZfuMiAFKCrQHVjxjw-Vuk8wsHdridqcjy2eY840,1531
58
58
  bec_widgets/utils/crosshair.py,sha256=8lik9k69WI2WMj5FGLbrKtny9duxqXUJAhpX8tHoyp0,11543
59
59
  bec_widgets/utils/entry_validator.py,sha256=3skJIsUwTYicT76AMHm_M78RiWtUgyD2zb-Rxo2HdHQ,1313
@@ -76,7 +76,7 @@ bec_widgets/widgets/base_classes/device_input_base.py,sha256=thCOHOa9Z0b3-vlNFWK
76
76
  bec_widgets/widgets/bec_progressbar/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
77
  bec_widgets/widgets/bec_progressbar/bec_progress_bar.pyproject,sha256=Pb3n9seM95_8myKJ0pv_9IcfJDNJJNOFBskuRdEVzhU,33
78
78
  bec_widgets/widgets/bec_progressbar/bec_progress_bar_plugin.py,sha256=b0b0F37HrwFAtizF4VC9udOe1eKbpDkrUE1pM7fI_f0,1352
79
- bec_widgets/widgets/bec_progressbar/bec_progressbar.py,sha256=-poyvjmRSccVR7GNbiDoYfetfaBwDy2mimzMDGNyAU8,7949
79
+ bec_widgets/widgets/bec_progressbar/bec_progressbar.py,sha256=kkmpe5o9RPOCIKKPp0jjfQORLT8XKW_e-ETEl5Zmltk,7980
80
80
  bec_widgets/widgets/bec_progressbar/register_bec_progress_bar.py,sha256=ZcGLPYEwkrbSOpxQeuZJRRVV3yXvcFh133hnlKIQGKw,488
81
81
  bec_widgets/widgets/bec_queue/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
82
  bec_widgets/widgets/bec_queue/bec_queue.py,sha256=8gayhWyIB3_gdpeongGTDQxHs37Waf3H5TDjySCctho,7998
@@ -121,7 +121,7 @@ bec_widgets/widgets/dap_combo_box/dap_combo_box.pyproject,sha256=3TzD8j0F6UYw8TP
121
121
  bec_widgets/widgets/dap_combo_box/dap_combo_box_plugin.py,sha256=WVR8k10SESRFm-hQUrcUfgycuNu7HIcZqV--24nw-TU,1270
122
122
  bec_widgets/widgets/dap_combo_box/register_dap_combo_box.py,sha256=RGFzFmldBwQjpKB7wbIxJU20uprjXtqCVnUkt0Zc7aA,477
123
123
  bec_widgets/widgets/dark_mode_button/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
- bec_widgets/widgets/dark_mode_button/dark_mode_button.py,sha256=ZvCDO_FWtEn6M1Jxaw8x8GifsulJc2NsaXNvLKAKBs0,3259
124
+ bec_widgets/widgets/dark_mode_button/dark_mode_button.py,sha256=Yd084huvWfN4z1JxI35HjMBZ_AeYXseb-_Wq4-xRsnE,3256
125
125
  bec_widgets/widgets/dark_mode_button/dark_mode_button.pyproject,sha256=Lbi9zb6HNlIq14k6hlzR-oz6PIFShBuF7QxE6d87d64,34
126
126
  bec_widgets/widgets/dark_mode_button/dark_mode_button_plugin.py,sha256=RJWeBEqR9BueUxUSuPcU-AmnzfIzt3j4jtsIacp-2Ug,1335
127
127
  bec_widgets/widgets/dark_mode_button/register_dark_mode_button.py,sha256=_4Fw6j1KLuluko8X2B7zf_DT5eA07G0CqR-aRMAn0iA,489
@@ -154,7 +154,7 @@ bec_widgets/widgets/figure/figure.py,sha256=IzQaV_9utjViJyjMydOa3-EJ9k-FVG2PTVm8
154
154
  bec_widgets/widgets/figure/plots/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
155
155
  bec_widgets/widgets/figure/plots/axis_settings.py,sha256=grgrX4t4eAzccW4jj4HYtMSxy8Wgcd9N9J1aU7UHtIs,3723
156
156
  bec_widgets/widgets/figure/plots/axis_settings.ui,sha256=ye-guaRU_jhu7sHZS-9AjBjLrCtA1msOD0dszu4o9x8,11785
157
- bec_widgets/widgets/figure/plots/plot_base.py,sha256=kciIDnTGi01R0wrXh7Jw_MUT1t4fy3wSUOj3x5DMMBY,15679
157
+ bec_widgets/widgets/figure/plots/plot_base.py,sha256=ByzXVZ8pjIN9947iI7OLNksjpwO2_I58uezQSgWCZVQ,15676
158
158
  bec_widgets/widgets/figure/plots/image/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
159
159
  bec_widgets/widgets/figure/plots/image/image.py,sha256=rq2zy-vwZLd3___rFRNEBnPFGKSu88T5T4ngrTkcbr0,25014
160
160
  bec_widgets/widgets/figure/plots/image/image_item.py,sha256=DhlBbI-c8nVbJ8tREQhyNr8Qk4W6PXF0HgBhrIoYQPo,11012
@@ -162,7 +162,7 @@ bec_widgets/widgets/figure/plots/image/image_processor.py,sha256=GeTtWjbldy6VejM
162
162
  bec_widgets/widgets/figure/plots/motor_map/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
163
163
  bec_widgets/widgets/figure/plots/motor_map/motor_map.py,sha256=AiDq4bmcEoj9PlkRQtHCk-5cwvOFGPBcfxPNNr8E53Y,18399
164
164
  bec_widgets/widgets/figure/plots/waveform/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
- bec_widgets/widgets/figure/plots/waveform/waveform.py,sha256=aU_anZcC6Z17ZHsBPxPeC_0x5YRyJMP4BN7pWk0nG3E,56270
165
+ bec_widgets/widgets/figure/plots/waveform/waveform.py,sha256=y18zurrvyw0VSy1DMc0h323qlQFocoV1KKjFOs2SigM,56301
166
166
  bec_widgets/widgets/figure/plots/waveform/waveform_curve.py,sha256=RUo4GfXwlaCei8BBvWBQF3IEB8h-KgpvaHur6JUvT6s,8682
167
167
  bec_widgets/widgets/image/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
168
168
  bec_widgets/widgets/image/bec_image_widget.pyproject,sha256=PHisdBo5_5UCApd27GkizzqgfdjsDx2bFZa_p9LiSW8,30
@@ -226,7 +226,7 @@ bec_widgets/widgets/stop_button/stop_button.pyproject,sha256=Cc_xbv-zfzNVpsdg_1Q
226
226
  bec_widgets/widgets/stop_button/stop_button_plugin.py,sha256=VT-WVLq89fw7PwML7JDMCF1bqfopLCZIgMA4yetl65M,1365
227
227
  bec_widgets/widgets/text_box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
228
228
  bec_widgets/widgets/text_box/register_text_box.py,sha256=UwrmCoYjAAtJJK8BwC0P_wSb-lOlOvxPe3-Bemg_9nw,459
229
- bec_widgets/widgets/text_box/text_box.py,sha256=urkHtDQBSf4ws5BcpYIe5cfj-r-GXQOngcGUVYWvgRo,4297
229
+ bec_widgets/widgets/text_box/text_box.py,sha256=S1VQwTkZje2x4iwjTEzd6zPP_wcHtIcx8o9KuCtsSbY,4247
230
230
  bec_widgets/widgets/text_box/text_box.pyproject,sha256=XohO1BIe2hrpU-z_KHKRgjcUkXru7jeFte31j2TPbNk,26
231
231
  bec_widgets/widgets/text_box/text_box_plugin.py,sha256=rjRxqqovggpiI3gfQrXU-uc7TEjugIameQBrFD6s9hY,1302
232
232
  bec_widgets/widgets/toggle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -255,8 +255,8 @@ bec_widgets/widgets/website/register_website_widget.py,sha256=LIQJpV9uqcBiPR9cEA
255
255
  bec_widgets/widgets/website/website.py,sha256=42pncCc_zI2eqeMArIurVmPUukRo5bTxa2h1Skah-io,3012
256
256
  bec_widgets/widgets/website/website_widget.pyproject,sha256=scOiV3cV1_BjbzpPzy2N8rIJL5P2qIZz8ObTJ-Uvdtg,25
257
257
  bec_widgets/widgets/website/website_widget_plugin.py,sha256=pz38_C2cZ0yvPPS02wdIPcmhFo_yiwUhflsASocAPQQ,1341
258
- bec_widgets-0.108.0.dist-info/METADATA,sha256=BGf3jlAjgMTSAg0eeqjTNolgh8gfWwzSsOdWxL-e8FY,1334
259
- bec_widgets-0.108.0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
260
- bec_widgets-0.108.0.dist-info/entry_points.txt,sha256=3otEkCdDB9LZJuBLzG4pFLK5Di0CVybN_12IsZrQ-58,166
261
- bec_widgets-0.108.0.dist-info/licenses/LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
262
- bec_widgets-0.108.0.dist-info/RECORD,,
258
+ bec_widgets-0.109.1.dist-info/METADATA,sha256=zZkCksUj3vS0F-9_qaUXWatTcIGMUxtUYALlYIAmQeo,1334
259
+ bec_widgets-0.109.1.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
260
+ bec_widgets-0.109.1.dist-info/entry_points.txt,sha256=3otEkCdDB9LZJuBLzG4pFLK5Di0CVybN_12IsZrQ-58,166
261
+ bec_widgets-0.109.1.dist-info/licenses/LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
262
+ bec_widgets-0.109.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 = "0.108.0"
7
+ version = "0.109.1"
8
8
  description = "BEC Widgets"
9
9
  requires-python = ">=3.10"
10
10
  classifiers = [