@coveops/abi 0.5.0 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/abi/abi.css +1 -1
- package/dist/abi/abi.esm.js +1 -1
- package/dist/abi/index.esm.js +1 -1
- package/dist/abi/{p-e7475cc6.entry.js → p-f23dd119.entry.js} +1 -1
- package/dist/bundle/index.css +1 -1
- package/dist/bundle/index.html +4 -5
- package/dist/bundle/index.js +19 -19
- package/dist/cjs/index.cjs.js +12 -1
- package/dist/cjs/results-manager.cjs.entry.js +2 -2
- package/dist/collection/index.js +11 -0
- package/dist/components/index.js +14 -3
- package/dist/esm/index.js +12 -1
- package/dist/esm/results-manager.entry.js +2 -2
- package/package.json +1 -1
- package/src/components/results-manager/AppTemplate.html +1 -1
- package/src/components/results-manager/QuickLinksTemplate.html +1 -1
- package/src/index.ts +11 -0
- package/src/pages/index.html +4 -5
- package/src/style/index.css +20 -8
    
        package/dist/bundle/index.css
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            body{margin:0}atomic-search-box::part(wrapper){border-radius:30px;border:thin solid #7e8c9a}atomic-search-box::part(submit-button){background-color:#fff;border:thin solid #7e8c9a;border-radius:0 30px 30px 0}atomic-search-box::part(submit-icon){color:#000}atomic-pager::part(active-page-button){background-color:# | 
| 1 | 
            +
            body{margin:0}atomic-search-box::part(wrapper){border-radius:30px;border:thin solid #7e8c9a}atomic-search-box::part(submit-button){background-color:#fff;border:thin solid #7e8c9a;border-radius:0 30px 30px 0}atomic-search-box::part(submit-icon){color:#000}atomic-pager::part(page-button){color:#a6a6a6;border:thin solid #a6a6a6;border-radius:0}atomic-pager::part(active-page-button){background-color:#caa144;color:#000}atomic-pager::part(next-button),atomic-pager::part(previous-button){color:#caa144;border:thin solid #a6a6a6;border-radius:0}atomic-pager::part(next-button):hover,atomic-pager::part(previous-button):hover,atomic-pager::part(page-button):hover{border-color:#caa144;color:#caa144;cursor:pointer}atomic-modal#faq-modal::part(header-wrapper){display:grid;width:100%;padding-right:0!important}atomic-result-section-visual{height:6rem!important;width:4rem!important}atomic-modal::part(backdrop){grid-template-columns:none!important}atomic-modal::part(header){max-width:none}atomic-modal::part(body){max-width:none}
         | 
    
        package/dist/bundle/index.html
    CHANGED
    
    | @@ -31,21 +31,20 @@ | |
| 31 31 | 
             
                    <atomic-layout-section style="justify-self:center" section="search">
         | 
| 32 32 | 
             
                      <atomic-search-box></atomic-search-box>
         | 
| 33 33 | 
             
                    </atomic-layout-section>
         | 
| 34 | 
            -
                     | 
| 34 | 
            +
                    <atomic-layout-section section="facets">
         | 
| 35 35 | 
             
                        <atomic-facet-manager>
         | 
| 36 36 | 
             
                          <atomic-facet field="abicontenttype" label="Filetype"></atomic-facet>
         | 
| 37 37 | 
             
                          <atomic-facet field="source" label="Source"></atomic-facet>
         | 
| 38 38 | 
             
                        </atomic-facet-manager>
         | 
| 39 | 
            -
             | 
| 39 | 
            +
                    </atomic-layout-section>
         | 
| 40 40 | 
             
                    <atomic-layout-section section="main">
         | 
| 41 41 | 
             
                      <atomic-layout-section section="status">
         | 
| 42 42 | 
             
                        <atomic-breadbox></atomic-breadbox>
         | 
| 43 43 | 
             
                        <atomic-query-summary enable-duration="true"></atomic-query-summary>
         | 
| 44 44 | 
             
                        <atomic-refine-toggle></atomic-refine-toggle>
         | 
| 45 | 
            -
                         | 
| 45 | 
            +
                        <atomic-sort-dropdown>
         | 
| 46 46 | 
             
                          <atomic-sort-expression label="relevance" expression="relevancy"></atomic-sort-expression>
         | 
| 47 | 
            -
             | 
| 48 | 
            -
                        </atomic-sort-dropdown> -->
         | 
| 47 | 
            +
                        </atomic-sort-dropdown>
         | 
| 49 48 | 
             
                        <atomic-did-you-mean></atomic-did-you-mean>
         | 
| 50 49 | 
             
                      </atomic-layout-section>
         | 
| 51 50 | 
             
                      <atomic-layout-section section="results">
         |