-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(ɵcomponents): rename
SciParamsEnterComponent
to `SciKeyVal…
…ueFieldComponent` BREAKING CHANGE: Renaming `SciParamsEnterComponent` introduced a breaking change. To migrate: - Import `SciKeyValueFieldComponent` instead of `SciParamsEnterComponent` - Change input from `paramsFormArray` to `keyValueFormArray` - Use `SciParamsEnterComponent#toMap` instead of `SciParamsEnterComponent#toParamsMap` - Use `SciParamsEnterComponent#toDictionary` instead of `SciParamsEnterComponent#toParamsDictionary`
- Loading branch information
1 parent
fec29be
commit b591d30
Showing
11 changed files
with
84 additions
and
84 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
41 changes: 41 additions & 0 deletions
41
apps/components/src/app/sci-key-value-field-page/sci-key-value-field-page.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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<h1>sci-key-value-field (ɵ)</h1> | ||
|
||
<sci-key-value-field [title]="'title'" | ||
[removable]="true" | ||
[addable]="true" | ||
[keyValueFormArray]="formArray"> | ||
</sci-key-value-field> | ||
<sci-key-value-field [title]="'title'" | ||
[removable]="true" | ||
[addable]="false" | ||
[keyValueFormArray]="formArray"> | ||
</sci-key-value-field> | ||
<sci-key-value-field [title]="'title'" | ||
[removable]="false" | ||
[addable]="true" | ||
[keyValueFormArray]="formArray"> | ||
</sci-key-value-field> | ||
<sci-key-value-field [title]="'title'" | ||
[removable]="false" | ||
[addable]="false" | ||
[keyValueFormArray]="formArray"> | ||
</sci-key-value-field> | ||
<sci-key-value-field [removable]="true" | ||
[addable]="true" | ||
[keyValueFormArray]="formArray"> | ||
</sci-key-value-field> | ||
<sci-key-value-field [removable]="true" | ||
[addable]="false" | ||
[keyValueFormArray]="formArray"> | ||
</sci-key-value-field> | ||
<sci-key-value-field [removable]="false" | ||
[addable]="true" | ||
[keyValueFormArray]="formArray"> | ||
</sci-key-value-field> | ||
<sci-key-value-field [removable]="false" | ||
[addable]="false" | ||
[keyValueFormArray]="formArray"> | ||
</sci-key-value-field> | ||
|
||
<button class="print" (click)="onPrint()">Print</button> | ||
<output *ngIf="output">{{output | json}}</output> |
File renamed without changes.
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
41 changes: 0 additions & 41 deletions
41
apps/components/src/app/sci-params-enter-page/sci-params-enter-page.component.html
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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
File renamed without changes.
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