-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8297dc5
commit b2a0bf8
Showing
22 changed files
with
867 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below. | ||
# For additional information regarding the format and rule options, please see: | ||
# https://github.com/browserslist/browserslist#queries | ||
|
||
# For the full list of supported browsers by the Angular framework, please see: | ||
# https://angular.io/guide/browser-support | ||
|
||
# You can see what browsers were selected by your queries by running: | ||
# npx browserslist | ||
|
||
last 3 Electron major versions | ||
last 4 Chrome version | ||
last 4 Firefox version | ||
last 2 Edge major versions | ||
last 4 Safari major versions | ||
last 2 iOS major versions | ||
Firefox ESR | ||
not IE 9-10 # Angular support for IE 9-10 has been deprecated and will be removed as of Angular v11. To opt-in, remove the 'not' prefix on this line. | ||
not IE 11 # Angular supports IE 11 only as an opt-in. To opt-in, remove the 'not' prefix on this line. |
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,39 @@ | ||
<div style="text-align:left; font-weight: bold; font-size: 1.5em"> | ||
@senzing/sdk-components-ng/examples/search-with-results-and-details | ||
</div> | ||
<div style="text-align:left; text-decoration: italic; font-size: 0.8em; margin: 2px 0 10px 0;"> | ||
An example Angular app showing usage of the sz-search, sz-search-results, | ||
and sz-entity-detail components working together | ||
</div> | ||
|
||
<!-- start search box --> | ||
<div class="component-example"> | ||
<sz-search | ||
#searchBox | ||
name="Acmemobil" | ||
phone="702-333-3333" | ||
address="909 Jenga Way Las Vegas NV 89111" | ||
showIdentifierTypesPicker="false" | ||
disableIdentifierOptions="SSN_LAST4" | ||
enableIdentifierOptions="SOCIAL_NETWORK" | ||
(resultsChange)="onSearchResults($event)" | ||
(resultsCleared)="onSearchResultsCleared($event)" | ||
(exception)="onSearchException($event)" | ||
(parameterChange)="onSearchParameterChange($event)"></sz-search> | ||
</div> | ||
<!-- end search box --> | ||
<!-- start data table results --> | ||
<sz-data-table></sz-data-table> | ||
<!-- end data table results --> | ||
|
||
<!-- start search results --> | ||
<div class="component-example"> | ||
<sz-search-results *ngIf="showSearchResults" | ||
[results]="currentSearchResults" | ||
[parameters]="currentSearchParameters" | ||
showWhyComparisonButton="false" | ||
showHowButton="true" | ||
(howButtonClick)="onHowButtonClick($event)" | ||
(resultClick)="onSearchResultClick($event)"></sz-search-results> | ||
</div> | ||
<!-- end search results --> |
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,19 @@ | ||
|
||
:host { | ||
.download-pdf { | ||
padding: 5px 10px; | ||
display: inline-flex; | ||
justify-content: center; | ||
text-align: center; | ||
align-items: center; | ||
|
||
svg { margin-right: 5px; } | ||
} | ||
} | ||
|
||
.graph-context-menu { | ||
border: 1px solid #686868; | ||
.disabled { | ||
display: none; | ||
} | ||
} |
Oops, something went wrong.