Items are not clearly visible during drag
Dragging items are not clearly visible as shown in attached screenshot. I have tried making [ng-drag].dragging { position: relative; } and [ng-drag].dragging { position: absolute; } but it didn't work. I also noticed an issue (#103) been reported and marked as closed. Could you please advice how to fix this?

Yes, I just upgraded from an earlier version and it appears the lib is now using transform3D when dragging. This appears to override the z-index.
I've been researching but have been unable to identify a fix.
Additionally the solution referenced in #103 doesn't solve this for me.
set allow-transform='false'
@fatlinesofcode still doesn't fix it
To be more precise:
If data-allow-transform is not present, then z-index is set to 9999 .. and element transofrmation is enabled, but z-index doesn't seem to work.
When the data-allow-transform is set to false, there are no transformations, but also z-index isn't set. It works if you set it manually. But there is another problem - when setting it to false, element doesn't occupy original space anymore.
Setting position:absolute did the trick
[ng-drag].dragging {
position: absolute;
}