This repository has been archived by the owner on Oct 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
feat(spinner) Added spinner on refresh and select2 #1779
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
b321ae6
Added the select2 spinner on updating
Jefiozie 20f2d70
Added bootstrap refreshicon
Jefiozie 50b6bf9
changed func. and added tests
Jefiozie 4915527
docs(README): fix angular-sanitize typo
bartolomeu ff8071d
feat(selectize): add support for multiple selection
gustavohenke 8196ee5
Fix: Quotation mark error
danivarga bcbaeb4
Merge pull request #1 from DaniVarga/patch-1
Jefiozie 51a0836
Update CHANGELOG.md (#1816)
katemihalikova e3be4d1
fix: ensure aria-activedescendant is correct
edclements e902ffc
fix: only apply listbox role when open
edclements f3194bf
fix(bootstrap): add search role
edclements 7ef10d4
feature(touch): set clickTriggeredSelect to true for touchend events
CMircea 440fd17
Added the select2 spinner on updating
Jefiozie 71790e8
Added bootstrap refreshicon
Jefiozie 57e4fb7
changed func. and added tests
Jefiozie 9a1f216
Fix: Quotation mark error
danivarga 5b70247
Merge branch 'spinner' of https://github.com/Jefiozie/ui-select into …
Jefiozie File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<div class="ui-select-match" data-value | ||
ng-repeat="$item in $select.selected track by $index" | ||
ng-click="$selectMultiple.activeMatchIndex = $index;" | ||
ng-class="{'active':$selectMultiple.activeMatchIndex === $index}" | ||
ui-select-sort="$select.selected"> | ||
<span class="ui-select-match-item" | ||
ng-class="{'select-locked':$select.isLocked(this, $index)}"> | ||
<span uis-transclude-append></span> | ||
<span class="remove ui-select-match-close" ng-hide="$select.disabled" ng-click="$selectMultiple.removeChoice($index)">×</span> | ||
</span> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<div class="ui-select-container selectize-control multi plugin-remove_button" ng-class="{'open': $select.open}"> | ||
<div class="selectize-input" | ||
ng-class="{'focus': $select.open, 'disabled': $select.disabled, 'selectize-focus' : $select.focus}" | ||
ng-click="$select.open && !$select.searchEnabled ? $select.toggle($event) : $select.activate()"> | ||
<div class="ui-select-match"></div> | ||
<input type="search" autocomplete="off" tabindex="-1" | ||
class="ui-select-search" | ||
ng-class="{'ui-select-search-hidden':!$select.searchEnabled}" | ||
placeholder="{{$selectMultiple.getPlaceholder()}}" | ||
ng-model="$select.search" | ||
ng-disabled="$select.disabled" | ||
aria-expanded="{{$select.open}}" | ||
aria-label="{{ $select.baseTitle }}" | ||
ondrop="return false;"> | ||
</div> | ||
<div class="ui-select-choices"></div> | ||
<div class="ui-select-no-choice"></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
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't you take into account the rejection case?
I think the best fit it will be something like
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bogdanalexe90 made a new PR with the adjustments.