BREAKING CHANGES
- All Z-Stack and 3D Push properties was merged into
zStack
object. Readme
let settings = {
...
zStack: {
pushElements: string[];
minPushHeight?: number;
cardYOffset?: number;
cardZScale?: number;
cardContrast?: number;
stackZAngle?: number;
}
}
Extra
Features
- 3D Push transitions and gestures now available as cumulative options with
pushElements
property. Define array of elements which will be pushed when main element execute transitions. All styles from all elements will be accumulated together.
let settings = {
...
zStack: {
pushElements: ['.card-1', '.card-2', '.card-3']
}
}
Bug Fixes
- Click to elements fixed with
.disableDrag()
method #140
- Fixed css variable
--cupertino-pane-icon-close-color
#139
- Fixed pane jump on drag with positive scroll from lower breakpoints #135