Skip to content

Commit

Permalink
Fix popup position on iphone (#732)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebrehault authored Nov 4, 2024
1 parent 3c14fcb commit 571c465
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 37 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# 2.67.7 (2024-11-04)

### Bug fix

- **Popup**: Fix parent container position on iPhone Safari

# 2.67.6 (2024-10-21)

### Bug fix

- **Toggle**: mark as dirty when the user changes the value
ss

# 2.67.5 (2024-09-10)

### Bug fix
Expand Down
70 changes: 35 additions & 35 deletions projects/pastanaga-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
{
"name": "@guillotinaweb/pastanaga-angular",
"description": "Provides Pastanaga UI elements as Angular components",
"version": "2.67.6",
"license": "MIT",
"keywords": [
"angular",
"pastanaga"
],
"repository": {
"type": "git",
"url": "git+https://github.com/plone/pastanaga-angular"
},
"bugs": {
"url": "https://github.com/plone/pastanaga-angular/issues"
},
"peerDependencies": {
"@angular/animations": "^17.0.6",
"@angular/cdk": "^17.0.3",
"@angular/common": "^17.0.6",
"@angular/core": "^17.0.6",
"@angular/forms": "^17.0.6",
"@angular/platform-browser": "^17.0.6",
"@angular/platform-browser-dynamic": "^17.0.6",
"@angular/router": "^17.0.6",
"@ng-web-apis/common": "^2.1.0",
"angular-svg-icon": "^17.0.0",
"date-fns": "^3.0.0",
"rxjs": "^7.8.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"tslib": "^2.4.0"
}
"name": "@guillotinaweb/pastanaga-angular",
"description": "Provides Pastanaga UI elements as Angular components",
"version": "2.67.7",
"license": "MIT",
"keywords": [
"angular",
"pastanaga"
],
"repository": {
"type": "git",
"url": "git+https://github.com/plone/pastanaga-angular"
},
"bugs": {
"url": "https://github.com/plone/pastanaga-angular/issues"
},
"peerDependencies": {
"@angular/animations": "^17.0.6",
"@angular/cdk": "^17.0.3",
"@angular/common": "^17.0.6",
"@angular/core": "^17.0.6",
"@angular/forms": "^17.0.6",
"@angular/platform-browser": "^17.0.6",
"@angular/platform-browser-dynamic": "^17.0.6",
"@angular/router": "^17.0.6",
"@ng-web-apis/common": "^2.1.0",
"angular-svg-icon": "^17.0.0",
"date-fns": "^3.0.0",
"rxjs": "^7.8.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"tslib": "^2.4.0"
}
}
2 changes: 1 addition & 1 deletion projects/pastanaga-angular/src/lib/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export function getFixedRootParent(element: HTMLElement): HTMLElement {
style.transform !== 'none' ||
style.perspective !== 'none' ||
style.filter !== 'none' ||
style.containerType !== 'normal'
(!!style.containerType && style.containerType !== 'normal')
) {
return element;
} else {
Expand Down

0 comments on commit 571c465

Please sign in to comment.