-
Notifications
You must be signed in to change notification settings - Fork 463
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core):
Popup
add service for arbitrary portal items (#9605)
Co-authored-by: taiga-family-bot <[email protected]>
- Loading branch information
1 parent
bcaaef9
commit 6ab1756
Showing
11 changed files
with
41 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
<div class="t-root-content"><ng-content /></div> | ||
<tui-scroll-controls | ||
*ngIf="scrollbars()" | ||
class="t-root-scrollbar" | ||
/> | ||
<tui-dropdowns> | ||
<div class="t-root-content"> | ||
<ng-content /> | ||
</div> | ||
<ng-content select="tuiOverContent" /> | ||
<tui-dialogs /> | ||
<ng-content select="tuiOverDialogs" /> | ||
<tui-alerts /> | ||
<ng-content select="tuiOverAlerts" /> | ||
</tui-dropdowns> | ||
<ng-container #viewContainer /> | ||
<ng-content select="tuiOverContent" /> | ||
<tui-dialogs /> | ||
<ng-content select="tuiOverDialogs" /> | ||
<tui-alerts /> | ||
<ng-content select="tuiOverAlerts" /> | ||
<tui-dropdowns /> | ||
<ng-content select="tuiOverDropdowns" /> | ||
<tui-hints /> | ||
<ng-content select="tuiOverHints" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
export * from './breakpoint.service'; | ||
export * from './dark-theme.service'; | ||
export * from './format-date.service'; | ||
export * from './popup.service'; | ||
export * from './position.service'; | ||
export * from './visual-viewport.service'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import {Injectable} from '@angular/core'; | ||
import {TuiPortalService} from '@taiga-ui/cdk/classes'; | ||
|
||
@Injectable({ | ||
providedIn: 'root', | ||
}) | ||
export class TuiPopupService extends TuiPortalService {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,3 @@ body { | |
scroll-behavior: auto; | ||
} | ||
} | ||
|
||
html { | ||
font-size: 1em; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters