@coveops/abi 0.5.1 → 0.6.0
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/images/Default.png +0 -0
- package/dist/abi/images/Documents.png +0 -0
- package/dist/abi/images/FAQ.png +0 -0
- package/dist/abi/images/Images.png +0 -0
- package/dist/abi/images/Link.png +0 -0
- package/dist/abi/images/Movies.png +0 -0
- package/dist/abi/images/ProcessPeople.png +0 -0
- package/dist/abi/index.esm.js +1 -1
- package/dist/abi/p-1cbc472e.entry.js +1 -0
- package/dist/abi/{p-b62c5f66.entry.js → p-24a5774b.entry.js} +1 -1
- package/dist/abi/p-3d7bc0f4.entry.js +1 -0
- package/dist/bundle/index.css +1 -1
- package/dist/bundle/index.html +3 -4
- package/dist/bundle/index.js +448 -290
- package/dist/cjs/faq-popup-component.cjs.entry.js +8 -0
- package/dist/cjs/index.cjs.js +12 -1
- package/dist/cjs/results-manager.cjs.entry.js +10 -10
- package/dist/cjs/strip-html-component.cjs.entry.js +1 -1
- package/dist/collection/components/faq-popup-component/faq-popup-component.css +0 -12
- package/dist/collection/components/faq-popup-component/faq-popup-component.js +8 -0
- package/dist/collection/components/strip-html-component/strip-html-component.js +1 -1
- package/dist/collection/images/Default.png +0 -0
- package/dist/collection/images/Documents.png +0 -0
- package/dist/collection/images/FAQ.png +0 -0
- package/dist/collection/images/Images.png +0 -0
- package/dist/collection/images/Link.png +0 -0
- package/dist/collection/images/Movies.png +0 -0
- package/dist/collection/images/ProcessPeople.png +0 -0
- package/dist/collection/index.js +11 -0
- package/dist/components/index.js +31 -12
- package/dist/esm/faq-popup-component.entry.js +8 -0
- package/dist/esm/index.js +12 -1
- package/dist/esm/results-manager.entry.js +10 -10
- package/dist/esm/strip-html-component.entry.js +1 -1
- package/package.json +1 -1
- package/src/components/faq-popup-component/faq-popup-component.css +0 -12
- package/src/components/faq-popup-component/faq-popup-component.tsx +12 -0
- package/src/components/results-manager/AppTemplate.html +18 -12
- package/src/components/results-manager/DocumentsTemplate.html +63 -27
- package/src/components/results-manager/ELearningTemplate.html +23 -14
- package/src/components/results-manager/FAQTemplate.html +48 -30
- package/src/components/results-manager/KATemplate.html +42 -27
- package/src/components/results-manager/MediaTemplate.html +26 -16
- package/src/components/results-manager/PeopleTemplate.html +13 -8
- package/src/components/results-manager/QuickLinksTemplate.html +14 -14
- package/src/components/results-manager/SitePagesTemplate.html +40 -18
- package/src/components/results-manager/template-1.html +21 -22
- package/src/components/strip-html-component/strip-html-component.tsx +1 -1
- package/src/images/Default.png +0 -0
- package/src/images/Documents.png +0 -0
- package/src/images/FAQ.png +0 -0
- package/src/images/Images.png +0 -0
- package/src/images/Link.png +0 -0
- package/src/images/Movies.png +0 -0
- package/src/images/ProcessPeople.png +0 -0
- package/src/index.ts +11 -0
- package/src/pages/index.html +3 -4
- package/src/style/index.css +24 -9
- package/stencil.config.ts +5 -0
- package/dist/abi/p-5a5f74eb.entry.js +0 -1
- package/dist/abi/p-f23dd119.entry.js +0 -1
| @@ -47,7 +47,7 @@ const StripHtmlComponent = class { | |
| 47 47 | 
             
                if (typeof description === 'string') {
         | 
| 48 48 | 
             
                  strippedString = this.stripHtmlAndEntities(description);
         | 
| 49 49 | 
             
                }
         | 
| 50 | 
            -
                return (h("div", { style: { fontSize: " | 
| 50 | 
            +
                return (h("div", { style: { fontSize: "1.3rem", maxHeight: "none", lineHeight: "normal" } }, strippedString));
         | 
| 51 51 | 
             
              }
         | 
| 52 52 | 
             
              get host() { return getElement(this); }
         | 
| 53 53 | 
             
            };
         | 
    
        package/package.json
    CHANGED
    
    
| @@ -30,6 +30,10 @@ export class FaqPopupComponent { | |
| 30 30 | 
             
                  this.result = await resultContext(this.host);
         | 
| 31 31 | 
             
                  this.modalElement = this.bindings?.interfaceElement.querySelector('#faq-modal');
         | 
| 32 32 |  | 
| 33 | 
            +
                  if (this.result && localStorage.getItem(`visited-${this.result.title}`)) {
         | 
| 34 | 
            +
             | 
| 35 | 
            +
                    this.host.classList.add('visited-title');
         | 
| 36 | 
            +
                  }
         | 
| 33 37 | 
             
                } catch (error) {
         | 
| 34 38 | 
             
                  console.error(error);
         | 
| 35 39 | 
             
                  this.host.remove();
         | 
| @@ -94,6 +98,14 @@ export class FaqPopupComponent { | |
| 94 98 |  | 
| 95 99 | 
             
                this.modalElement.querySelector('#faq-modal-close').addEventListener('click', this.closeFAQModal);
         | 
| 96 100 | 
             
                this.modalElement.setAttribute('is-open', 'true');
         | 
| 101 | 
            +
             | 
| 102 | 
            +
                if (this.result) {
         | 
| 103 | 
            +
                  localStorage.setItem(`visited-${this.result.title}`, 'true');
         | 
| 104 | 
            +
                }
         | 
| 105 | 
            +
             | 
| 106 | 
            +
                // Add the class to change color
         | 
| 107 | 
            +
                this.host.classList.add('visited-title');
         | 
| 108 | 
            +
             | 
| 97 109 | 
             
              }
         | 
| 98 110 | 
             
              private closeFAQModal: Function = () => {
         | 
| 99 111 | 
             
                this.modalElement.setAttribute('is-open', 'false');
         | 
| @@ -15,29 +15,35 @@ | |
| 15 15 | 
             
              }
         | 
| 16 16 |  | 
| 17 17 | 
             
              atomic-result-section-title a {
         | 
| 18 | 
            -
                color: # | 
| 19 | 
            -
                font-size:  | 
| 20 | 
            -
                 | 
| 18 | 
            +
                color: #CAA144 !important;
         | 
| 19 | 
            +
                font-size: 1.7rem !important;
         | 
| 20 | 
            +
                max-height: unset !important;
         | 
| 21 | 
            +
                line-height: normal !important;
         | 
| 21 22 | 
             
              }
         | 
| 22 23 |  | 
| 23 | 
            -
              atomic-result- | 
| 24 | 
            -
                color:  | 
| 24 | 
            +
              atomic-result-section-title a:visited {
         | 
| 25 | 
            +
                color: black !important;
         | 
| 25 26 | 
             
              }
         | 
| 26 27 |  | 
| 27 28 | 
             
              atomic-result-section-excerpt {
         | 
| 28 | 
            -
                font-size:  | 
| 29 | 
            +
                font-size: 1.3rem !important;
         | 
| 29 30 | 
             
                margin-top: 2px !important;
         | 
| 31 | 
            +
                max-height: unset !important;
         | 
| 32 | 
            +
                line-height: normal !important;
         | 
| 30 33 | 
             
              }
         | 
| 31 34 |  | 
| 32 35 | 
             
              atomic-result-section-visual {
         | 
| 33 | 
            -
             | 
| 34 | 
            -
             | 
| 35 | 
            -
             | 
| 36 | 
            -
             | 
| 36 | 
            +
                    width: 3rem !important;
         | 
| 37 | 
            +
                    height: 5rem !important;
         | 
| 38 | 
            +
                    display: grid;
         | 
| 39 | 
            +
                    align-items: center;
         | 
| 40 | 
            +
                }
         | 
| 37 41 | 
             
            </style>
         | 
| 38 42 |  | 
| 39 43 | 
             
            <atomic-result-section-visual>
         | 
| 40 | 
            -
              < | 
| 44 | 
            +
              <img src="../images/ProcessPeople.png" alt="Image" />
         | 
| 45 | 
            +
             | 
| 46 | 
            +
              <!-- <atomic-icon class="icon"></atomic-icon>
         | 
| 41 47 | 
             
              <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="38" height="35" viewBox="0 0 60 50">
         | 
| 42 48 | 
             
                <path
         | 
| 43 49 | 
             
                  d="M0 0 C0.8245166 -0.00478363 1.6490332 -0.00956726 2.49853516 -0.01449585 C4.23667313 -0.01788872 5.97487544 -0.00872903 7.71289062 0.01220703 C10.36733825 0.03898521 13.01755825 0.01244254 15.671875 -0.01953125 C17.36459263 -0.01622704 19.05730763 -0.00982056 20.75 0 C21.93456787 -0.01518173 21.93456787 -0.01518173 23.14306641 -0.03067017 C27.11276955 0.05339275 28.99170918 0.40801499 32.37255859 2.66650391 C35.0441572 6.66575868 35.09944932 9.57732793 35.0390625 14.2890625 C35.04384613 15.1135791 35.04862976 15.9380957 35.05355835 16.78759766 C35.05695122 18.52573563 35.04779153 20.26393794 35.02685547 22.00195312 C35.00007729 24.65640075 35.02661996 27.30662075 35.05859375 29.9609375 C35.05528954 31.65365513 35.04888306 33.34637013 35.0390625 35.0390625 C35.04918365 35.82877441 35.05930481 36.61848633 35.06973267 37.43212891 C34.98566975 41.40183205 34.63104751 43.28077168 32.37255859 46.66162109 C28.37330382 49.3332197 25.46173457 49.38851182 20.75 49.328125 C19.5132251 49.33530045 19.5132251 49.33530045 18.25146484 49.34262085 C16.51332687 49.34601372 14.77512456 49.33685403 13.03710938 49.31591797 C10.38266175 49.28913979 7.73244175 49.31568246 5.078125 49.34765625 C3.38540737 49.34435204 1.69269237 49.33794556 0 49.328125 C-0.78971191 49.33824615 -1.57942383 49.34836731 -2.39306641 49.35879517 C-6.36276955 49.27473225 -8.24170918 48.92011001 -11.62255859 46.66162109 C-14.2941572 42.66236632 -14.34944932 39.75079707 -14.2890625 35.0390625 C-14.29384613 34.2145459 -14.29862976 33.3900293 -14.30355835 32.54052734 C-14.30695122 30.80238937 -14.29779153 29.06418706 -14.27685547 27.32617188 C-14.25007729 24.67172425 -14.27661996 22.02150425 -14.30859375 19.3671875 C-14.30528954 17.67446987 -14.29888306 15.98175487 -14.2890625 14.2890625 C-14.29918365 13.49935059 -14.30930481 12.70963867 -14.31973267 11.89599609 C-14.23566975 7.92629295 -13.88104751 6.04735332 -11.62255859 2.66650391 C-7.62330382 -0.0050947 -4.71173457 -0.06038682 0 0 Z "
         | 
| @@ -57,7 +63,7 @@ | |
| 57 63 | 
             
                <path
         | 
| 58 64 | 
             
                  d="M0 0 C1 3 1 3 1 5 C2.45833358 6.62514468 2.45833358 6.62514468 4 8 C3.34 9.32 2.68 10.64 2 12 C0.00449854 10.00449854 -0.81376393 8.52075165 -2 6 C-2.37125 5.2575 -2.7425 4.515 -3.125 3.75 C-3.41375 3.1725 -3.7025 2.595 -4 2 C-2.68 1.34 -1.36 0.68 0 0 Z "
         | 
| 59 65 | 
             
                  fill="#C6C6C6" transform="translate(36,28)"></path>
         | 
| 60 | 
            -
              </svg>
         | 
| 66 | 
            +
              </svg> -->
         | 
| 61 67 | 
             
            </atomic-result-section-visual>
         | 
| 62 68 |  | 
| 63 69 | 
             
            <atomic-result-section-title>
         | 
| @@ -1,54 +1,83 @@ | |
| 1 1 | 
             
            <style>
         | 
| 2 | 
            -
              .field {
         | 
| 2 | 
            +
              /* .field {
         | 
| 3 3 | 
             
                display: inline-flex;
         | 
| 4 4 | 
             
                align-items: center;
         | 
| 5 | 
            -
              }
         | 
| 5 | 
            +
              } */
         | 
| 6 6 |  | 
| 7 7 | 
             
              .field-label {
         | 
| 8 8 | 
             
                font-weight: bold;
         | 
| 9 9 | 
             
                margin-right: 0.25rem;
         | 
| 10 10 | 
             
              }
         | 
| 11 11 |  | 
| 12 | 
            -
              atomic-result-section-bottom-metadata a{
         | 
| 13 | 
            -
                color:  | 
| 12 | 
            +
              atomic-result-section-bottom-metadata a {
         | 
| 13 | 
            +
                color: #A6A6A6 !important;
         | 
| 14 14 | 
             
              }
         | 
| 15 | 
            +
             | 
| 15 16 | 
             
              atomic-result-section-bottom-metadata {
         | 
| 16 17 | 
             
                margin-top: 2px;
         | 
| 17 | 
            -
             | 
| 18 | 
            -
                font-size:  | 
| 18 | 
            +
              color: #A6A6A6 !important;
         | 
| 19 | 
            +
                font-size: 1rem !important;
         | 
| 19 20 | 
             
                margin-right: 3px;
         | 
| 20 21 | 
             
                line-height: 18px !important;
         | 
| 22 | 
            +
                display: grid;
         | 
| 23 | 
            +
                grid-template-columns: auto auto auto;
         | 
| 24 | 
            +
                gap: 1rem;
         | 
| 25 | 
            +
                align-items: center;
         | 
| 21 26 | 
             
              }
         | 
| 22 27 |  | 
| 23 28 | 
             
              atomic-result-section-title a {
         | 
| 24 | 
            -
                color: # | 
| 25 | 
            -
                font-size:  | 
| 26 | 
            -
                 | 
| 29 | 
            +
                color: #CAA144 !important;
         | 
| 30 | 
            +
                font-size: 1.7rem !important;
         | 
| 31 | 
            +
                max-height: unset !important;
         | 
| 32 | 
            +
                line-height: normal !important;
         | 
| 27 33 | 
             
              }
         | 
| 28 | 
            -
             | 
| 29 | 
            -
             | 
| 30 | 
            -
                font-size:  | 
| 34 | 
            +
             | 
| 35 | 
            +
              atomic-result-section-excerpt {
         | 
| 36 | 
            +
                font-size: 1.3rem !important;
         | 
| 37 | 
            +
                margin-top: 2px !important;
         | 
| 38 | 
            +
                max-height: unset !important;
         | 
| 39 | 
            +
                line-height: normal !important;
         | 
| 31 40 | 
             
              }
         | 
| 32 41 |  | 
| 33 42 | 
             
              atomic-result-section-visual {
         | 
| 34 | 
            -
                    width:  | 
| 43 | 
            +
                    width: 3rem !important;
         | 
| 35 44 | 
             
                    height: 5rem !important;
         | 
| 36 | 
            -
             | 
| 45 | 
            +
                    display: grid;
         | 
| 46 | 
            +
                    align-items: center;
         | 
| 37 47 | 
             
                }
         | 
| 38 | 
            -
             | 
| 48 | 
            +
             | 
| 49 | 
            +
              atomic-result-section-title a:visited {
         | 
| 50 | 
            +
                color: black !important;
         | 
| 51 | 
            +
              }
         | 
| 52 | 
            +
             | 
| 53 | 
            +
             | 
| 54 | 
            +
              atomic-result-section-bottom-metadata span {
         | 
| 55 | 
            +
                display: flex;
         | 
| 56 | 
            +
                align-items: center;
         | 
| 57 | 
            +
              }
         | 
| 39 58 | 
             
            </style>
         | 
| 40 59 |  | 
| 41 60 | 
             
            <atomic-result-section-visual>
         | 
| 42 | 
            -
             | 
| 43 | 
            -
              <atomic-icon class="icon"></atomic-icon>
         | 
| 61 | 
            +
              <img src="../images/Documents.png" alt="Image" />
         | 
| 62 | 
            +
              <!-- <atomic-icon class="icon"></atomic-icon>
         | 
| 44 63 | 
             
              <?xml version="1.0" encoding="UTF-8"?>
         | 
| 45 64 | 
             
              <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="35" height="35" viewBox="0 0 55 50">
         | 
| 46 | 
            -
                <path | 
| 47 | 
            -
             | 
| 48 | 
            -
             | 
| 49 | 
            -
                <path | 
| 50 | 
            -
             | 
| 51 | 
            -
             | 
| 65 | 
            +
                <path
         | 
| 66 | 
            +
                  d="M0 0 C0.8245166 -0.00478363 1.6490332 -0.00956726 2.49853516 -0.01449585 C4.23667313 -0.01788872 5.97487544 -0.00872903 7.71289062 0.01220703 C10.36733825 0.03898521 13.01755825 0.01244254 15.671875 -0.01953125 C17.36459263 -0.01622704 19.05730763 -0.00982056 20.75 0 C21.93456787 -0.01518173 21.93456787 -0.01518173 23.14306641 -0.03067017 C27.11276955 0.05339275 28.99170918 0.40801499 32.37255859 2.66650391 C35.0441572 6.66575868 35.09944932 9.57732793 35.0390625 14.2890625 C35.04384613 15.1135791 35.04862976 15.9380957 35.05355835 16.78759766 C35.05695122 18.52573563 35.04779153 20.26393794 35.02685547 22.00195312 C35.00007729 24.65640075 35.02661996 27.30662075 35.05859375 29.9609375 C35.05528954 31.65365513 35.04888306 33.34637013 35.0390625 35.0390625 C35.04918365 35.82877441 35.05930481 36.61848633 35.06973267 37.43212891 C34.98566975 41.40183205 34.63104751 43.28077168 32.37255859 46.66162109 C28.37330382 49.3332197 25.46173457 49.38851182 20.75 49.328125 C19.5132251 49.33530045 19.5132251 49.33530045 18.25146484 49.34262085 C16.51332687 49.34601372 14.77512456 49.33685403 13.03710938 49.31591797 C10.38266175 49.28913979 7.73244175 49.31568246 5.078125 49.34765625 C3.38540737 49.34435204 1.69269237 49.33794556 0 49.328125 C-0.78971191 49.33824615 -1.57942383 49.34836731 -2.39306641 49.35879517 C-6.36276955 49.27473225 -8.24170918 48.92011001 -11.62255859 46.66162109 C-14.2941572 42.66236632 -14.34944932 39.75079707 -14.2890625 35.0390625 C-14.29384613 34.2145459 -14.29862976 33.3900293 -14.30355835 32.54052734 C-14.30695122 30.80238937 -14.29779153 29.06418706 -14.27685547 27.32617188 C-14.25007729 24.67172425 -14.27661996 22.02150425 -14.30859375 19.3671875 C-14.30528954 17.67446987 -14.29888306 15.98175487 -14.2890625 14.2890625 C-14.29918365 13.49935059 -14.30930481 12.70963867 -14.31973267 11.89599609 C-14.23566975 7.92629295 -13.88104751 6.04735332 -11.62255859 2.66650391 C-7.62330382 -0.0050947 -4.71173457 -0.06038682 0 0 Z "
         | 
| 67 | 
            +
                  fill="#000000" transform="translate(13.625,-0.6640625)"></path>
         | 
| 68 | 
            +
                <path
         | 
| 69 | 
            +
                  d="M0 0 C1.33611328 -0.08121094 1.33611328 -0.08121094 2.69921875 -0.1640625 C7.39769085 -0.26093821 10.75582466 0.13481259 14.4921875 3.1328125 C19.10614224 8.50281829 18.15948055 15.18970697 17.875 21.875 C17.85179688 23.17050781 17.82859375 24.46601563 17.8046875 25.80078125 C17.5856438 35.2893562 17.5856438 35.2893562 16.375 36.5 C14.46041718 36.59971786 12.54217683 36.63080589 10.625 36.6328125 C9.4596875 36.63410156 8.294375 36.63539062 7.09375 36.63671875 C5.8665625 36.63285156 4.639375 36.62898438 3.375 36.625 C1.53421875 36.63080078 1.53421875 36.63080078 -0.34375 36.63671875 C-1.5090625 36.63542969 -2.674375 36.63414063 -3.875 36.6328125 C-4.95265625 36.63168457 -6.0303125 36.63055664 -7.140625 36.62939453 C-9.625 36.5 -9.625 36.5 -10.625 35.5 C-10.72587212 32.99075847 -10.76472032 30.50963616 -10.7578125 28 C-10.75876923 27.24912109 -10.75972595 26.49824219 -10.76071167 25.72460938 C-10.76139338 24.13411373 -10.75953972 22.54361533 -10.75537109 20.953125 C-10.75002267 18.51035345 -10.75531634 16.06776579 -10.76171875 13.625 C-10.76105797 12.08333293 -10.7597768 10.54166597 -10.7578125 9 C-10.75983673 8.26458984 -10.76186096 7.52917969 -10.76394653 6.77148438 C-10.72621122 -1.33787148 -7.13478807 0.18113707 0 0 Z "
         | 
| 70 | 
            +
                  fill="#242424" transform="translate(20.625,5.5)"></path>
         | 
| 71 | 
            +
                <path
         | 
| 72 | 
            +
                  d="M0 0 C1.33611328 -0.08121094 1.33611328 -0.08121094 2.69921875 -0.1640625 C7.39769085 -0.26093821 10.75582466 0.13481259 14.4921875 3.1328125 C19.10614224 8.50281829 18.15948055 15.18970697 17.875 21.875 C17.85179688 23.17050781 17.82859375 24.46601563 17.8046875 25.80078125 C17.5856438 35.2893562 17.5856438 35.2893562 16.375 36.5 C14.46041718 36.59971786 12.54217683 36.63080589 10.625 36.6328125 C9.4596875 36.63410156 8.294375 36.63539062 7.09375 36.63671875 C5.8665625 36.63285156 4.639375 36.62898438 3.375 36.625 C1.53421875 36.63080078 1.53421875 36.63080078 -0.34375 36.63671875 C-1.5090625 36.63542969 -2.674375 36.63414063 -3.875 36.6328125 C-4.95265625 36.63168457 -6.0303125 36.63055664 -7.140625 36.62939453 C-9.625 36.5 -9.625 36.5 -10.625 35.5 C-10.72587212 32.99075847 -10.76472032 30.50963616 -10.7578125 28 C-10.75876923 27.24912109 -10.75972595 26.49824219 -10.76071167 25.72460938 C-10.76139338 24.13411373 -10.75953972 22.54361533 -10.75537109 20.953125 C-10.75002267 18.51035345 -10.75531634 16.06776579 -10.76171875 13.625 C-10.76105797 12.08333293 -10.7597768 10.54166597 -10.7578125 9 C-10.75983673 8.26458984 -10.76186096 7.52917969 -10.76394653 6.77148438 C-10.72621122 -1.33787148 -7.13478807 0.18113707 0 0 Z M-8.625 2.5 C-8.625 13.06 -8.625 23.62 -8.625 34.5 C-0.705 34.5 7.215 34.5 15.375 34.5 C15.375 25.92 15.375 17.34 15.375 8.5 C12.405 8.005 12.405 8.005 9.375 7.5 C9.045 5.85 8.715 4.2 8.375 2.5 C2.765 2.5 -2.845 2.5 -8.625 2.5 Z "
         | 
| 73 | 
            +
                  fill="#E6E6E6" transform="translate(20.625,5.5)"></path>
         | 
| 74 | 
            +
                <path
         | 
| 75 | 
            +
                  d="M0 0 C0.89912109 -0.04576172 1.79824219 -0.09152344 2.72460938 -0.13867188 C7.48764174 -0.21904586 10.43500563 -0.06419453 13.95703125 3.33984375 C16.3125 6.4375 16.3125 6.4375 16.3125 8.4375 C13.97955225 8.47991723 11.64547433 8.47842937 9.3125 8.4375 C8.9825 8.1075 8.6525 7.7775 8.3125 7.4375 C8.3125 5.7875 8.3125 4.1375 8.3125 2.4375 C2.7025 2.4375 -2.9075 2.4375 -8.6875 2.4375 C-8.6875 12.9975 -8.6875 23.5575 -8.6875 34.4375 C-9.0175 34.4375 -9.3475 34.4375 -9.6875 34.4375 C-9.85475324 29.7563055 -10.01534864 25.07494899 -10.16967773 20.39331055 C-10.22316794 18.79949744 -10.27850255 17.20574515 -10.33569336 15.61206055 C-10.41740942 13.32614258 -10.49256897 11.04009054 -10.56640625 8.75390625 C-10.59344131 8.03723282 -10.62047638 7.32055939 -10.64833069 6.58216858 C-10.70047644 4.86802233 -10.69935628 3.15239824 -10.6875 1.4375 C-8.37917712 -0.87082288 -3.09396021 0.0629648 0 0 Z "
         | 
| 76 | 
            +
                  fill="#DADADA" transform="translate(20.6875,5.5625)"></path>
         | 
| 77 | 
            +
                <path
         | 
| 78 | 
            +
                  d="M0 0 C2.86697492 1.28519565 4.97607712 2.57129254 7 5 C7 5.66 7 6.32 7 7 C4.69 7 2.38 7 0 7 C0 4.69 0 2.38 0 0 Z "
         | 
| 79 | 
            +
                  fill="#D0D0D0" transform="translate(30,7)"></path>
         | 
| 80 | 
            +
              </svg> -->
         | 
| 52 81 | 
             
            </atomic-result-section-visual>
         | 
| 53 82 |  | 
| 54 83 | 
             
            <atomic-result-section-title>
         | 
| @@ -62,7 +91,14 @@ | |
| 62 91 | 
             
            </atomic-result-section-excerpt>
         | 
| 63 92 |  | 
| 64 93 | 
             
            <atomic-result-section-bottom-metadata>
         | 
| 65 | 
            -
              < | 
| 66 | 
            -
                <atomic- | 
| 67 | 
            -
             | 
| 68 | 
            -
            </ | 
| 94 | 
            +
              <span>
         | 
| 95 | 
            +
                <atomic-text value="Date:  "></atomic-text>
         | 
| 96 | 
            +
                <atomic-result-date></atomic-result-date>
         | 
| 97 | 
            +
              </span><span>
         | 
| 98 | 
            +
                <atomic-text value="Source:  "></atomic-text><atomic-result-text field="sourcetype"></atomic-result-text>
         | 
| 99 | 
            +
              </span><span> <atomic-text value="Sharepoint:  "></atomic-text>
         | 
| 100 | 
            +
                <atomic-result-link><a slot="attributes" target="_blank"></a>
         | 
| 101 | 
            +
                  <atomic-result-text field="spsitename"></atomic-result-text>
         | 
| 102 | 
            +
                </atomic-result-link>
         | 
| 103 | 
            +
              </span>
         | 
| 104 | 
            +
            </atomic-result-section-bottom-metadata>
         | 
| @@ -10,35 +10,44 @@ | |
| 10 10 | 
             
              }
         | 
| 11 11 |  | 
| 12 12 | 
             
              atomic-result-section-bottom-metadata {
         | 
| 13 | 
            -
                color:  | 
| 14 | 
            -
                font-weight: bold;
         | 
| 13 | 
            +
                color: #A6A6A6 !important;
         | 
| 15 14 | 
             
                margin-right: 3px;
         | 
| 16 15 | 
             
                margin-top: 2px;
         | 
| 17 | 
            -
                font-size:  | 
| 16 | 
            +
                font-size: 1rem !important;
         | 
| 18 17 | 
             
                line-height: 18px !important;
         | 
| 18 | 
            +
                display: grid;
         | 
| 19 | 
            +
                grid-template-columns: 1fr 1fr 1fr 1fr;
         | 
| 19 20 | 
             
              }
         | 
| 20 21 |  | 
| 21 22 | 
             
              atomic-result-section-title a {
         | 
| 22 | 
            -
                color: # | 
| 23 | 
            -
                font-size:  | 
| 24 | 
            -
                 | 
| 23 | 
            +
                color: #CAA144 !important;
         | 
| 24 | 
            +
                font-size: 1.7rem !important;
         | 
| 25 | 
            +
                max-height: unset !important;
         | 
| 26 | 
            +
                line-height: normal !important;
         | 
| 25 27 | 
             
              }
         | 
| 26 | 
            -
              atomic-result- | 
| 27 | 
            -
                color:  | 
| 28 | 
            +
              atomic-result-section-title a:visited {
         | 
| 29 | 
            +
                color: black !important;
         | 
| 28 30 | 
             
              }
         | 
| 29 31 | 
             
              atomic-result-section-excerpt {
         | 
| 30 | 
            -
                font-size:  | 
| 32 | 
            +
                font-size: 1.3rem !important;
         | 
| 31 33 | 
             
                margin-top: 2px !important;
         | 
| 34 | 
            +
                max-height: unset !important;
         | 
| 35 | 
            +
                line-height: normal !important;
         | 
| 32 36 | 
             
              }
         | 
| 33 37 | 
             
              atomic-result-section-visual {
         | 
| 34 | 
            -
                    width:  | 
| 38 | 
            +
                    width: 3rem !important;
         | 
| 35 39 | 
             
                    height: 5rem !important;
         | 
| 40 | 
            +
                    display: grid;
         | 
| 41 | 
            +
                    align-items: center;
         | 
| 42 | 
            +
                    justify-content: center;
         | 
| 36 43 |  | 
| 37 44 | 
             
                }
         | 
| 38 45 | 
             
            </style>
         | 
| 39 46 |  | 
| 40 47 | 
             
            <atomic-result-section-visual>
         | 
| 41 | 
            -
              < | 
| 48 | 
            +
              <img src="../images/Link.png" alt="Image" />
         | 
| 49 | 
            +
             | 
| 50 | 
            +
              <!-- <atomic-icon class="icon"></atomic-icon>
         | 
| 42 51 | 
             
              <?xml version="1.0" encoding="UTF-8"?>
         | 
| 43 52 | 
             
              <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="40" height="48" viewbox="0 0 60 60">
         | 
| 44 53 | 
             
              <path d="M0 0 C0.8245166 -0.00478363 1.6490332 -0.00956726 2.49853516 -0.01449585 C4.23667313 -0.01788872 5.97487544 -0.00872903 7.71289062 0.01220703 C10.36733825 0.03898521 13.01755825 0.01244254 15.671875 -0.01953125 C17.36459263 -0.01622704 19.05730763 -0.00982056 20.75 0 C21.93456787 -0.01518173 21.93456787 -0.01518173 23.14306641 -0.03067017 C27.11276955 0.05339275 28.99170918 0.40801499 32.37255859 2.66650391 C35.0441572 6.66575868 35.09944932 9.57732793 35.0390625 14.2890625 C35.04384613 15.1135791 35.04862976 15.9380957 35.05355835 16.78759766 C35.05695122 18.52573563 35.04779153 20.26393794 35.02685547 22.00195312 C35.00007729 24.65640075 35.02661996 27.30662075 35.05859375 29.9609375 C35.05528954 31.65365513 35.04888306 33.34637013 35.0390625 35.0390625 C35.04918365 35.82877441 35.05930481 36.61848633 35.06973267 37.43212891 C34.98566975 41.40183205 34.63104751 43.28077168 32.37255859 46.66162109 C28.37330382 49.3332197 25.46173457 49.38851182 20.75 49.328125 C19.5132251 49.33530045 19.5132251 49.33530045 18.25146484 49.34262085 C16.51332687 49.34601372 14.77512456 49.33685403 13.03710938 49.31591797 C10.38266175 49.28913979 7.73244175 49.31568246 5.078125 49.34765625 C3.38540737 49.34435204 1.69269237 49.33794556 0 49.328125 C-0.78971191 49.33824615 -1.57942383 49.34836731 -2.39306641 49.35879517 C-6.36276955 49.27473225 -8.24170918 48.92011001 -11.62255859 46.66162109 C-14.2941572 42.66236632 -14.34944932 39.75079707 -14.2890625 35.0390625 C-14.29384613 34.2145459 -14.29862976 33.3900293 -14.30355835 32.54052734 C-14.30695122 30.80238937 -14.29779153 29.06418706 -14.27685547 27.32617188 C-14.25007729 24.67172425 -14.27661996 22.02150425 -14.30859375 19.3671875 C-14.30528954 17.67446987 -14.29888306 15.98175487 -14.2890625 14.2890625 C-14.29918365 13.49935059 -14.30930481 12.70963867 -14.31973267 11.89599609 C-14.23566975 7.92629295 -13.88104751 6.04735332 -11.62255859 2.66650391 C-7.62330382 -0.0050947 -4.71173457 -0.06038682 0 0 Z " fill="#010101" transform="translate(13.625,-0.6640625)"/>
         | 
| @@ -49,7 +58,7 @@ | |
| 49 58 | 
             
              <path d="M0 0 C3.75579504 0.48151219 7.03912374 1.35592302 10.5625 2.6875 C14.15133197 3.95995405 14.15133197 3.95995405 17.875 3.125 C18.57625 2.75375 19.2775 2.3825 20 2 C20.99 2.33 21.98 2.66 23 3 C22.34 3 21.68 3 21 3 C21 3.66 21 4.32 21 5 C17.58044297 7.42218623 14.84494445 6.99895628 10.90234375 6.484375 C9 6 9 6 6 4 C4.00787329 2.98440599 2.0088485 1.98210371 0 1 C0 0.67 0 0.34 0 0 Z " fill="#757575" transform="translate(10,20)"/>
         | 
| 50 59 | 
             
              <path d="M0 0 C1.60597325 0.45196245 3.20972508 0.91182327 4.8125 1.375 C6.15248047 1.75785156 6.15248047 1.75785156 7.51953125 2.1484375 C10 3 10 3 13 5 C12.67 6.32 12.34 7.64 12 9 C9.69 8.67 7.38 8.34 5 8 C5.99 7.01 6.98 6.02 8 5 C5.36 3.68 2.72 2.36 0 1 C0 0.67 0 0.34 0 0 Z " fill="#C2C2C2" transform="translate(30,12)"/>
         | 
| 51 60 | 
             
              <path d="M0 0 C0.391875 0.45375 0.78375 0.9075 1.1875 1.375 C3.30832487 3.27642919 5.33042235 4.06204028 8 5 C4.06329512 6.31223496 1.87511856 5.24296256 -2 4 C-1.34 3.67 -0.68 3.34 0 3 C0 2.01 0 1.02 0 0 Z " fill="#9B9B9B" transform="translate(8,15)"/>
         | 
| 52 | 
            -
              </svg>
         | 
| 61 | 
            +
              </svg> -->
         | 
| 53 62 |  | 
| 54 63 | 
             
            </atomic-result-section-visual>
         | 
| 55 64 |  | 
| @@ -62,7 +71,7 @@ | |
| 62 71 | 
             
            </atomic-result-section-excerpt>
         | 
| 63 72 |  | 
| 64 73 | 
             
            <atomic-result-section-bottom-metadata>
         | 
| 65 | 
            -
             | 
| 74 | 
            +
             
         | 
| 66 75 | 
             
                <atomic-field-condition class="field" if-defined="trainingsource">
         | 
| 67 76 | 
             
                  <span class="field-label">
         | 
| 68 77 | 
             
                    <atomic-text value="Training"></atomic-text>:
         | 
| @@ -90,5 +99,5 @@ | |
| 90 99 | 
             
                  </span>
         | 
| 91 100 | 
             
                  <atomic-result-text field="duration"></atomic-result-text>
         | 
| 92 101 | 
             
                </atomic-field-condition>
         | 
| 93 | 
            -
             | 
| 102 | 
            +
             | 
| 94 103 | 
             
            </atomic-result-section-bottom-metadata>
         | 
| @@ -10,59 +10,71 @@ | |
| 10 10 | 
             
              }
         | 
| 11 11 |  | 
| 12 12 | 
             
              atomic-result-section-excerpt {
         | 
| 13 | 
            -
                font-size:  | 
| 13 | 
            +
                font-size: 1.3rem !important;
         | 
| 14 14 | 
             
                margin-top: 2px !important;
         | 
| 15 | 
            +
                max-height: unset !important;
         | 
| 16 | 
            +
                line-height: normal !important;
         | 
| 15 17 | 
             
              }
         | 
| 16 18 |  | 
| 17 | 
            -
              atomic- | 
| 18 | 
            -
                color:  | 
| 19 | 
            -
                font-weight: bold;
         | 
| 20 | 
            -
                margin-right: 3px;
         | 
| 21 | 
            -
                font-size: 14px;
         | 
| 22 | 
            -
                line-height: 18px !important;
         | 
| 23 | 
            -
              }
         | 
| 24 | 
            -
             | 
| 25 | 
            -
              atomic-result-link a:visited {
         | 
| 26 | 
            -
                color: #45130f !important;
         | 
| 19 | 
            +
              atomic-result-section-title :visited {
         | 
| 20 | 
            +
                color: black !important;
         | 
| 27 21 |  | 
| 28 22 | 
             
              }
         | 
| 29 23 |  | 
| 30 24 | 
             
              atomic-result-section-title{
         | 
| 31 | 
            -
                color: # | 
| 32 | 
            -
                font-size:  | 
| 33 | 
            -
                 | 
| 25 | 
            +
                color: #CAA144 !important;
         | 
| 26 | 
            +
                font-size: 1.7rem !important ;
         | 
| 27 | 
            +
                
         | 
| 34 28 | 
             
              }
         | 
| 35 | 
            -
             | 
| 36 | 
            -
             | 
| 37 | 
            -
                 | 
| 29 | 
            +
              atomic-result-section-excerpt {
         | 
| 30 | 
            +
                font-size: 1.3rem !important;
         | 
| 31 | 
            +
                margin-top: 2px !important;
         | 
| 32 | 
            +
                max-height: unset !important;
         | 
| 33 | 
            +
                line-height: normal !important;
         | 
| 38 34 | 
             
              }
         | 
| 39 35 |  | 
| 40 | 
            -
              atomic-result-section-bottom-metadata {
         | 
| 41 | 
            -
                margin-top: 2px;
         | 
| 42 | 
            -
              }
         | 
| 43 36 | 
             
              atomic-result-section-bottom-metadata a {
         | 
| 44 | 
            -
                color:  | 
| 37 | 
            +
                color: #A6A6A6 !important;
         | 
| 45 38 | 
             
                margin-top: 2px;
         | 
| 46 39 | 
             
              }
         | 
| 47 40 | 
             
              atomic-result-section-title{
         | 
| 48 41 | 
             
                cursor: pointer;
         | 
| 49 42 |  | 
| 50 43 | 
             
              }
         | 
| 44 | 
            +
              atomic-result-section-bottom-metadata {
         | 
| 45 | 
            +
                margin-top: 2px;
         | 
| 46 | 
            +
                color: #A6A6A6 !important;
         | 
| 47 | 
            +
                font-size: 1rem !important;
         | 
| 48 | 
            +
                margin-right: 3px;
         | 
| 49 | 
            +
                line-height: 18px !important;
         | 
| 50 | 
            +
                display: grid;
         | 
| 51 | 
            +
                grid-template-columns: auto auto auto;
         | 
| 52 | 
            +
                gap: 1rem;
         | 
| 53 | 
            +
                align-items: center;
         | 
| 54 | 
            +
              }
         | 
| 55 | 
            +
              atomic-result-section-bottom-metadata span {
         | 
| 56 | 
            +
                display: flex;
         | 
| 57 | 
            +
                align-items: center;
         | 
| 58 | 
            +
              }
         | 
| 51 59 |  | 
| 52 60 | 
             
              atomic-result-section-title:hover {
         | 
| 53 61 | 
             
              cursor: pointer;
         | 
| 54 62 | 
             
              text-decoration: underline; 
         | 
| 55 63 | 
             
            }
         | 
| 56 | 
            -
             | 
| 64 | 
            +
            .visited-title{
         | 
| 65 | 
            +
              color: black !important;
         | 
| 66 | 
            +
            }
         | 
| 57 67 | 
             
            atomic-result-section-visual {
         | 
| 58 | 
            -
                    width:  | 
| 68 | 
            +
                    width: 3rem !important;
         | 
| 59 69 | 
             
                    height: 5rem !important;
         | 
| 60 | 
            -
             | 
| 70 | 
            +
                    display: grid;
         | 
| 71 | 
            +
                    align-items: center;
         | 
| 61 72 | 
             
                }
         | 
| 62 73 | 
             
            </style>
         | 
| 63 74 |  | 
| 64 75 | 
             
            <atomic-result-section-visual>
         | 
| 65 | 
            -
              < | 
| 76 | 
            +
              <img src="../images/FAQ.png" alt="Image" />
         | 
| 77 | 
            +
              <!-- <atomic-icon class="icon"></atomic-icon>
         | 
| 66 78 | 
             
              <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="40px" height="45px" viewBox="0 0 50 45" version="1.1">
         | 
| 67 79 | 
             
                <g id="surface1">
         | 
| 68 80 | 
             
                <path style="stroke:none;fill-rule:nonzero;fill:rgb(1.568627%,1.568627%,1.568627%);fill-opacity:1;" d="M 10.785156 -0.527344 C 11.4375 -0.53125 12.09375 -0.535156 12.765625 -0.539062 C 14.140625 -0.539062 15.515625 -0.53125 16.890625 -0.515625 C 18.992188 -0.496094 21.09375 -0.515625 23.191406 -0.542969 C 24.535156 -0.539062 25.875 -0.535156 27.214844 -0.527344 C 28.152344 -0.539062 28.152344 -0.539062 29.109375 -0.550781 C 32.25 -0.484375 33.738281 -0.203125 36.414062 1.585938 C 38.53125 4.75 38.574219 7.054688 38.527344 10.785156 C 38.53125 11.4375 38.535156 12.09375 38.539062 12.765625 C 38.539062 14.140625 38.53125 15.515625 38.515625 16.890625 C 38.496094 18.992188 38.515625 21.09375 38.542969 23.191406 C 38.539062 24.535156 38.535156 25.875 38.527344 27.214844 C 38.535156 27.839844 38.542969 28.464844 38.550781 29.109375 C 38.484375 32.25 38.203125 33.738281 36.414062 36.414062 C 33.25 38.53125 30.945312 38.574219 27.214844 38.527344 C 26.234375 38.53125 26.234375 38.53125 25.234375 38.539062 C 23.859375 38.539062 22.484375 38.53125 21.109375 38.515625 C 19.007812 38.496094 16.90625 38.515625 14.804688 38.542969 C 13.464844 38.539062 12.125 38.535156 10.785156 38.527344 C 10.160156 38.535156 9.535156 38.542969 8.890625 38.550781 C 5.75 38.484375 4.261719 38.203125 1.585938 36.414062 C -0.53125 33.25 -0.574219 30.945312 -0.527344 27.214844 C -0.53125 26.5625 -0.535156 25.90625 -0.539062 25.234375 C -0.539062 23.859375 -0.53125 22.484375 -0.515625 21.109375 C -0.496094 19.007812 -0.515625 16.90625 -0.542969 14.804688 C -0.539062 13.464844 -0.535156 12.125 -0.527344 10.785156 C -0.535156 10.160156 -0.542969 9.535156 -0.550781 8.890625 C -0.484375 5.75 -0.203125 4.261719 1.585938 1.585938 C 4.75 -0.53125 7.054688 -0.574219 10.785156 -0.527344 Z M 10.785156 -0.527344 "></path>
         | 
| @@ -71,7 +83,7 @@ atomic-result-section-visual { | |
| 71 83 | 
             
                <path style="stroke:none;fill-rule:nonzero;fill:rgb(83.529412%,83.529412%,83.529412%);fill-opacity:1;" d="M 14.652344 5.347656 C 15.464844 5.351562 16.28125 5.355469 17.121094 5.359375 C 18.007812 5.359375 18.890625 5.363281 19.800781 5.363281 C 20.730469 5.375 21.65625 5.382812 22.613281 5.394531 C 23.542969 5.394531 24.472656 5.394531 25.429688 5.394531 C 32.347656 5.429688 32.347656 5.429688 33.25 6.332031 C 33.320312 7.453125 33.335938 8.578125 33.328125 9.699219 C 33.324219 10.378906 33.320312 11.054688 33.320312 11.75 C 33.308594 12.816406 33.308594 12.816406 33.300781 13.902344 C 33.296875 14.617188 33.292969 15.332031 33.289062 16.066406 C 33.277344 17.835938 33.265625 19.605469 33.25 21.375 C 31.683594 22.160156 31.683594 22.160156 30.082031 22.957031 C 30.082031 24.785156 30.082031 26.617188 30.082031 28.5 C 29.039062 27.976562 27.992188 27.453125 26.917969 26.917969 C 26.394531 27.4375 25.871094 27.960938 25.332031 28.5 C 23.800781 28.617188 22.265625 28.675781 20.730469 28.699219 C 17.308594 28.839844 17.308594 28.839844 14.382812 30.394531 C 13.226562 31.84375 13.226562 31.84375 11.875 34.042969 C 11.351562 34.042969 10.828125 34.042969 10.292969 34.042969 C 10.292969 32.214844 10.292969 30.382812 10.292969 28.5 C 9.539062 28.550781 8.789062 28.597656 8.015625 28.648438 C 7.199219 28.597656 6.382812 28.550781 5.542969 28.5 C 3.570312 25.542969 3.722656 23.210938 3.761719 19.792969 C 3.753906 19.21875 3.75 18.644531 3.742188 18.054688 C 3.753906 15.046875 3.835938 13.640625 5.542969 11.082031 C 8.410156 10.933594 8.410156 10.933594 11.082031 11.082031 C 11.050781 10.460938 11.019531 9.84375 10.984375 9.203125 C 11.121094 6.355469 11.808594 5.625 14.652344 5.347656 Z M 12.667969 7.125 C 12.632812 8.445312 12.632812 9.765625 12.667969 11.082031 C 13.570312 11.132812 14.476562 11.179688 15.410156 11.230469 C 16.589844 11.296875 17.769531 11.363281 18.949219 11.429688 C 19.847656 11.476562 19.847656 11.476562 20.761719 11.523438 C 25.242188 11.785156 25.242188 11.785156 26.125 12.667969 C 26.285156 15.183594 26.398438 17.699219 26.464844 20.21875 C 26.523438 22.011719 26.523438 22.011719 26.917969 24.542969 C 27.699219 25.0625 28.484375 25.585938 29.292969 26.125 C 29.292969 24.558594 29.292969 22.988281 29.292969 21.375 C 30.335938 21.113281 31.382812 20.851562 32.457031 20.582031 C 32.480469 18.355469 32.496094 16.128906 32.507812 13.902344 C 32.515625 13.269531 32.519531 12.632812 32.527344 11.980469 C 32.535156 10.359375 32.5 8.742188 32.457031 7.125 C 31.125 5.789062 29.460938 6.230469 27.632812 6.226562 C 26.820312 6.226562 26.003906 6.226562 25.164062 6.226562 C 24.304688 6.226562 23.445312 6.230469 22.5625 6.234375 C 21.273438 6.230469 21.273438 6.230469 19.960938 6.226562 C 19.144531 6.226562 18.332031 6.226562 17.492188 6.226562 C 16.359375 6.230469 16.359375 6.230469 15.207031 6.230469 C 13.476562 6.136719 13.476562 6.136719 12.667969 7.125 Z M 5.542969 12.667969 C 5.519531 15.023438 5.503906 17.382812 5.492188 19.742188 C 5.484375 20.414062 5.480469 21.089844 5.472656 21.78125 C 5.46875 22.421875 5.46875 23.0625 5.464844 23.722656 C 5.460938 24.316406 5.457031 24.90625 5.453125 25.519531 C 5.386719 26.9375 5.386719 26.9375 6.332031 27.707031 C 7.917969 27.742188 9.5 27.742188 11.082031 27.707031 C 11.082031 29.015625 11.082031 30.320312 11.082031 31.667969 C 11.539062 31.160156 11.996094 30.65625 12.46875 30.132812 C 15.820312 28.007812 18.542969 28.050781 22.449219 27.925781 C 24.664062 27.917969 24.664062 27.917969 26.125 26.125 C 26.28125 23.980469 26.34375 21.933594 26.324219 19.792969 C 26.328125 19.207031 26.335938 18.625 26.339844 18.023438 C 26.449219 14.578125 26.449219 14.578125 24.542969 11.875 C 22.726562 11.640625 22.726562 11.640625 20.632812 11.691406 C 19.859375 11.695312 19.085938 11.695312 18.289062 11.695312 C 17.476562 11.707031 16.667969 11.714844 15.832031 11.726562 C 14.617188 11.726562 14.617188 11.726562 13.378906 11.726562 C 9.328125 11.578125 9.328125 11.578125 5.542969 12.667969 Z M 5.542969 12.667969 "></path>
         | 
| 72 84 | 
             
                <path style="stroke:none;fill-rule:nonzero;fill:rgb(92.54902%,92.54902%,92.54902%);fill-opacity:1;" d="M 6.332031 27.707031 C 7.902344 27.707031 9.46875 27.707031 11.082031 27.707031 C 11.34375 28.753906 11.605469 29.796875 11.875 30.875 C 12.296875 30.355469 12.714844 29.839844 13.148438 29.304688 C 15.582031 27.253906 16.855469 27.375 19.988281 27.511719 C 20.84375 27.539062 21.695312 27.566406 22.574219 27.597656 C 23.546875 27.652344 23.546875 27.652344 24.542969 27.707031 C 24.542969 27.96875 24.542969 28.230469 24.542969 28.5 C 23.667969 28.503906 23.667969 28.503906 22.777344 28.507812 C 18.3125 28.539062 18.3125 28.539062 14.429688 30.402344 C 13.519531 31.574219 12.691406 32.804688 11.875 34.042969 C 11.351562 34.042969 10.828125 34.042969 10.292969 34.042969 C 10.292969 32.214844 10.292969 30.382812 10.292969 28.5 C 8.984375 28.5 7.679688 28.5 6.332031 28.5 C 6.332031 28.238281 6.332031 27.976562 6.332031 27.707031 Z M 6.332031 27.707031 "></path>
         | 
| 73 85 | 
             
                </g>
         | 
| 74 | 
            -
                </svg>
         | 
| 86 | 
            +
                </svg> -->
         | 
| 75 87 | 
             
            </atomic-result-section-visual>
         | 
| 76 88 |  | 
| 77 89 | 
             
            <atomic-result-section-title>
         | 
| @@ -83,8 +95,14 @@ atomic-result-section-visual { | |
| 83 95 | 
             
            </atomic-result-section-excerpt>
         | 
| 84 96 |  | 
| 85 97 | 
             
            <atomic-result-section-bottom-metadata>
         | 
| 86 | 
            -
              < | 
| 87 | 
            -
                <atomic- | 
| 88 | 
            -
             | 
| 89 | 
            -
              
         | 
| 98 | 
            +
              <span>
         | 
| 99 | 
            +
                <atomic-text value="Date:  "></atomic-text>
         | 
| 100 | 
            +
                <atomic-result-date></atomic-result-date>
         | 
| 101 | 
            +
              </span><span>
         | 
| 102 | 
            +
                <atomic-text value="Source:  "></atomic-text><atomic-result-text field="sourcetype"></atomic-result-text>
         | 
| 103 | 
            +
              </span><span> <atomic-text value="Sharepoint:  "></atomic-text>
         | 
| 104 | 
            +
                <atomic-result-link><a slot="attributes" target="_blank"></a>
         | 
| 105 | 
            +
                  <atomic-result-text field="PrintableUri"></atomic-result-text>
         | 
| 106 | 
            +
                </atomic-result-link>
         | 
| 107 | 
            +
              </span>
         | 
| 90 108 | 
             
            </atomic-result-section-bottom-metadata>
         | 
| @@ -11,43 +11,53 @@ | |
| 11 11 |  | 
| 12 12 |  | 
| 13 13 | 
             
              atomic-result-section-excerpt {
         | 
| 14 | 
            -
                font-size:  | 
| 15 | 
            -
                margin-top:2px !important;
         | 
| 16 | 
            -
             | 
| 17 | 
            -
             | 
| 18 | 
            -
                color: darkgray !important;
         | 
| 19 | 
            -
                margin-right: 3px;
         | 
| 20 | 
            -
                font-size: 10px;
         | 
| 21 | 
            -
                line-height: 18px !important;
         | 
| 14 | 
            +
                font-size: 1.3rem !important;
         | 
| 15 | 
            +
                margin-top: 2px !important;
         | 
| 16 | 
            +
                max-height: unset !important;
         | 
| 17 | 
            +
                line-height: normal !important;
         | 
| 22 18 | 
             
              }
         | 
| 23 19 |  | 
| 24 20 |  | 
| 25 21 |  | 
| 26 | 
            -
             | 
| 22 | 
            +
             | 
| 23 | 
            +
             | 
| 24 | 
            +
              atomic-result-section-bottom-metadata {
         | 
| 27 25 | 
             
                margin-top: 2px;
         | 
| 26 | 
            +
                color: #A6A6A6 !important;
         | 
| 27 | 
            +
                font-size: 1rem !important;
         | 
| 28 | 
            +
                margin-right: 3px;
         | 
| 29 | 
            +
                line-height: 18px !important;
         | 
| 30 | 
            +
                display: grid;
         | 
| 31 | 
            +
                grid-template-columns: 0.5fr 0.5fr 1fr;
         | 
| 32 | 
            +
                gap: 1rem;
         | 
| 33 | 
            +
                align-items: center;
         | 
| 28 34 | 
             
              }
         | 
| 29 | 
            -
             | 
| 30 35 | 
             
              atomic-result-section-title a {
         | 
| 31 | 
            -
                color: # | 
| 32 | 
            -
                font-size:  | 
| 33 | 
            -
             | 
| 36 | 
            +
                color: #CAA144 !important;
         | 
| 37 | 
            +
                font-size: 1.7rem !important;
         | 
| 38 | 
            +
                    max-height: unset !important;
         | 
| 39 | 
            +
                line-height: normal !important;
         | 
| 34 40 | 
             
              }
         | 
| 35 41 |  | 
| 36 | 
            -
              atomic-result- | 
| 37 | 
            -
                color:  | 
| 42 | 
            +
              atomic-result-section-title a:visited {
         | 
| 43 | 
            +
                color: black !important;
         | 
| 38 44 |  | 
| 39 45 | 
             
              }
         | 
| 40 46 |  | 
| 41 47 | 
             
              atomic-result-section-visual {
         | 
| 42 | 
            -
                    width:  | 
| 48 | 
            +
                    width: 3rem !important;
         | 
| 43 49 | 
             
                    height: 5rem !important;
         | 
| 50 | 
            +
                    display: grid;
         | 
| 51 | 
            +
                    align-items: center;
         | 
| 52 | 
            +
                    justify-content: center;
         | 
| 44 53 |  | 
| 45 54 | 
             
                }
         | 
| 46 55 | 
             
            </style>
         | 
| 47 56 |  | 
| 48 57 | 
             
            <atomic-result-section-visual>
         | 
| 49 58 | 
             
            <atomic-field-condition  must-match-source="ServiceNow - Knowledge">
         | 
| 50 | 
            -
              < | 
| 59 | 
            +
              <img src="../images/Default.png" alt="Image" />
         | 
| 60 | 
            +
              <!-- <atomic-icon class="icon"></atomic-icon>  <?xml version="1.0" encoding="UTF-8"?>
         | 
| 51 61 | 
             
              <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="55px" height="55px" viewBox="0 0 65 65" version="1.1">
         | 
| 52 62 | 
             
              <g id="surface1">
         | 
| 53 63 | 
             
              <path style=" stroke:none;fill-rule:nonzero;fill:rgb(1.176471%,1.176471%,1.176471%);fill-opacity:1;" d="M 10.785156 -0.527344 C 11.4375 -0.53125 12.09375 -0.535156 12.765625 -0.539062 C 14.140625 -0.539062 15.515625 -0.53125 16.890625 -0.515625 C 18.992188 -0.496094 21.09375 -0.515625 23.191406 -0.542969 C 24.535156 -0.539062 25.875 -0.535156 27.214844 -0.527344 C 28.152344 -0.539062 28.152344 -0.539062 29.109375 -0.550781 C 32.25 -0.484375 33.738281 -0.203125 36.414062 1.585938 C 38.53125 4.75 38.574219 7.054688 38.527344 10.785156 C 38.53125 11.4375 38.535156 12.09375 38.539062 12.765625 C 38.539062 14.140625 38.53125 15.515625 38.515625 16.890625 C 38.496094 18.992188 38.515625 21.09375 38.542969 23.191406 C 38.539062 24.535156 38.535156 25.875 38.527344 27.214844 C 38.535156 27.839844 38.542969 28.464844 38.550781 29.109375 C 38.484375 32.25 38.203125 33.738281 36.414062 36.414062 C 33.25 38.53125 30.945312 38.574219 27.214844 38.527344 C 26.234375 38.53125 26.234375 38.53125 25.234375 38.539062 C 23.859375 38.539062 22.484375 38.53125 21.109375 38.515625 C 19.007812 38.496094 16.90625 38.515625 14.804688 38.542969 C 13.464844 38.539062 12.125 38.535156 10.785156 38.527344 C 10.160156 38.535156 9.535156 38.542969 8.890625 38.550781 C 5.75 38.484375 4.261719 38.203125 1.585938 36.414062 C -0.53125 33.25 -0.574219 30.945312 -0.527344 27.214844 C -0.53125 26.5625 -0.535156 25.90625 -0.539062 25.234375 C -0.539062 23.859375 -0.53125 22.484375 -0.515625 21.109375 C -0.496094 19.007812 -0.515625 16.90625 -0.542969 14.804688 C -0.539062 13.464844 -0.535156 12.125 -0.527344 10.785156 C -0.535156 10.160156 -0.542969 9.535156 -0.550781 8.890625 C -0.484375 5.75 -0.203125 4.261719 1.585938 1.585938 C 4.75 -0.53125 7.054688 -0.574219 10.785156 -0.527344 Z M 10.785156 -0.527344 "/>
         | 
| @@ -77,10 +87,12 @@ | |
| 77 87 | 
             
              <path style=" stroke:none;fill-rule:nonzero;fill:rgb(3.529412%,3.529412%,3.529412%);fill-opacity:1;" d="M 17.417969 5.542969 C 17.679688 5.542969 17.9375 5.542969 18.207031 5.542969 C 18.207031 7.371094 18.207031 9.199219 18.207031 11.082031 C 16.902344 11.082031 15.597656 11.082031 14.25 11.082031 C 15.101562 8.777344 15.65625 7.300781 17.417969 5.542969 Z M 17.417969 5.542969 "/>
         | 
| 78 88 | 
             
              <path style=" stroke:none;fill-rule:nonzero;fill:rgb(72.941176%,72.941176%,72.941176%);fill-opacity:1;" d="M 12.667969 27.707031 C 15.625 28.695312 15.980469 29.792969 17.417969 32.457031 C 16.632812 33.632812 16.632812 33.632812 15.832031 34.832031 C 15.3125 34.570312 14.789062 34.3125 14.25 34.042969 C 14.511719 33.519531 14.773438 32.996094 15.042969 32.457031 C 14.300781 30.851562 13.511719 29.265625 12.667969 27.707031 Z M 12.667969 27.707031 "/>
         | 
| 79 89 | 
             
              </g>
         | 
| 80 | 
            -
              </svg>
         | 
| 90 | 
            +
              </svg> -->
         | 
| 81 91 | 
             
            </atomic-field-condition>
         | 
| 82 92 | 
             
              <atomic-field-condition class="field" must-match-source="Salesforce - Guru">
         | 
| 83 | 
            -
             | 
| 93 | 
            +
                <img src="../images/FAQ.png" alt="Image" />
         | 
| 94 | 
            +
             | 
| 95 | 
            +
              <!-- <atomic-icon class="icon"></atomic-icon>
         | 
| 84 96 |  | 
| 85 97 | 
             
              <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="45px" height="45px" viewBox="0 0 40 55" version="1.1">
         | 
| 86 98 | 
             
                <g id="surface1">
         | 
| @@ -90,7 +102,7 @@ | |
| 90 102 | 
             
                <path style="stroke:none;fill-rule:nonzero;fill:rgb(83.529412%,83.529412%,83.529412%);fill-opacity:1;" d="M 14.652344 5.347656 C 15.464844 5.351562 16.28125 5.355469 17.121094 5.359375 C 18.007812 5.359375 18.890625 5.363281 19.800781 5.363281 C 20.730469 5.375 21.65625 5.382812 22.613281 5.394531 C 23.542969 5.394531 24.472656 5.394531 25.429688 5.394531 C 32.347656 5.429688 32.347656 5.429688 33.25 6.332031 C 33.320312 7.453125 33.335938 8.578125 33.328125 9.699219 C 33.324219 10.378906 33.320312 11.054688 33.320312 11.75 C 33.308594 12.816406 33.308594 12.816406 33.300781 13.902344 C 33.296875 14.617188 33.292969 15.332031 33.289062 16.066406 C 33.277344 17.835938 33.265625 19.605469 33.25 21.375 C 31.683594 22.160156 31.683594 22.160156 30.082031 22.957031 C 30.082031 24.785156 30.082031 26.617188 30.082031 28.5 C 29.039062 27.976562 27.992188 27.453125 26.917969 26.917969 C 26.394531 27.4375 25.871094 27.960938 25.332031 28.5 C 23.800781 28.617188 22.265625 28.675781 20.730469 28.699219 C 17.308594 28.839844 17.308594 28.839844 14.382812 30.394531 C 13.226562 31.84375 13.226562 31.84375 11.875 34.042969 C 11.351562 34.042969 10.828125 34.042969 10.292969 34.042969 C 10.292969 32.214844 10.292969 30.382812 10.292969 28.5 C 9.539062 28.550781 8.789062 28.597656 8.015625 28.648438 C 7.199219 28.597656 6.382812 28.550781 5.542969 28.5 C 3.570312 25.542969 3.722656 23.210938 3.761719 19.792969 C 3.753906 19.21875 3.75 18.644531 3.742188 18.054688 C 3.753906 15.046875 3.835938 13.640625 5.542969 11.082031 C 8.410156 10.933594 8.410156 10.933594 11.082031 11.082031 C 11.050781 10.460938 11.019531 9.84375 10.984375 9.203125 C 11.121094 6.355469 11.808594 5.625 14.652344 5.347656 Z M 12.667969 7.125 C 12.632812 8.445312 12.632812 9.765625 12.667969 11.082031 C 13.570312 11.132812 14.476562 11.179688 15.410156 11.230469 C 16.589844 11.296875 17.769531 11.363281 18.949219 11.429688 C 19.847656 11.476562 19.847656 11.476562 20.761719 11.523438 C 25.242188 11.785156 25.242188 11.785156 26.125 12.667969 C 26.285156 15.183594 26.398438 17.699219 26.464844 20.21875 C 26.523438 22.011719 26.523438 22.011719 26.917969 24.542969 C 27.699219 25.0625 28.484375 25.585938 29.292969 26.125 C 29.292969 24.558594 29.292969 22.988281 29.292969 21.375 C 30.335938 21.113281 31.382812 20.851562 32.457031 20.582031 C 32.480469 18.355469 32.496094 16.128906 32.507812 13.902344 C 32.515625 13.269531 32.519531 12.632812 32.527344 11.980469 C 32.535156 10.359375 32.5 8.742188 32.457031 7.125 C 31.125 5.789062 29.460938 6.230469 27.632812 6.226562 C 26.820312 6.226562 26.003906 6.226562 25.164062 6.226562 C 24.304688 6.226562 23.445312 6.230469 22.5625 6.234375 C 21.273438 6.230469 21.273438 6.230469 19.960938 6.226562 C 19.144531 6.226562 18.332031 6.226562 17.492188 6.226562 C 16.359375 6.230469 16.359375 6.230469 15.207031 6.230469 C 13.476562 6.136719 13.476562 6.136719 12.667969 7.125 Z M 5.542969 12.667969 C 5.519531 15.023438 5.503906 17.382812 5.492188 19.742188 C 5.484375 20.414062 5.480469 21.089844 5.472656 21.78125 C 5.46875 22.421875 5.46875 23.0625 5.464844 23.722656 C 5.460938 24.316406 5.457031 24.90625 5.453125 25.519531 C 5.386719 26.9375 5.386719 26.9375 6.332031 27.707031 C 7.917969 27.742188 9.5 27.742188 11.082031 27.707031 C 11.082031 29.015625 11.082031 30.320312 11.082031 31.667969 C 11.539062 31.160156 11.996094 30.65625 12.46875 30.132812 C 15.820312 28.007812 18.542969 28.050781 22.449219 27.925781 C 24.664062 27.917969 24.664062 27.917969 26.125 26.125 C 26.28125 23.980469 26.34375 21.933594 26.324219 19.792969 C 26.328125 19.207031 26.335938 18.625 26.339844 18.023438 C 26.449219 14.578125 26.449219 14.578125 24.542969 11.875 C 22.726562 11.640625 22.726562 11.640625 20.632812 11.691406 C 19.859375 11.695312 19.085938 11.695312 18.289062 11.695312 C 17.476562 11.707031 16.667969 11.714844 15.832031 11.726562 C 14.617188 11.726562 14.617188 11.726562 13.378906 11.726562 C 9.328125 11.578125 9.328125 11.578125 5.542969 12.667969 Z M 5.542969 12.667969 "></path>
         | 
| 91 103 | 
             
                <path style="stroke:none;fill-rule:nonzero;fill:rgb(92.54902%,92.54902%,92.54902%);fill-opacity:1;" d="M 6.332031 27.707031 C 7.902344 27.707031 9.46875 27.707031 11.082031 27.707031 C 11.34375 28.753906 11.605469 29.796875 11.875 30.875 C 12.296875 30.355469 12.714844 29.839844 13.148438 29.304688 C 15.582031 27.253906 16.855469 27.375 19.988281 27.511719 C 20.84375 27.539062 21.695312 27.566406 22.574219 27.597656 C 23.546875 27.652344 23.546875 27.652344 24.542969 27.707031 C 24.542969 27.96875 24.542969 28.230469 24.542969 28.5 C 23.667969 28.503906 23.667969 28.503906 22.777344 28.507812 C 18.3125 28.539062 18.3125 28.539062 14.429688 30.402344 C 13.519531 31.574219 12.691406 32.804688 11.875 34.042969 C 11.351562 34.042969 10.828125 34.042969 10.292969 34.042969 C 10.292969 32.214844 10.292969 30.382812 10.292969 28.5 C 8.984375 28.5 7.679688 28.5 6.332031 28.5 C 6.332031 28.238281 6.332031 27.976562 6.332031 27.707031 Z M 6.332031 27.707031 "></path>
         | 
| 92 104 | 
             
                </g>
         | 
| 93 | 
            -
                </svg>
         | 
| 105 | 
            +
                </svg> -->
         | 
| 94 106 |  | 
| 95 107 | 
             
            </atomic-field-condition>
         | 
| 96 108 | 
             
            </atomic-result-section-visual>
         | 
| @@ -107,20 +119,23 @@ | |
| 107 119 | 
             
              </atomic-field-condition>
         | 
| 108 120 |  | 
| 109 121 | 
             
              <atomic-field-condition class="field" must-match-source="Salesforce - Guru">
         | 
| 110 | 
            -
                <atomic-result-text field=" | 
| 122 | 
            +
                <atomic-result-text field="excerpt"></atomic-result-text>
         | 
| 111 123 |  | 
| 112 124 | 
             
              </atomic-field-condition>
         | 
| 113 125 | 
             
            </atomic-result-section-excerpt>
         | 
| 114 126 |  | 
| 115 127 | 
             
            <atomic-result-section-bottom-metadata>
         | 
| 116 | 
            -
              < | 
| 128 | 
            +
              <span>
         | 
| 129 | 
            +
                <atomic-text value="Date:  "></atomic-text>
         | 
| 130 | 
            +
                <atomic-result-date></atomic-result-date>
         | 
| 131 | 
            +
              </span>   <span>
         | 
| 117 132 | 
             
                <atomic-field-condition class="field" must-match-source="ServiceNow - Knowledge">
         | 
| 118 | 
            -
                   | 
| 133 | 
            +
                  </a><atomic-text value="Source: ServiceNow"></atomic-text>
         | 
| 119 134 | 
             
                </atomic-field-condition>
         | 
| 120 | 
            -
               
         | 
| 135 | 
            +
              </span>   <span>
         | 
| 121 136 | 
             
                <atomic-field-condition class="field" must-match-source="Salesforce - Guru">
         | 
| 122 | 
            -
                  <atomic- | 
| 137 | 
            +
                  <atomic-text value="Source: Guru Articles">
         | 
| 123 138 | 
             
                </atomic-field-condition>
         | 
| 124 | 
            -
             | 
| 125 | 
            -
              
         | 
| 139 | 
            +
             | 
| 140 | 
            +
              </span>
         | 
| 126 141 | 
             
            </atomic-result-section-bottom-metadata>
         |