-
Notifications
You must be signed in to change notification settings - Fork 832
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Work for #5551 - Implement TOC navigation - fixed vr-tests - header/f…
…ooter containers rendering - no wrapper now
- Loading branch information
Showing
8 changed files
with
46 additions
and
13 deletions.
There are no files selected for viewing
15 changes: 11 additions & 4 deletions
15
packages/survey-angular-ui/src/components-container.component.html
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,7 +1,14 @@ | ||
<ng-template #template> | ||
<div *ngIf="components.length > 0" class="sv-components-column"> | ||
<ng-container *ngFor="let component of components"> | ||
<ng-template [component]="{ name: component.component, data: { survey: survey, model: component.data } }"></ng-template> | ||
<ng-container *ngIf="isNeedRenderWrapper"> | ||
<div *ngIf="components.length > 0" class="sv-components-column"> | ||
<ng-container *ngFor="let component of components"> | ||
<ng-template [component]="{ name: component.component, data: { survey: survey, model: component.data } }"></ng-template> | ||
</ng-container> | ||
</div> | ||
</ng-container> | ||
<ng-container *ngIf="!isNeedRenderWrapper && components.length > 0"> | ||
<ng-container *ngFor="let component of components"> | ||
<ng-template [component]="{ name: component.component, data: { survey: survey, model: component.data } }"></ng-template> | ||
</ng-container> | ||
</ng-container> | ||
</div> | ||
</ng-template> |
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
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