-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Fixes - Revert change to icons (#1857) made in v1.16.6
- Loading branch information
Showing
8 changed files
with
22 additions
and
27 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 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,3 +1,3 @@ | ||
<span class="Icon Icon--{{iconName}} {{classNames}}" aria-hidden="true"> | ||
<div class="Icon Icon--{{iconName}} {{classNames}}" aria-hidden="true"> | ||
{{icon iconName complexContentsParams}} | ||
</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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<span class="Icon Icon--{{name}} {{classNames}}" aria-hidden="true"> | ||
<div class="Icon Icon--{{name}} {{classNames}}" aria-hidden="true"> | ||
{{#if iconUrl}} | ||
<img src="{{iconUrl}}" alt="" class="Icon-image"> | ||
{{else}} | ||
{{icon iconName complexContentsParams}} | ||
{{/if}} | ||
</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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<span class="Icon Icon--{{#if iconName}}{{iconName}}{{else}}custom{{/if}} {{classNames}}" aria-hidden="true"> | ||
<div class="Icon Icon--{{#if iconName}}{{iconName}}{{else}}custom{{/if}} {{classNames}}" aria-hidden="true"> | ||
{{#if iconUrl}} | ||
<img src="{{iconUrl}}" alt="" class="Icon-image"> | ||
{{else}} | ||
{{icon iconName complexContentsParams}} | ||
{{/if}} | ||
</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 |
---|---|---|
@@ -1,41 +1,41 @@ | ||
{{#if showLoadingIndicator}} | ||
{{#if customLoadingIconUrl}} | ||
<span class="yxt-SearchBar-CustomLoadingImage js-yxt-SearchBar-LoadingIndicator js-yxt-SearchBar-Icon yxt-SearchBar-Icon--inactive"> | ||
<div class="yxt-SearchBar-CustomLoadingImage js-yxt-SearchBar-LoadingIndicator js-yxt-SearchBar-Icon yxt-SearchBar-Icon--inactive"> | ||
{{> icons/iconPartial iconUrl=customLoadingIconUrl}} | ||
</span> | ||
</div> | ||
{{else}} | ||
<span class="yxt-SearchBar-AnimatedIcon js-yxt-SearchBar-LoadingIndicator yxt-SearchBar-LoadingIndicator js-yxt-SearchBar-Icon | ||
<div class="yxt-SearchBar-AnimatedIcon js-yxt-SearchBar-LoadingIndicator yxt-SearchBar-LoadingIndicator js-yxt-SearchBar-Icon | ||
yxt-SearchBar-Icon--inactive Icon--lg"> | ||
<svg class= "yxt-SearchBar-LoadingIndicator-AnimatedIcon" viewBox="0 0 72 72"> | ||
<circle class="yxt-SearchBar-LoadingIndicator-Circle" cx="36" cy="36" r="33" stroke="black" stroke-width="3" fill="none"/> | ||
</svg> | ||
</span> | ||
</div> | ||
{{/if}} | ||
{{/if}} | ||
|
||
{{#if submitIcon}} | ||
<span class="yxt-SearchBar-buttonImage js-yxt-SearchBar-buttonImage js-yxt-SearchBar-Icon"> | ||
<div class="yxt-SearchBar-buttonImage js-yxt-SearchBar-buttonImage js-yxt-SearchBar-Icon"> | ||
{{> icons/builtInIcon iconName=submitIcon}} | ||
</span> | ||
</div> | ||
{{else if _config.customIconUrl}} | ||
<span class="yxt-SearchBar-buttonImage js-yxt-SearchBar-buttonImage js-yxt-SearchBar-Icon"> | ||
<div class="yxt-SearchBar-buttonImage js-yxt-SearchBar-buttonImage js-yxt-SearchBar-Icon"> | ||
{{> icons/iconPartial iconUrl=_config.customIconUrl}} | ||
</span> | ||
</div> | ||
{{else}} | ||
<span class="yxt-SearchBar-AnimatedIcon js-yxt-AnimatedForward js-yxt-SearchBar-Icon | ||
<div class="yxt-SearchBar-AnimatedIcon js-yxt-AnimatedForward js-yxt-SearchBar-Icon | ||
{{#unless autoFocus}} yxt-SearchBar-Icon--inactive{{/unless}}"> | ||
{{> icons/builtInIcon | ||
iconName='yext_animated_forward' | ||
classNames='yxt-SearchBar-MagnifyingGlass--static Icon--lg' | ||
complexContentsParams=forwardIconOpts.complexContentsParams | ||
}} | ||
</span> | ||
<span class="yxt-SearchBar-AnimatedIcon js-yxt-AnimatedReverse js-yxt-SearchBar-Icon | ||
</div> | ||
<div class="yxt-SearchBar-AnimatedIcon js-yxt-AnimatedReverse js-yxt-SearchBar-Icon | ||
{{#if autoFocus}} yxt-SearchBar-Icon--inactive{{/if}}"> | ||
{{> icons/builtInIcon | ||
iconName='yext_animated_reverse' | ||
classNames='yxt-SearchBar-Yext--static Icon--lg' | ||
complexContentsParams=forwardIconOpts.complexContentsParams | ||
}} | ||
</span> | ||
</div> | ||
{{/if}} |
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 |
---|---|---|
|
@@ -14,4 +14,4 @@ | |
{{/if}} | ||
</div> | ||
<span class="yxt-SearchBar-voiceSearchText sr-only"></span> | ||
</div> | ||
</div> |