-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into issue-28259-sdk-deployment-automation
- Loading branch information
Showing
163 changed files
with
2,149 additions
and
2,400 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
310 changes: 167 additions & 143 deletions
310
...l/dot-apps-configuration-detail-form/dot-apps-configuration-detail-form.component.spec.ts
Large diffs are not rendered by default.
Oops, something went wrong.
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
48 changes: 26 additions & 22 deletions
48
.../dot-container-create/dot-container-code/dot-add-variable/dot-add-variable.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,22 +1,26 @@ | ||
<p-dataView *ngIf="vm$ | async as vm" [value]="vm.fields" layout="list"> | ||
<ng-template let-field pTemplate="listItem"> | ||
<div class="dot-add-variable-list__item"> | ||
<div class="item__info"> | ||
<h3 [attr.data-testId]="'h3' + field.variable" class="info__title"> | ||
{{ field?.name }} | ||
</h3> | ||
<small class="info__label"> | ||
{{ field?.fieldTypeLabel }} | ||
</small> | ||
</div> | ||
<div class="item__action"> | ||
<button | ||
(click)="addCustomCode(field)" | ||
[attr.data-testId]="field.variable" | ||
[label]="'Add' | dm" | ||
class="p-button-outlined p-button-primary p-button-sm" | ||
pButton></button> | ||
</div> | ||
</div> | ||
</ng-template> | ||
</p-dataView> | ||
@if (vm$ | async; as vm) { | ||
<p-dataView [value]="vm.fields" layout="list"> | ||
<ng-template pTemplate="list" let-data> | ||
@for (field of data; track $index) { | ||
<div class="dot-add-variable-list__item"> | ||
<div class="item__info"> | ||
<h3 [attr.data-testId]="'h3' + field.variable" class="info__title"> | ||
{{ field?.name }} | ||
</h3> | ||
<small class="info__label"> | ||
{{ field?.fieldTypeLabel }} | ||
</small> | ||
</div> | ||
<div class="item__action"> | ||
<button | ||
(click)="addCustomCode(field)" | ||
[attr.data-testId]="field.variable" | ||
[label]="'Add' | dm" | ||
class="p-button-outlined p-button-primary p-button-sm" | ||
pButton></button> | ||
</div> | ||
</div> | ||
} | ||
</ng-template> | ||
</p-dataView> | ||
} |
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
Oops, something went wrong.