-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update go-button.component.scss Changes for split button option text not to wrap and grow towards left. * GOP-877-BUG-minimum_height_for_textarea Fixed GOP-876 uniform card margins, GOP-877 set minimum_height_for_textarea and GOP-847 file uploading component bug fix. * Changes_bugfix_chore_task * alignment corrected for icon button css changes for button padding * codeclimate issue fix * Codeclimate fix * remove extra padding * Initial components and module interaction * Accordion_style changes Accordion styles Default Slim Dark * Changed dark theme * Changes [CHORE] 868 max height for toast Max height for the toast notification will not have an overflow unless specified. * Changes [CHORE] 767 action sheet design changes #767 1. Handled appearance of scrollbar on accordion's expansion by adjusting the height. 2. Font style changes for the shell area. 3. Fixed the colour issue for the danger action sheet. * Update _forms.scss * Changes [CHORE] 767 action sheet design changes #891 Code review suggestion changes * Determinate and indeterminate progress bar * style update * Changes [CHORE] 868 max height for toast #890 1. Code review suggested changes. 2. Change in the code's header part in the documentation. * UT * safari styling fix * Fixing code climate issues * Changes [CHORE] 868 max height for toast #890 Code review suggested changes. * Changes [CHORE] 767 action sheet design changes #891 Code review suggestion changes * comment line message * clear code climate issues * code climate fix * dark theme color changes done * issue fixed * removed white spaces * BUGFIX_TIME_PICKER_ALIGNMENT-CHORE_BACKGROUND_COLOR_CHANGE * ALIGNMENT AND NAMING CHANGES * Fix for duplicate modal and offcanvas content * ALIGNMENT_CHANGES * removing whitespace * Re-run Checks * Re-run Checks * Increasing test coverage * Update github src * GOP-807 empty checkin to trigger build * Fix select all filtered list (#914) * bug fixes for select all filtered list * single item, add remove handled * handling controls initial value incase of typeahead provided * changes in handling controls initial value * small condition fix * test cases updated and condition change in init control value * formatting changes * formatting changes * edge case handled while removing selected item * formatting changes * adding count to select all * adding count to select all * linting errors fixed * typo fixed * refactored code for better understanding * refactoring * lint fix * indentation changes, private methods and variables grouped, minor ux changes * renaming methods * karma config thresold changes --------- Co-authored-by: Vishal Shah <[email protected]> * v1.16.0 (#915) * Incrementing minor version Changes were made to upgrade "select all filter list" * Fixing patch version to be 0 Forgot to do this before... * #918 enhancement of go-date-picker * #918 - enhance go-date-picker * Added inout property to control the visibility of go-form-error. Implemented in all controls with go-form-error. * updated the documentation. * Rearranged the property * Used single quote instead of double quotes. * Added few more tests * #918 - Added test cases * Added app-drawer stylings * Fixed code climate lint errors. * Fixed code climate lint errors. * Fixed code climate lint errors. * Fixed code climate lint errors. * Update CSS for Drodown and add test cases * add few test cases based on background color * Add some more test cases for disable color * Resolve build issue and update test cases * Resolve code coverage issue and add few more test cases * Update test cases for enable and disable color for dropdown * Updating version number to reflect recent changes --------- Co-authored-by: sudheepdivakargithub <[email protected]> Co-authored-by: adhiyan-tangoe <[email protected]> Co-authored-by: Saravanan Muralidharan <[email protected]> Co-authored-by: Pooja-kj <[email protected]> Co-authored-by: Vijeta7 <[email protected]> Co-authored-by: [email protected] <[email protected]> Co-authored-by: RonMichaud <[email protected]> Co-authored-by: Vishal Shah <[email protected]> Co-authored-by: Sinchana <[email protected]> Co-authored-by: CORP\Sudheep.Divakar <[email protected]> Co-authored-by: Amit Patra <[email protected]> Co-authored-by: ankit-tangoe <[email protected]>
- Loading branch information
1 parent
669fcf9
commit 121e121
Showing
26 changed files
with
984 additions
and
548 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
33 changes: 21 additions & 12 deletions
33
projects/go-lib/src/lib/components/go-checkbox/go-checkbox.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,19 +1,28 @@ | ||
<div> | ||
<label [for]="_id" | ||
class="go-form__label go-form__label--inline go-form__label--checkbox-container" | ||
[ngClass]="{'go-form__label--dark': theme === 'dark'}"> | ||
<label | ||
[for]="_id" | ||
class="go-form__label go-form__label--inline go-form__label--checkbox-container" | ||
[ngClass]="{ 'go-form__label--dark': theme === 'dark' }" | ||
> | ||
{{ label }} | ||
<go-required-text [control]="control"></go-required-text> | ||
<input [id]="_id" | ||
class="go-form__checkbox go-form__checkbox--hidden" | ||
[ngClass]="inputClasses" | ||
type="checkbox" | ||
[formControl]="control" | ||
#hiddenInputRef> | ||
<input | ||
[id]="_id" | ||
class="go-form__checkbox go-form__checkbox--hidden" | ||
[ngClass]="inputClasses" | ||
type="checkbox" | ||
[formControl]="control" | ||
#hiddenInputRef | ||
/> | ||
<span class="go-form__custom-checkbox"></span> | ||
</label> | ||
|
||
<go-hint *ngFor="let hint of hints" [message]="hint" [theme]="theme"></go-hint> | ||
|
||
<go-form-errors [control]="control"></go-form-errors> | ||
<go-hint | ||
*ngFor="let hint of hints" | ||
[message]="hint" | ||
[theme]="theme" | ||
></go-hint> | ||
<div *ngIf="!hideFieldError"> | ||
<go-form-errors [control]="control"></go-form-errors> | ||
</div> | ||
</div> |
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.