blue-react 9.5.1 → 9.5.3

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.
package/dist/style.scss CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Blue React v9.5.1-alpha2 (https://bruegmann.github.io/blue-react)
2
+ * Blue React v9.5.3-alpha2 (https://bruegmann.github.io/blue-react)
3
3
  * Licensed under GNU General Public License v3.0 (https://github.com/bruegmann/blue-react/blob/master/LICENSE).
4
4
  */
5
5
 
@@ -184,3 +184,11 @@
184
184
  display: none !important;
185
185
  }
186
186
  }
187
+
188
+ .blue-tooltip-nowrap {
189
+ &::after {
190
+ white-space: nowrap;
191
+ overflow: hidden;
192
+ text-overflow: ellipsis;
193
+ }
194
+ }
@@ -111,15 +111,6 @@
111
111
 
112
112
  &[draggable] {
113
113
  cursor: move;
114
- background-image: url(data:image/svg+xml,%3Csvg%20fill%3D%22currentColor%22%20class%3D%22bi%20bi-grip-vertical%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M7%202a1%201%200%2011-2%200%201%201%200%20012%200m3%200a1%201%200%2011-2%200%201%201%200%20012%200M7%205a1%201%200%2011-2%200%201%201%200%20012%200m3%200a1%201%200%2011-2%200%201%201%200%20012%200M7%208a1%201%200%2011-2%200%201%201%200%20012%200m3%200a1%201%200%2011-2%200%201%201%200%20012%200m-3%203a1%201%200%2011-2%200%201%201%200%20012%200m3%200a1%201%200%2011-2%200%201%201%200%20012%200m-3%203a1%201%200%2011-2%200%201%201%200%20012%200m3%200a1%201%200%2011-2%200%201%201%200%20012%200%22%2F%3E%3C%2Fsvg%3E);
115
- background-repeat: no-repeat;
116
- background-position: 0 50%;
117
- background-size: 1rem;
118
-
119
- // &::before {
120
- // transform: unset;
121
- // // transition: unset;
122
- // }
123
114
 
124
115
  &:active {
125
116
  box-shadow: inset 0 0 0.25rem;
@@ -125,6 +125,7 @@ export interface MenuItemProps {
125
125
  * **Important:** To make draggable menu items work in Firefox, the elementType must not be `"button"`. Set it to something else, like `"div"`.
126
126
  */
127
127
  draggable?: boolean;
128
+ hideDraggableIcon?: boolean;
128
129
  "data-tooltip"?: string;
129
130
  /**
130
131
  * Specifies whether an element is disabled or not.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blue-react",
3
- "version": "9.5.1",
3
+ "version": "9.5.3",
4
4
  "description": "Blue React Components",
5
5
  "license": "LGPL-3.0-or-later",
6
6
  "main": "index.js",