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/components/MenuItem.js +10 -1
- package/dist/style.css +9 -12
- package/dist/style.min.css +3 -3
- package/dist/style.scss +1 -1
- package/dist/styles/_tooltips.scss +8 -0
- package/dist/styles/mixins/_sidebar.scss +0 -9
- package/dist/types/components/MenuItem.d.ts +1 -0
- package/package.json +1 -1
package/dist/style.scss
CHANGED
|
@@ -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.
|