npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@searchstax-inc/searchstudio-ux-angular

v1.1.23

Published

Library to build searchstudio search page

Downloads

142

Readme

searchstudio-ux-angular

Library to build searchstudio search page

Installation

npm install following package npm install --save @searchstax-inc/searchstudio-ux-angular

Usage

After importing SearchstaxWrapper component needs to wrap all other components.

Make sure your module imports SearchstudioUxAngularModule:

imports: [ SearchstudioUxAngularModule ],

Initialization

Initialization object needs to be of type: ISearchstaxConfig

Initialization example

Add following code to your ts file and fill config

 config = {
    searchURL: '',
    suggesterURL: '',
    trackApiKey: '',
    searchAuth: '',
    authType: 'basic',
    relatedSearchesAPIKey: '',
    relatedSearchesURL: '',
    analyticsBaseUrl: 'https://analytics-us-east.searchstax.com'
  }

  beforeSearch(props: ISearchObject) {
    // gets searchProps, if passed along further search will execute, if null then event gets canceled
    // props can be modified and passed along
    const propsCopy = { ...props }
    // propsCopy.term = propsCopy.term;
    return propsCopy
  }
  afterSearch(results: ISearchstaxParsedResult[]) {
    const copy = [...results]
    // copy.splice(0, 1);
    console.log('copy', copy);
    return copy
  }

  afterAutosuggest(result: ISearchstaxSuggestResponse) {
    const copy = { ...result }
    return copy
  }

  beforeAutosuggest(props: ISearchstaxSuggestProps) {
    // gets suggestProps, if passed along further autosuggest will execute, if null then event gets canceled
    // props can be modified and passed along
    const propsCopy = { ...props }
    // propsCopy.term = propsCopy.term + '222';
    return propsCopy
  }

  afterLinkClick(results: ISearchstaxParsedResult): ISearchstaxParsedResult {
    // gets result that was clicked, if passed along further functions will execute, if null then event gets canceled
    const copy = { ...results }

    return copy
  }

  initialized(searchstax: Searchstax) {
    console.log('searchstax', searchstax);
  }

Initial layout

Our base theme is designed with this layout in mind but it is optional as all widgets have id parameters and can be attached to any element.

<div>
  <app-searchstax-wrapper
    [searchURL]="config.searchURL"
    [suggesterURL]="config.suggesterURL"
    [trackApiKey]="config.trackApiKey"
    [searchAuth]="config.searchAuth"
    [beforeSearch]="beforeSearch"
    [afterSearch]="afterSearch"
    (initialized)="initialized($event)"
  >
    <div class="searchstax-page-layout-container">
      <app-searchstax-input
        [afterAutosuggest]="afterAutosuggest"
        [beforeAutosuggest]="beforeAutosuggest"
        [suggestAfterMinChars]="3"
      ></app-searchstax-input>
      <div class="search-details-container">
        <app-searchstax-search-feedback></app-searchstax-search-feedback>
        <app-searchstax-search-sorting></app-searchstax-search-sorting>
      </div>
      <div class="searchstax-page-layout-facet-result-container">
        <div class="searchstax-page-layout-facet-container">
          <app-searchstax-search-facets
            [facetingType]="'showUnavailable'"
            [itemsPerPageDesktop]="2"
            [itemsPerPageMobile]="99"
          ></app-searchstax-search-facets>
        </div>
        <div class="searchstax-page-layout-result-container">
          <app-searchstax-external-promotions></app-searchstax-external-promotions>
          <app-searchstax-results
            [afterLinkClick]="afterLinkClick"
          ></app-searchstax-results>
          <app-searchstax-related-searches
            [relatedSearchesURL]="config.relatedSearchesURL"
            [relatedSearchesAPIKey]="config.relatedSearchesAPIKey"
          ></app-searchstax-related-searches>

          <app-searchstax-search-pagination></app-searchstax-search-pagination>
        </div>
      </div>
    </div>
  </app-searchstax-wrapper>
</div>

widgets

Following widgets are available:

Input Widget

Result Widget

Facets Widget

Pagination Widget

SearchFeedback Widget

RelatedSearches Widget

ExternalPromotions Widget

sorting Widget

Input Widget

example of input widget initialization with minimum options

<app-searchstax-input
        [afterAutosuggest]="afterAutosuggest"
        [beforeAutosuggest]="beforeAutosuggest"
        [suggestAfterMinChars]="3"
      ></app-searchstax-input>

example of input widget initialization with template override

<app-searchstax-input
        [afterAutosuggest]="afterAutosuggest"
        [beforeAutosuggest]="beforeAutosuggest"
        [suggestAfterMinChars]="3"
        [templateOverride]="inputTemplate"
      >
        <ng-template
          #inputTemplate
          let-suggestions="suggestions"
          let-onMouseLeave="onMouseLeave"
          let-onMouseOver="onMouseOver"
          let-onMouseClick="onMouseClick"
          let-context="context"
        >
          <div class="searchstax-search-input-wrapper">
            <input
              type="text"
              id="searchstax-search-input"
              class="searchstax-search-input"
              placeholder="SEARCH FOR..."
            />
            <div
              class="searchstax-autosuggest-container"
              [ngClass]="{ hidden: suggestions.length === 0 }"
              (mouseleave)="onMouseLeave(context)"
            >
              <div class="searchstax-autosuggest-item" *ngFor="let suggestion of suggestions">
                <div
                  class="searchstax-autosuggest-item-term-container"
                  [innerHtml]="suggestion.term"
                  (mouseover)="onMouseOver(suggestion, context)"
                  (click)="onMouseClick($event, context)"
                ></div>
              </div>
            </div>
            <button class="searchstax-spinner-icon" id="searchstax-search-input-action-button"></button>
          </div>
        </ng-template>
      </app-searchstax-input>

Result Widget

example of results widget initialization with minimum options

<app-searchstax-results
            [afterLinkClick]="afterLinkClick"
          ></app-searchstax-results>

example of results widget initialization with minimum options and infinite scroll behavior

<app-searchstax-results
            [afterLinkClick]="afterLinkClick"
            [resultsPerPage]="3"
            [renderMethod]="'infiniteScroll'"
          ></app-searchstax-results>

example of result widget initialization with template override

<app-searchstax-results
            [afterLinkClick]="afterLinkClick"
            [resultsTemplate]="resultsTemplate"
            [noResultsTemplate]="noResultsTemplate"
          >
            <ng-template
              #resultsTemplate
              let-searchResults="searchResults"
              let-resultClicked="resultClicked"
              let-isImage="isImage"
              let-context="context"
            >
              <div class="searchstax-search-results">
                <div
                  class="searchstax-search-result"
                  [ngClass]="{ 'has-thumbnail': searchResult.thumbnail }"
                  *ngFor="let searchResult of searchResults"
                >
                  <div *ngIf="searchResult.promoted" class="searchstax-search-result-promoted"></div>
                  <a
                    *ngIf="searchResult.url"
                    [href]="searchResult.url"
                    [attr.data-searchstax-unique-result-id]="searchResult.uniqueId"
                    (click)="resultClicked(searchResult, $event, context)"
                    class="searchstax-result-item-link"
                  ></a>
                  <div *ngIf="searchResult.ribbon" class="searchstax-search-result-ribbon">
                    {{ searchResult.ribbon }}
                  </div>
                  <img *ngIf="searchResult.thumbnail" [src]="searchResult.thumbnail" class="searchstax-thumbnail" />
                  <div class="searchstax-search-result-title-container">
                    <span class="searchstax-search-result-title">{{ searchResult.title }}</span>
                  </div>
                  <p *ngIf="searchResult.paths" class="searchstax-search-result-common">
                    {{ searchResult.paths }}
                  </p>
                  <p
                    *ngIf="searchResult.description"
                    class="searchstax-search-result-description searchstax-search-result-common"
                  >
                    {{ searchResult.description }}
                  </p>
                  <div *ngFor="let unmappedField of searchResult.unmappedFields">
                    <div *ngIf="isImage(unmappedField)" class="searchstax-search-result-image-container">
                      <img [src]="unmappedField.value" class="searchstax-result-image" />
                    </div>
                    <div *ngIf="!isImage(unmappedField)">
                      <p class="searchstax-search-result-common">
                        {{ unmappedField.value }}
                      </p>
                    </div>
                  </div>
                </div>
              </div>
            </ng-template>
            <ng-template #noResultsTemplate let-metadata="metadata" let-searchTerm="searchTerm">
              <div class="searchstax-no-results">
                Showing <strong>no results</strong> for
                <strong>"{{ searchTerm }}"</strong>
                <br />
                <span *ngIf="metadata?.spellingSuggestion"
                  >&nbsp;Did you mean
                  <a href="#" class="searchstax-suggestion-term">{{ metadata?.spellingSuggestion }}</a
                  >?</span
                >
              </div>
              <div>
                <p>
                  Try searching for search related terms or topics. We offer a wide variety of content to help you get
                  the information you need.
                </p>
                <p>Lost? Click on the ‘X” in the Search Box to reset your search.</p>
              </div>
            </ng-template>
          </app-searchstax-results>

Pagination Widget

example of pagination widget initialization with minimum options

<app-searchstax-search-pagination></app-searchstax-search-pagination>

example of pagination widget initialization with various options

<app-searchstax-search-pagination [templateOverride]="paginationTemplate">
            <ng-template
              #paginationTemplate
              let-paginationData="paginationData"
              let-previousPage="previousPage"
              let-nextPage="nextPage"
              let-context="context"
            >
              <div class="searchstax-pagination-container">
                <div class="searchstax-pagination-content">
                  <a
                    class="searchstax-pagination-previous"
                    (click)="previousPage($event, context)"
                    id="searchstax-pagination-previous"
                  >
                    &lt; Previous
                  </a>
                  <div class="searchstax-pagination-details">
                    {{ paginationData?.startResultIndex }} - {{ paginationData?.endResultIndex }} of
                    {{ paginationData?.totalResults }}
                  </div>
                  <a
                    class="searchstax-pagination-next"
                    (click)="nextPage($event, context)"
                    id="searchstax-pagination-next"
                    >Next ></a
                  >
                </div>
              </div>
            </ng-template>
          </app-searchstax-search-pagination>

example of pagination widget with infinite scroll

<app-searchstax-search-pagination [templateOverride]="paginationTemplate"
                                  [infiniteScrollTemplateOverride]="infiniteScrollTemplate">
            <ng-template
              #infiniteScrollTemplate
              let-paginationData="paginationData"
              let-nextPage="nextPage"
              let-context="context"
            >
              <div class="searchstax-pagination-container">
                <div class="searchstax-pagination-content">
                  <a
                    class="searchstax-pagination-load-more"
                    (click)="nextPage($event, context)"
                  >
                    Load More
                  </a>
                </div>
              </div>
            </ng-template>

            <ng-template
              #paginationTemplate
              let-paginationData="paginationData"
              let-previousPage="previousPage"
              let-nextPage="nextPage"
              let-context="context"
            >
              <div class="searchstax-pagination-container">
                <div class="searchstax-pagination-content">
                  <a
                    class="searchstax-pagination-previous"
                    (click)="previousPage($event, context)"
                    id="searchstax-pagination-previous"
                  >
                    &lt; Previous
                  </a>
                  <div class="searchstax-pagination-details">
                    {{ paginationData?.startResultIndex }} - {{ paginationData?.endResultIndex }} of
                    {{ paginationData?.totalResults }}
                  </div>
                  <a
                    class="searchstax-pagination-next"
                    (click)="nextPage($event, context)"
                    id="searchstax-pagination-next"
                    >Next ></a
                  >
                </div>
              </div>
            </ng-template>
          </app-searchstax-search-pagination>

Facets Widget

example of facets widget initialization with minimum options

<app-searchstax-search-facets
            [facetingType]="'showUnavailable'"
            [itemsPerPageDesktop]="2"
            [itemsPerPageMobile]="99"
          ></app-searchstax-search-facets>

example of facets widget initialization with template overrides

<app-searchstax-search-facets
            [facetingType]="'showUnavailable'"
            [itemsPerPageDesktop]="2"
            [itemsPerPageMobile]="99"
            [templateOverrideDesktop]="templateOverrideDesktop"
            [templateOverrideMobile]="templateOverrideMobile"
          >
            <ng-template
              #templateOverrideDesktop
              let-facetsTemplateDataDesktop="facetsTemplateDataDesktop"
              let-isNotDeactivated="isNotDeactivated"
              let-context="context"
              let-toggleFacetGroup="toggleFacetGroup"
              let-facetValues="facetValues"
              let-isChecked="isChecked"
              let-selectFacet="selectFacet"
              let-showMoreLessDesktop="showMoreLessDesktop"
            >
              <div class="searchstax-facets-container-desktop">
                <div
                  class="searchstax-facet-container"
                  *ngFor="let facet of facetsTemplateDataDesktop?.facets"
                  [class]="{ active: isNotDeactivated(facet.name, context) }"
                >
                  <div>
                    <div class="searchstax-facet-title-container" (click)="toggleFacetGroup(facet.name, context)">
                      <div class="searchstax-facet-title">{{ facet.label }}</div>
                      <div class="searchstax-facet-title-arrow active"></div>
                    </div>
                    <div class="searchstax-facet-values-container">
                      <div
                        *ngFor="let facetValue of facetValues(facet); index as key"
                        class="searchstax-facet-value-container"
                        [class]="{ 'searchstax-facet-value-disabled': facetValue.disabled }"
                        #ref
                      >
                        <div class="searchstax-facet-input">
                          <input
                            type="checkbox"
                            class="searchstax-facet-input-checkbox"
                            [checked]="isChecked(facetValue, context)"
                            [disabled]="facetValue.disabled"
                            (click)="selectFacet(ref, $event, facetValue, true, context)"
                          />
                        </div>
                        <div
                          class="searchstax-facet-value-label"
                          (click)="selectFacet(ref, $event, facetValue, false, context)"
                        >
                          {{ facetValue.value }}
                        </div>
                        <div
                          class="searchstax-facet-value-count"
                          (click)="selectFacet(ref, $event, facetValue, false, context)"
                        >
                          ({{ facetValue.count }})
                        </div>
                      </div>
                      <div class="searchstax-facet-show-more-container" *ngIf="facet.hasMoreFacets">
                        <div
                          class="searchstax-facet-show-more-container"
                          (click)="showMoreLessDesktop($event, facet, context)"
                        >
                          <div
                            *ngIf="facet.showingAllFacets"
                            class="searchstax-facet-show-less-button searchstax-facet-show-button"
                          >
                            less
                          </div>
                          <div
                            *ngIf="!facet.showingAllFacets"
                            class="searchstax-facet-show-more-button searchstax-facet-show-button"
                          >
                            more
                          </div>
                        </div>
                      </div>
                    </div>
                  </div>
                </div>
              </div>
            </ng-template>
            <ng-template
              #templateOverrideMobile
              let-isNotDeactivated="isNotDeactivated"
              let-context="context"
              let-toggleFacetGroup="toggleFacetGroup"
              let-facetValues="facetValues"
              let-isChecked="isChecked"
              let-selectFacet="selectFacet"
              let-openOverlay="openOverlay"
              let-selectedFacetsCheckboxes="selectedFacetsCheckboxes"
              let-unselectFacet="unselectFacet"
              let-unselectAll="unselectAll"
              let-facetMobileData="facetMobileData"
              let-facetsTemplateDataMobile="facetsTemplateDataMobile"
              let-closeOverlay="closeOverlay"
              let-showMoreLessDesktop="showMoreLessDesktop"
            >
              <div class="searchstax-facets-container-mobile">
                <div class="searchstax-facets-pills-container">
                  <div class="searchstax-facets-pill searchstax-facets-pill-filter-by" (click)="openOverlay(context)">
                    <div class="searchstax-facets-pill-label">Filter By</div>
                  </div>
                  <div class="searchstax-facets-pills-selected">
                    <div
                      class="searchstax-facets-pill searchstax-facets-pill-facets"
                      *ngFor="let facet of selectedFacetsCheckboxes"
                      (click)="unselectFacet(facet, context)"
                    >
                      <div class="searchstax-facets-pill-label">{{ facet.value }} ({{ facet.count }})</div>
                      <div class="searchstax-facets-pill-icon-close"></div>
                    </div>
                  </div>
                  <div
                    class="searchstax-facets-pill searchstax-clear-filters searchstax-facets-pill-clear-all"
                    *ngIf="selectedFacetsCheckboxes.length"
                    (click)="unselectAll(context)"
                  >
                    <div class="searchstax-facets-pill-label">Clear Filters</div>
                  </div>
                </div>
                <div
                  class="searchstax-facets-mobile-overlay"
                  [class]="{ 'searchstax-show': facetMobileData(facetsTemplateDataMobile)?.overlayOpened }"
                >
                  <div class="searchstax-facets-mobile-overlay-header">
                    <div class="searchstax-facets-mobile-overlay-header-title">Filter By</div>
                    <div class="searchstax-search-close" (click)="closeOverlay(context)"></div>
                  </div>
                  <div class="searchstax-facets-container-mobile">
                    <div
                      *ngFor="let facet of facetsTemplateDataMobile?.facets"
                      class="searchstax-facet-container"
                      [class]="{ active: isNotDeactivated(facet.name, context) }"
                    >
                      <div>
                        <div class="searchstax-facet-title-container" (click)="toggleFacetGroup(facet.name, context)">
                          <div class="searchstax-facet-title">{{ facet.label }}</div>
                          <div class="searchstax-facet-title-arrow active"></div>
                        </div>
                        <div class="searchstax-facet-values-container">
                          <div
                            *ngFor="let facetValue of facetValues(facet); index as key"
                            class="searchstax-facet-value-container"
                            [class]="{ 'searchstax-facet-value-disabled': facetValue.disabled }"
                            #ref
                          >
                            <div class="searchstax-facet-input">
                              <input
                                type="checkbox"
                                class="searchstax-facet-input-checkbox"
                                [checked]="isChecked(facetValue, context)"
                                [disabled]="facetValue.disabled"
                                (click)="selectFacet(ref, $event, facetValue, true, context)"
                              />
                            </div>
                            <div
                              class="searchstax-facet-value-label"
                              (click)="selectFacet(ref, $event, facetValue, false, context)"
                            >
                              {{ facetValue.value }}
                            </div>
                            <div
                              class="searchstax-facet-value-count"
                              (click)="selectFacet(ref, $event, facetValue, false, context)"
                            >
                              ({{ facetValue.count }})
                            </div>
                          </div>
                          <div class="searchstax-facet-show-more-container" *ngIf="facet.hasMoreFacets">
                            <div
                              class="searchstax-facet-show-more-container"
                              (click)="showMoreLessDesktop($event, facet, context)"
                            >
                              <div
                                *ngIf="facet.showingAllFacets"
                                class="searchstax-facet-show-less-button searchstax-facet-show-button"
                              >
                                less
                              </div>
                              <div
                                *ngIf="!facet.showingAllFacets"
                                class="searchstax-facet-show-more-button searchstax-facet-show-button"
                              >
                                more
                              </div>
                            </div>
                          </div>
                        </div>
                      </div>
                    </div>
                  </div>
                  <button class="searchstax-facets-mobile-overlay-done" (click)="closeOverlay(context)">Done</button>
                </div>
              </div>
            </ng-template>
          </app-searchstax-search-facets>

SearchFeedback Widget

example of search feedback widget initialization with minimum options

<app-searchstax-search-feedback></app-searchstax-search-feedback>

example of search feedback widget initialization with template overrides

<app-searchstax-search-feedback [templateOverride]="feedbackTemplate">
          <ng-template
            #feedbackTemplate
            let-searchFeedbackData="searchFeedbackData"
            let-onOriginalQueryClick="onOriginalQueryClick"
            let-context="context"
          >
            <div class="searchstax-feedback-container">
              Showing
              <b>{{ searchFeedbackData!.startResultIndex }} - {{ searchFeedbackData!.endResultIndex }}</b>
              of <b>{{ searchFeedbackData!.totalResults }}</b> results
              <span *ngIf="searchFeedbackData.searchTerm"
                >for "<b>{{ searchFeedbackData!.searchTerm }}</b
                >"
              </span>
              <div class="searchstax-feedback-container-suggested">
                <div *ngIf="searchFeedbackData.autoCorrectedQuery">
                  Search instead for
                  <a
                    href="#"
                    (click)="onOriginalQueryClick($event, context)"
                    class="searchstax-feedback-original-query"
                    >{{ searchFeedbackData!.originalQuery }}</a
                  >
                </div>
              </div>
            </div>
          </ng-template>
        </app-searchstax-search-feedback>

RelatedSearches widget

example of search RelatedSearches widget initialization with minimum options

<app-searchstax-related-searches
            [relatedSearchesURL]="config.relatedSearchesURL"
            [relatedSearchesAPIKey]="config.relatedSearchesAPIKey"
          ></app-searchstax-related-searches>

example of search RelatedSearches widget initialization with template overrides

 <app-searchstax-related-searches
            [relatedSearchesURL]="config.relatedSearchesURL"
            [relatedSearchesAPIKey]="config.relatedSearchesAPIKey"
            [templateOverride]="relatedTemplate"
          >
            <ng-template
              #relatedTemplate
              let-rand="rand"
              let-relatedData="relatedData"
              let-executeSearch="executeSearch"
              let-context="context"
            >
              <div class="searchstax-related-searches-container" [id]="'searchstax-related-searches-container' + rand">
                Related searches: <span id="searchstax-related-searches"></span>
                <span class="searchstax-related-search" *ngIf="relatedData.relatedSearches">
                  <span
                    *ngFor="let related of relatedData.relatedSearches"
                    (click)="executeSearch(related, context)"
                    class="searchstax-related-search searchstax-related-search-item"
                  >
                    {{ related.related_search }}<span *ngIf="!related.last">,</span>
                  </span>
                </span>
              </div>
            </ng-template>
          </app-searchstax-related-searches>

ExternalPromotions widget

example of search ExternalPromotions widget initialization with minimum options

<app-searchstax-external-promotions></app-searchstax-external-promotions>

example of search ExternalPromotions widget initialization with template overrides

 <app-searchstax-external-promotions [templateOverride]="externalPromotionsTemplate">
            <ng-template
              #externalPromotionsTemplate
              let-context="context"
              let-externalPromotionsData="externalPromotionsData"
              let-trackClick="trackClick"
            >
              <div class="searchstax-external-promotions-container" id="searchstax-external-promotions-container">
                <div
                  class="searchstax-external-promotion searchstax-search-result"
                  *ngFor="let externalPromotion of externalPromotionsData.externalPromotions"
                >
                  <div class="icon-elevated"></div>
                  <a
                    *ngIf="externalPromotion.url"
                    [href]="externalPromotion.url"
                    (click)="trackClick(externalPromotion, $event, context)"
                    class="searchstax-result-item-link"
                  ></a>
                  <div class="searchstax-search-result-title-container">
                    <span class="searchstax-search-result-title">{{ externalPromotion.name }}</span>
                  </div>
                  <p
                    *ngIf="externalPromotion.description"
                    class="searchstax-search-result-description searchstax-search-result-common"
                  >
                    {{ externalPromotion.description }}
                  </p>
                  <p
                    *ngIf="externalPromotion.url"
                    class="searchstax-search-result-description searchstax-search-result-common"
                  >
                    {{ externalPromotion.url }}
                  </p>
                </div>
              </div>
            </ng-template>
          </app-searchstax-external-promotions>

Sorting Widget

example of sorting widget initialization with minimum options

<app-searchstax-search-sorting></app-searchstax-search-sorting>

example of sorting widget initialization with template override

<app-searchstax-search-sorting [templateOverride]="sortingTemplateOverride">
          <ng-template
            #sortingTemplateOverride
            let-selectedSorting="selectedSorting"
            let-orderChange="orderChange"
            let-context="context"
          >
            <div class="searchstax-sorting-container">
              <label class="searchstax-sorting-label" for="sort-by">Sort By</label>
              <select
                id="searchstax-search-order-select"
                class="searchstax-search-order-select"
                [value]="selectedSorting"
                (change)="orderChange($event, context)"
              >
                <option value="">Relevance</option>
                <option value="date desc">Newest Content</option>
                <option value="date asc">Oldest Content</option>
              </select>
            </div>
          </ng-template>
        </app-searchstax-search-sorting>

Template overrides

Templates are passed to components via props.

STYLING

scss styles can be imported from searchstudio-ux-js

 @import './../node_modules/@searchstax-inc/searchstudio-ux-js/dist/styles/scss/mainTheme.scss';

css can be taken from

./../node_modules/@searchstax-inc/searchstudio-ux-js/dist/styles/mainTheme.css