Skip to content

Commit

Permalink
fix(InteractiveTour): add Placement types from @floating-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
alecarn committed Sep 21, 2023
1 parent 8591e7c commit 6196cfe
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 23 deletions.
45 changes: 23 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
"@angular/platform-browser-dynamic": "^16.2.5",
"@angular/router": "^16.2.5",
"@azure/msal-angular": "^3.0.4",
"@floating-ui/utils": "^0.1.4",
"@mat-datetimepicker/core": "~12.0.0",
"@mdi/angular-material": "^7.2.96",
"@ngx-translate/core": "^15.0.0",
Expand Down
1 change: 1 addition & 0 deletions packages/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"@angular/core": "^16.2.5",
"@angular/material": "^16.2.4",
"@angular/platform-browser": "^16.2.5",
"@floating-ui/utils": "^0.1.4",
"@igo2/core": "^16.0.0-rc.0",
"@igo2/utils": "^16.0.0-rc.0",
"angular-shepherd": "16.0.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { Placement } from '@floating-ui/utils';

export interface InteractiveTourStep {
element?: string;
position?: string;
position?: Placement;
title?: string;
text: string;
beforeShow?: InteractiveTourAction;
Expand Down

0 comments on commit 6196cfe

Please sign in to comment.