-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into ans_sonarcube_fixes
- Loading branch information
Showing
30 changed files
with
113 additions
and
92 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
Binary file removed
BIN
-3.31 MB
cfgov/unprocessed/apps/ccdb-search/npm-packages-offline-cache/@cfpb-ccdb5-ui-2.9.1.tgz
Binary file not shown.
Binary file added
BIN
+3.31 MB
cfgov/unprocessed/apps/ccdb-search/npm-packages-offline-cache/@cfpb-ccdb5-ui-2.9.2.tgz
Binary file not shown.
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# yarn lockfile v1 | ||
|
||
|
||
"@cfpb/[email protected].1": | ||
version "2.9.1" | ||
resolved "https://registry.yarnpkg.com/@cfpb/ccdb5-ui/-/ccdb5-ui-2.9.1.tgz#e66d1dce3e106f62e57bb5023ec1ae7ff738b236" | ||
integrity sha512-1+0vmoBgDcUzRT64pjklD0a6B0U1DaUV+w5weUEE9tE6kHfVr/t19Tf/3fbcNT3l3Zzfvmm7XDTwirX+ybsEjw== | ||
"@cfpb/[email protected].2": | ||
version "2.9.2" | ||
resolved "https://registry.yarnpkg.com/@cfpb/ccdb5-ui/-/ccdb5-ui-2.9.2.tgz#497ad56cf589735e74702a5219b02538f5d25659" | ||
integrity sha512-hmxIVxaBSxSEh7jzjdSIi0wjj/V0V1fVoveX5d9ovvLVUzmHPgHJE/krtfaCnlDkcHp2s9qv9Ta1wMYNKO256A== |
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 |
---|---|---|
@@ -1,36 +1,43 @@ | ||
{# ========================================================================== | ||
|
||
breadcrumbs.render() | ||
breadcrumbs.render() | ||
|
||
========================================================================== | ||
========================================================================== | ||
|
||
Description: | ||
Description: | ||
|
||
Create breadcrumb markup when given: | ||
Create breadcrumb markup when given: | ||
|
||
breadcrumbs: An array of tuples used to display nav items. | ||
Format: (href, live, title) | ||
breadcrumbs: An array of tuples used to display nav items. | ||
Format: (href, live, title) | ||
|
||
========================================================================== #} | ||
========================================================================== #} | ||
|
||
{% macro render( breadcrumbs ) %} | ||
<nav class="m-breadcrumbs" aria-label="{{ _('Breadcrumbs') }}"> | ||
|
||
{# Change slash direction in RTL languages. #} | ||
{% if language == 'ar' %} | ||
{% set crumb_divider = ' \\ ' %} | ||
{% else %} | ||
{% set crumb_divider = ' / ' %} | ||
{% endif %} | ||
|
||
{% for crumb in breadcrumbs %} | ||
|
||
{{ crumb_divider }} | ||
|
||
{% macro render( breadcrumbs ) %} | ||
<nav class="breadcrumbs" aria-label="{{ _('Breadcrumbs') }}"> | ||
{{ svg_icon('left') }} | ||
{% for crumb in breadcrumbs %} | ||
{% if crumb.href or crumb.live %} | ||
<a href="{{ crumb.href if crumb.href else pageurl(crumb) }}"> | ||
{{ crumb.title | e }} | ||
<a class="m-breadcrumbs_crumb" | ||
href="{{ crumb.href if crumb.href else pageurl(crumb) }}"> | ||
{{ crumb.title }} | ||
</a> | ||
{% else %} | ||
<span class="breadcrumbs_text">{{ crumb.title | e }}</span> | ||
{% endif %} | ||
{% if not loop.last %} | ||
{% if language == 'ar' %} | ||
\ | ||
{% else %} | ||
/ | ||
{% endif %} | ||
<span class="m-breadcrumbs_crumb"> | ||
{{ crumb.title }} | ||
</span> | ||
{% endif %} | ||
{% endfor %} | ||
</nav> | ||
{% endmacro %} | ||
|
||
{% endfor %} | ||
</nav> | ||
{% endmacro %} |
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
Binary file not shown.
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
Binary file not shown.
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
Binary file not shown.
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
Binary file not shown.
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
Binary file not shown.
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
Binary file not shown.
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
Binary file not shown.
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
Binary file not shown.
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.