-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(typescript): support typescript 4 * fix(comparison-table): fix inherited properties * fix(progress-indicator): fix inherited properties * fix(link): fix inherited properties * fix(number-stepper): fix inherited properties * fix(circle-toggle): fix inherited properties * fix(card): fix inherited properties * fix(card): remove unneeded selectable-card base class * fix(dropdown): fix inherited properties from NxDropdownControl * fix(progress-indicator): call ngOnChanges of CDKStep * fix: add any type conversion in docs-cli * fix: input and output not recognized correctly in docs-generation * fix(dropdown): remove unneeded super() call * docs: add comment about ngOnChanges(changes)
- Loading branch information
1 parent
38b9652
commit c1330ad
Showing
14 changed files
with
83 additions
and
90 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 was deleted.
Oops, something went wrong.
20 changes: 9 additions & 11 deletions
20
projects/ng-aquila/src/circle-toggle/circle-toggle/toggle-button.ts
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,16 +1,14 @@ | ||
/** @docs-private */ | ||
export abstract class ToggleButton { | ||
id; | ||
value; | ||
checked; | ||
name; | ||
negative; | ||
disabled; | ||
tabIndex; | ||
checkedChange; | ||
selectionChange; | ||
toggleButton; | ||
abstract id; | ||
abstract value; | ||
abstract checked; | ||
abstract name; | ||
abstract negative; | ||
abstract disabled; | ||
abstract checkedChange; | ||
abstract selectionChange; | ||
abstract toggleButton; | ||
abstract toggle(event); | ||
abstract setGroupSelection(); | ||
|
||
} |
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
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