Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: coveo/ui-kit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: @coveo/atomic-react@3.2.17
Choose a base ref
...
head repository: coveo/ui-kit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: @coveo/atomic-react@3.2.18
Choose a head ref
  • 18 commits
  • 165 files changed
  • 12 contributors

Commits on Feb 5, 2025

  1. fix(atomic): fix broken generated types (#4932)

    alexprudhomme authored Feb 5, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    1c8d484 View commit details

Commits on Feb 6, 2025

  1. docs(headless,headless-react): support OneTrust preferences in typedo…

    …c sites (#4942)
    
    https://coveord.atlassian.net/browse/KIT-3946
    
    I realized that the settings pannel in Typedoc sites relies on cookies.
    This means that technically, we need to support the privacy preferences
    set on docs.coveo.com.
    
    You can test my fix by opening this page:
    https://docs.coveo.com/en/headless/latest/reference/functions/Case_Assist.buildCaseAssistEngine.html
    After allowing or disallowing cookies from https://docs.coveo.com/en/0
    (`Cookie preferences` modal accessible through upper right corner (...)
    button).
    
    Typedoc also uses a very large number of cookies for navigation
    purposes. I'll look into this with legal, but I think we'll be able to
    consider them strictly necessary, so we won't have to clear them as
    Typedoc populates them. Basically, if we erased the navigation cookies,
    Typedoc would never remember the navigation tree you opened prior to
    opening a new page.
    jpmarceau authored Feb 6, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c353e4d View commit details
  2. feat(atomic): add button function for lit components (#4857)

    Add Lit equivalent to `<Button>` functional element.
    
    Also replaced `button.tsx` to `stencil-button.tsx` which is responsible
    for all the file changes
    
    ## Usage 
    ### With Stencil
    ```tsx
    return (
      <Button
        style="primary"
        text={i18n.t('load-more-results')}
        part="load-more-results-button"
        class="my-2 p-3 font-bold"
        onClick={() => onClick()}
      ></Button>
    );
    ```
    
    ### With Lit
    ```ts
    return button({
      props: {
        style: 'primary',
        text: i18n.t('load-more-results'),
        part: 'load-more-results-button',
        class: 'my-2 p-3 font-bold',
        onClick: () => onClick(),
      },
    });
    ```
    
    ## Question
    Lit does not natively support spreading attributes as we do in .tsx
    files, which can lead to code repetition. To address this, we could use
    [lit-helpers](https://open-wc.org/docs/development/lit-helpers/#spread-directives)
    to avoid duplicating attributes, properties, and events while
    maintaining consistency in our patterns.
    
    WDYT
    y-lakhdar authored Feb 6, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    b64e226 View commit details

Commits on Feb 7, 2025

  1. docs(headless-react): pagination typedoc reference (#4949)

    https://coveord.atlassian.net/browse/KIT-3950
    
    I noticed that we weren't documenting PaginationOptions.
    
    https://docs.coveo.com/en/headless-react/latest/reference/interfaces/SSR_Commerce.index.PaginationProps.html#options
    
    This PR fixes it:
    <img width="1541" alt="Screenshot 2025-02-06 at 4 14 03 PM"
    src="https://github.com/user-attachments/assets/c71ca770-c275-41d1-adeb-5ad43be3b308"
    />
    <img width="1492" alt="Screenshot 2025-02-06 at 4 14 15 PM"
    src="https://github.com/user-attachments/assets/6c7c200b-252a-41b1-a7bf-76ba36bb9bf2"
    />
    jpmarceau authored Feb 7, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c9cae30 View commit details
  2. chore: change codeowners for IPX (#4951)

    Change code owners since the SVCINT team does not exist anymore
    
    https://coveord.atlassian.net/browse/SVCC-4716
    dguerinCoveo authored Feb 7, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c24fb59 View commit details
  3. fix(atomic): search-box announces new suggestions even when count sta…

    …ys the same (#4950)
    
    https://coveord.atlassian.net/browse/KIT-3893
    
    The voice reader won't announce if it's value stays the same. This PR
    makes it so it's value always changes on every input change thus always
    rereading the amount of suggestions.
    alexprudhomme authored Feb 7, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    ff21fd0 View commit details

Commits on Feb 10, 2025

  1. fix(headless commerce): handle action dispatched by renew access toke…

    …n middleware in commerce configuration slice (#4947)
    
    https://coveord.atlassian.net/browse/KIT-3949
    
    This is most likely what's causing issues in projects migrating from v2
    to v3 that have a renewAccessToken function.
    fbeaudoincoveo authored Feb 10, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    e1e1f71 View commit details
  2. fix(answerConfigurationId): remove internal tag (#4922)

    https://coveord.atlassian.net/browse/SVCC-4631
    
    As we are releasing the KnowledgeHub and the Answer manager. It is now
    legitimate to show this property on the Quantic an Atomic Generate
    Answer components.
    dmgauthier authored Feb 10, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c8dd23b View commit details
  3. test(quantic): Add tests for feedback modal edge cases in quanticSmar…

    …tSnippet e2e tests (#4939)
    
    [SFINT-5933](https://coveord.atlassian.net/jira/software/c/projects/SFINT/boards/440/backlog?assignee=62e7739dec6b328032f09736&selectedIssue=SFINT-5933)
    
    ## IN THIS PR:
    
    - Added the following 2 edge cases tests in the smart snippet E2E tests
    in playwright:
    
    1- when trying to open the feedback modal after executing a query that
    gave a new answer, should open the feedback modal
    2- when trying to open the feedback modal after executing the same
    query, should not allow to open the feedback modal
    
    
    I check the presence of the explain why button which opens the feedback
    modal, this was the check in the Cypress ones.
    
    
    
    ## TESTS:
    <img width="797" alt="image"
    src="https://github.com/user-attachments/assets/ba10167c-c1e6-4f0d-a8f2-b292bd82c113"
    />
    
    
    
    [SFINT-5933]:
    https://coveord.atlassian.net/browse/SFINT-5933?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
    SimonMilord authored Feb 10, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    08648b4 View commit details
  4. docs(headless-react): more facet docs (#4952)

    https://coveord.atlassian.net/browse/DOC-16501
    
    We were missing documentation for location facets and for facet
    attributes coming from CoreCommerceFacets.
    E.g., 
    ![Screenshot 2025-02-07 at 12 25
    15 PM](https://github.com/user-attachments/assets/64a8f18c-ea85-4727-a5f1-7ef2d6be9b8a)
    vs
    ![Screenshot 2025-02-07 at 12 25
    29 PM](https://github.com/user-attachments/assets/3b52d77e-432b-41f6-833e-f15570254b5b)
    and
    ![Screenshot 2025-02-07 at 12 26
    08 PM](https://github.com/user-attachments/assets/45166bbb-b116-4dd3-a5f5-d0d5809e2e06)
    jpmarceau authored Feb 10, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    fa6a88d View commit details

Commits on Feb 11, 2025

  1. test(quantic): SFINT-5832 Sort E2E tests migrate from Cypress to Play…

    …wright (#4777)
    
    https://coveord.atlassian.net/browse/SFINT-5832
    
    **IN THIS PR:**
    - Added Playwright E2E tests for the quantic-sort component
    
    **UNIT TESTS:**
    - No need, as UTs already there
    
    **E2E PLAYWRIGHT TESTS:**
    - Playwright for Sort component
    
    ---------
    
    Co-authored-by: mmitiche <mmitiche@coveo.com>
    Co-authored-by: Etienne Rocheleau <erocheleau@coveo.com>
    Co-authored-by: Simon Milord <simon.milord@gmail.com>
    4 people authored Feb 11, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    9c846ba View commit details
  2. feat(atomic): add heading function for lit components (#4861)

    * Added `heading` function to replace the `<Heading>` functional
    component.
    * Renamed `hidden.tsx` function component to `stencil-hidden.tsx` (to be
    consistent)
    
    ## Usage
    ### with Stencil
    ```.tsx
    <Heading level={level} class="truncate">
      {label}
    </Heading>
    ```
    
    ### with Lit
    ```ts
    html`${heading(
      {level, class: "truncate"},
      label
    )}`
    ```
    
    ## Notes
    Using
    [`unsafeStatic`](https://lit.dev/docs/templates/expressions/#non-literal-statics)
    since we need to interpolate non-literal statics.
    
    https://coveord.atlassian.net/browse/KIT-3833
    
    ---------
    
    Co-authored-by: Frederic Beaudoin <fbeaudoin@coveo.com>
    y-lakhdar and fbeaudoincoveo authored Feb 11, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    33fae2f View commit details
  3. chore(atomic): move CommerceBindings type to .ts file (#4937)

    Just moving type from a .tsx to a .ts file
    https://coveord.atlassian.net/browse/KIT-3941
    
    ---------
    
    Co-authored-by: GitHub Actions Bot <>
    y-lakhdar authored Feb 11, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    808f891 View commit details
  4. chore(deps): update angular to v18.2.14 j:kit-282 (#4955)

    This PR contains the following updates:
    
    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    |
    [@angular-devkit/build-angular](https://redirect.github.com/angular/angular-cli)
    | [`18.2.12` ->
    `18.2.14`](https://renovatebot.com/diffs/npm/@angular-devkit%2fbuild-angular/18.2.12/18.2.14)
    |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/@angular-devkit%2fbuild-angular/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@angular-devkit%2fbuild-angular/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@angular-devkit%2fbuild-angular/18.2.12/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@angular-devkit%2fbuild-angular/18.2.12/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    | [@angular/build](https://redirect.github.com/angular/angular-cli) |
    [`18.2.12` ->
    `18.2.14`](https://renovatebot.com/diffs/npm/@angular%2fbuild/18.2.12/18.2.14)
    |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/@angular%2fbuild/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@angular%2fbuild/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@angular%2fbuild/18.2.12/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@angular%2fbuild/18.2.12/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    | [@angular/cli](https://redirect.github.com/angular/angular-cli) |
    [`18.2.12` ->
    `18.2.14`](https://renovatebot.com/diffs/npm/@angular%2fcli/18.2.12/18.2.14)
    |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/@angular%2fcli/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@angular%2fcli/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@angular%2fcli/18.2.12/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@angular%2fcli/18.2.12/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>angular/angular-cli
    (@&#8203;angular-devkit/build-angular)</summary>
    
    ###
    [`v18.2.14`](https://redirect.github.com/angular/angular-cli/blob/HEAD/CHANGELOG.md#18214-2025-01-29)
    
    [Compare
    Source](https://redirect.github.com/angular/angular-cli/compare/18.2.13...18.2.14)
    
    #####
    [@&#8203;angular-devkit/build-angular](https://redirect.github.com/angular-devkit/build-angular)
    
    | Commit | Type | Description |
    |
    ---------------------------------------------------------------------------------------------------
    | ---- | ------------------------------- |
    |
    [9d34d28ec](https://redirect.github.com/angular/angular-cli/commit/9d34d28ec2965e1b9753556b2721d25ab05c655b)
    | fix | remove unused `vite` dependency |
    
    <!-- CHANGELOG SPLIT MARKER -->
    
    ###
    [`v18.2.13`](https://redirect.github.com/angular/angular-cli/blob/HEAD/CHANGELOG.md#18213-2025-01-29)
    
    [Compare
    Source](https://redirect.github.com/angular/angular-cli/compare/18.2.12...18.2.13)
    
    ##### [@&#8203;angular/cli](https://redirect.github.com/angular/cli)
    
    | Commit | Type | Description |
    |
    ---------------------------------------------------------------------------------------------------
    | ---- |
    --------------------------------------------------------------------- |
    |
    [deeaf1883](https://redirect.github.com/angular/angular-cli/commit/deeaf18836efddfa1ee56a25e44944ba444d35ac)
    | fix | correctly select package versions in descending order during `ng
    add` |
    
    ##### [@&#8203;angular/build](https://redirect.github.com/angular/build)
    
    | Commit | Type | Description |
    |
    ---------------------------------------------------------------------------------------------------
    | ---- | ----------------------------- |
    |
    [fdddf2c08](https://redirect.github.com/angular/angular-cli/commit/fdddf2c0844081667a09f2ffe0b16f77384959b2)
    | fix | update vite to version 5.4.14 |
    
    <!-- CHANGELOG SPLIT MARKER -->
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - "before 4:00am on Tuesday" in timezone
    America/Toronto, Automerge - "after 9:00am and before 12:00pm on
    tuesday, wednesday, thursday" in timezone America/Toronto.
    
    🚦 **Automerge**: Disabled by config. Please merge this manually once you
    are satisfied.
    
    ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
    rebase/retry checkbox.
    
    🔕 **Ignore**: Close this PR and you won't be reminded about these
    updates again.
    
    ---
    
    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box
    
    ---
    
    This PR has been generated by [Renovate
    Bot](https://redirect.github.com/renovatebot/renovate).
    
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjEuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2MS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==-->
    
    Co-authored-by: renovate-coveo[bot] <115253437+renovate-coveo[bot]@users.noreply.github.com>
    renovate-coveo[bot] authored Feb 11, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    25887aa View commit details
  5. chore(deps): update vite to v2.1.9 j:kit-282 (#4956)

    This PR contains the following updates:
    
    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    |
    [@vitest/browser](https://redirect.github.com/vitest-dev/vitest/tree/main/packages/browser#readme)
    ([source](https://redirect.github.com/vitest-dev/vitest/tree/HEAD/packages/browser))
    | [`2.1.8` ->
    `2.1.9`](https://renovatebot.com/diffs/npm/@vitest%2fbrowser/2.1.8/2.1.9)
    |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/@vitest%2fbrowser/2.1.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@vitest%2fbrowser/2.1.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@vitest%2fbrowser/2.1.8/2.1.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@vitest%2fbrowser/2.1.8/2.1.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    | [vitest](https://redirect.github.com/vitest-dev/vitest)
    ([source](https://redirect.github.com/vitest-dev/vitest/tree/HEAD/packages/vitest))
    | [`2.1.8` ->
    `2.1.9`](https://renovatebot.com/diffs/npm/vitest/2.1.8/2.1.9) |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/vitest/2.1.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vitest/2.1.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vitest/2.1.8/2.1.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vitest/2.1.8/2.1.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>vitest-dev/vitest (@&#8203;vitest/browser)</summary>
    
    ###
    [`v2.1.9`](https://redirect.github.com/vitest-dev/vitest/releases/tag/v2.1.9)
    
    [Compare
    Source](https://redirect.github.com/vitest-dev/vitest/compare/v2.1.8...v2.1.9)
    
    This release includes security patches for:
    
    - [Browser mode serves arbitrary files |
    CVE-2025-24963](https://redirect.github.com/vitest-dev/vitest/security/advisories/GHSA-8gvc-j273-4wm5)
    - [Remote Code Execution when accessing a malicious website while Vitest
    API server is listening |
    CVE-2025-24964](https://redirect.github.com/vitest-dev/vitest/security/advisories/GHSA-9crc-q9x8-hgqq)
    
    #####    🐞 Bug Fixes
    
    - backport
    [https://github.com/vitest-dev/vitest/issues/7317](https://redirect.github.com/vitest-dev/vitest/issues/7317)
    to v2 - by [@&#8203;hi-ogawa](https://redirect.github.com/hi-ogawa) in
    [https://github.com/vitest-dev/vitest/pull/7318](https://redirect.github.com/vitest-dev/vitest/pull/7318)
    - (backport
    [#&#8203;7340](https://redirect.github.com/vitest-dev/vitest/issues/7340)
    to v2) restrict served files from `/__screenshot-error` - by
    [@&#8203;hi-ogawa](https://redirect.github.com/hi-ogawa) in
    [https://github.com/vitest-dev/vitest/pull/7343](https://redirect.github.com/vitest-dev/vitest/pull/7343)
    
    #####     [View changes on
    GitHub](https://redirect.github.com/vitest-dev/vitest/compare/v2.1.8...v2.1.9)
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - "before 4:00am on Tuesday" in timezone
    America/Toronto, Automerge - "after 9:00am and before 12:00pm on
    tuesday, wednesday, thursday" in timezone America/Toronto.
    
    🚦 **Automerge**: Disabled by config. Please merge this manually once you
    are satisfied.
    
    ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
    rebase/retry checkbox.
    
    🔕 **Ignore**: Close this PR and you won't be reminded about these
    updates again.
    
    ---
    
    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box
    
    ---
    
    This PR has been generated by [Renovate
    Bot](https://redirect.github.com/renovatebot/renovate).
    
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjEuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2MS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==-->
    
    Co-authored-by: renovate-coveo[bot] <115253437+renovate-coveo[bot]@users.noreply.github.com>
    renovate-coveo[bot] authored Feb 11, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    ab2acbd View commit details
  6. chore(deps): update dependency ora to v8 j:kit-282 (#4958)

    This PR contains the following updates:
    
    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    | [ora](https://redirect.github.com/sindresorhus/ora) | [`5.3.0` ->
    `8.2.0`](https://renovatebot.com/diffs/npm/ora/5.3.0/8.2.0) |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/ora/8.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/ora/8.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/ora/5.3.0/8.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/ora/5.3.0/8.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>sindresorhus/ora (ora)</summary>
    
    ###
    [`v8.2.0`](https://redirect.github.com/sindresorhus/ora/releases/tag/v8.2.0)
    
    [Compare
    Source](https://redirect.github.com/sindresorhus/ora/compare/v8.1.1...v8.2.0)
    
    - Add support for `boolean` value for `color` option
    ([#&#8203;244](https://redirect.github.com/sindresorhus/ora/issues/244))
    [`fe951e5`](https://redirect.github.com/sindresorhus/ora/commit/fe951e5)
    
    ***
    
    ###
    [`v8.1.1`](https://redirect.github.com/sindresorhus/ora/releases/tag/v8.1.1)
    
    [Compare
    Source](https://redirect.github.com/sindresorhus/ora/compare/v8.1.0...v8.1.1)
    
    - Fix animation speed when update methods are called very often
    [`818ca34`](https://redirect.github.com/sindresorhus/ora/commit/818ca34)
    - Fix handling of symbol being empty string in `stopAndPersist()`
    ([#&#8203;243](https://redirect.github.com/sindresorhus/ora/issues/243))
    [`5117dfb`](https://redirect.github.com/sindresorhus/ora/commit/5117dfb)
    
    ###
    [`v8.1.0`](https://redirect.github.com/sindresorhus/ora/releases/tag/v8.1.0)
    
    [Compare
    Source](https://redirect.github.com/sindresorhus/ora/compare/v8.0.1...v8.1.0)
    
    - Update dependencies
    [`fb0fced`](https://redirect.github.com/sindresorhus/ora/commit/fb0fced)
    
    ###
    [`v8.0.1`](https://redirect.github.com/sindresorhus/ora/releases/tag/v8.0.1)
    
    [Compare
    Source](https://redirect.github.com/sindresorhus/ora/compare/v8.0.0...v8.0.1)
    
    - Fix the process not exiting
    [`89a1f31`](https://redirect.github.com/sindresorhus/ora/commit/89a1f31)
    
    ###
    [`v8.0.0`](https://redirect.github.com/sindresorhus/ora/releases/tag/v8.0.0)
    
    [Compare
    Source](https://redirect.github.com/sindresorhus/ora/compare/v7.0.1...v8.0.0)
    
    ##### Breaking
    
    - Require Node.js 18
    [`675590f`](https://redirect.github.com/sindresorhus/ora/commit/675590f)
    
    ##### Improvements
    
    - Update dependencies
    [`675590f`](https://redirect.github.com/sindresorhus/ora/commit/675590f)
    
    ###
    [`v7.0.1`](https://redirect.github.com/sindresorhus/ora/releases/tag/v7.0.1)
    
    [Compare
    Source](https://redirect.github.com/sindresorhus/ora/compare/v7.0.0...v7.0.1)
    
    - Fix missing dependency
    ([#&#8203;228](https://redirect.github.com/sindresorhus/ora/issues/228))
    [`1dc1ece`](https://redirect.github.com/sindresorhus/ora/commit/1dc1ece)
    
    ###
    [`v7.0.0`](https://redirect.github.com/sindresorhus/ora/releases/tag/v7.0.0)
    
    [Compare
    Source](https://redirect.github.com/sindresorhus/ora/compare/v6.3.1...v7.0.0)
    
    ##### Breaking
    
    - Require Node.js 16
    [`0e96acd`](https://redirect.github.com/sindresorhus/ora/commit/0e96acd)
    
    ###
    [`v6.3.1`](https://redirect.github.com/sindresorhus/ora/releases/tag/v6.3.1)
    
    [Compare
    Source](https://redirect.github.com/sindresorhus/ora/compare/v6.3.0...v6.3.1)
    
    - Fix Node.js 12 compatibility
    [`4b1c2be`](https://redirect.github.com/sindresorhus/ora/commit/4b1c2be)
    
    ###
    [`v6.3.0`](https://redirect.github.com/sindresorhus/ora/releases/tag/v6.3.0)
    
    [Compare
    Source](https://redirect.github.com/sindresorhus/ora/compare/v6.2.0...v6.3.0)
    
    - Add
    [`suffixText`](https://redirect.github.com/sindresorhus/ora#suffixtext)
    option
    ([#&#8203;223](https://redirect.github.com/sindresorhus/ora/issues/223))
    [`2378eaf`](https://redirect.github.com/sindresorhus/ora/commit/2378eaf)
    
    ###
    [`v6.2.0`](https://redirect.github.com/sindresorhus/ora/releases/tag/v6.2.0)
    
    [Compare
    Source](https://redirect.github.com/sindresorhus/ora/compare/v6.1.2...v6.2.0)
    
    - Add `spinners` export to be able to access all available spinners
    ([#&#8203;222](https://redirect.github.com/sindresorhus/ora/issues/222))
    [`f2ac111`](https://redirect.github.com/sindresorhus/ora/commit/f2ac111)
    
    ###
    [`v6.1.2`](https://redirect.github.com/sindresorhus/ora/releases/tag/v6.1.2)
    
    [Compare
    Source](https://redirect.github.com/sindresorhus/ora/compare/v6.1.1...v6.1.2)
    
    - Revert "Fix preserving stdin's pause state
    ([#&#8203;210](https://redirect.github.com/sindresorhus/ora/issues/210))"
    [`f4e03ea`](https://redirect.github.com/sindresorhus/ora/commit/f4e03ea)
    - Reason:
    [https://github.com/sindresorhus/ora/issues/211](https://redirect.github.com/sindresorhus/ora/issues/211)
    
    ###
    [`v6.1.1`](https://redirect.github.com/sindresorhus/ora/releases/tag/v6.1.1)
    
    [Compare
    Source](https://redirect.github.com/sindresorhus/ora/compare/v6.1.0...v6.1.1)
    
    - Fix preserving stdin's pause state
    ([#&#8203;210](https://redirect.github.com/sindresorhus/ora/issues/210))
    [`77ccc1e`](https://redirect.github.com/sindresorhus/ora/commit/77ccc1e)
    
    ###
    [`v6.1.0`](https://redirect.github.com/sindresorhus/ora/releases/tag/v6.1.0)
    
    [Compare
    Source](https://redirect.github.com/sindresorhus/ora/compare/v6.0.1...v6.1.0)
    
    - Expose the spinner `interval` as a getter
    [`447812b`](https://redirect.github.com/sindresorhus/ora/commit/447812b)
    - Internal refactoring. If you use any undocumented properties, this may
    break for you.
    
    ###
    [`v6.0.1`](https://redirect.github.com/sindresorhus/ora/releases/tag/v6.0.1)
    
    [Compare
    Source](https://redirect.github.com/sindresorhus/ora/compare/v6.0.0...v6.0.1)
    
    - Upgrade dependencies
    [`26ba606`](https://redirect.github.com/sindresorhus/ora/commit/26ba606)
    
    ###
    [`v6.0.0`](https://redirect.github.com/sindresorhus/ora/releases/tag/v6.0.0)
    
    [Compare
    Source](https://redirect.github.com/sindresorhus/ora/compare/v5.4.1...v6.0.0)
    
    ##### Breaking
    
    - Require Node.js 12.20
    [`ede1a54`](https://redirect.github.com/sindresorhus/ora/commit/ede1a54)
    - This package is now pure ESM. Please [read
    this](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c).
    - `ora.promise` is now a named import called `oraPromise`
    ([#&#8203;181](https://redirect.github.com/sindresorhus/ora/issues/181))
    [`9c01990`](https://redirect.github.com/sindresorhus/ora/commit/9c01990)
        -   `import {oraPromise} from 'ora';`
    - `oraPromise` now returns the given promise instead of `this`
    ([#&#8203;181](https://redirect.github.com/sindresorhus/ora/issues/181))
    [`9c01990`](https://redirect.github.com/sindresorhus/ora/commit/9c01990)
    - This lets you await it directly, which is more useful than chaining.
    
    ##### Improvements
    
    - Improve performance of the `.clear()` method
    ([#&#8203;182](https://redirect.github.com/sindresorhus/ora/issues/182))
    [`d51c971`](https://redirect.github.com/sindresorhus/ora/commit/d51c971)
    
    ###
    [`v5.4.1`](https://redirect.github.com/sindresorhus/ora/releases/tag/v5.4.1)
    
    [Compare
    Source](https://redirect.github.com/sindresorhus/ora/compare/v5.4.0...v5.4.1)
    
    - Fix: Don't allow `default` as a spinner
    ([#&#8203;175](https://redirect.github.com/sindresorhus/ora/issues/175))
    [`659f839`](https://redirect.github.com/sindresorhus/ora/commit/659f839)
    
    ###
    [`v5.4.0`](https://redirect.github.com/sindresorhus/ora/releases/tag/v5.4.0)
    
    [Compare
    Source](https://redirect.github.com/sindresorhus/ora/compare/v5.3.0...v5.4.0)
    
    - Improve detection for terminals supporting Unicode
    [`c884e0d`](https://redirect.github.com/sindresorhus/ora/commit/c884e0d)
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - "before 4:00am on Tuesday" in timezone
    America/Toronto, Automerge - "after 9:00am and before 12:00pm on
    tuesday, wednesday, thursday" in timezone America/Toronto.
    
    🚦 **Automerge**: Disabled by config. Please merge this manually once you
    are satisfied.
    
    ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
    rebase/retry checkbox.
    
    🔕 **Ignore**: Close this PR and you won't be reminded about this update
    again.
    
    ---
    
    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box
    
    ---
    
    This PR has been generated by [Renovate
    Bot](https://redirect.github.com/renovatebot/renovate).
    
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjEuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2MS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==-->
    
    Co-authored-by: renovate-coveo[bot] <115253437+renovate-coveo[bot]@users.noreply.github.com>
    renovate-coveo[bot] authored Feb 11, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    4281b68 View commit details
  7. fix(deps): update all dependencies j:kit-282 (#4957)

    This PR contains the following updates:
    
    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    | [@commitlint/config-conventional](https://commitlint.js.org/)
    ([source](https://redirect.github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional))
    | [`19.6.0` ->
    `19.7.1`](https://renovatebot.com/diffs/npm/@commitlint%2fconfig-conventional/19.6.0/19.7.1)
    |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/@commitlint%2fconfig-conventional/19.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@commitlint%2fconfig-conventional/19.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@commitlint%2fconfig-conventional/19.6.0/19.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@commitlint%2fconfig-conventional/19.6.0/19.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    | [@commitlint/lint](https://commitlint.js.org/)
    ([source](https://redirect.github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/lint))
    | [`19.6.0` ->
    `19.7.1`](https://renovatebot.com/diffs/npm/@commitlint%2flint/19.6.0/19.7.1)
    |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/@commitlint%2flint/19.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@commitlint%2flint/19.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@commitlint%2flint/19.6.0/19.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@commitlint%2flint/19.6.0/19.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    |
    [@coveo/relay-event-types](https://redirect.github.com/coveo/analytics_schema)
    | [`13.1.0` ->
    `13.1.3`](https://renovatebot.com/diffs/npm/@coveo%2frelay-event-types/13.1.0/13.1.3)
    |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/@coveo%2frelay-event-types/13.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@coveo%2frelay-event-types/13.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@coveo%2frelay-event-types/13.1.0/13.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@coveo%2frelay-event-types/13.1.0/13.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    | [@microsoft/api-extractor](https://api-extractor.com)
    ([source](https://redirect.github.com/microsoft/rushstack/tree/HEAD/apps/api-extractor))
    | [`7.49.1` ->
    `7.49.2`](https://renovatebot.com/diffs/npm/@microsoft%2fapi-extractor/7.49.1/7.49.2)
    |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/@microsoft%2fapi-extractor/7.49.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@microsoft%2fapi-extractor/7.49.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@microsoft%2fapi-extractor/7.49.1/7.49.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@microsoft%2fapi-extractor/7.49.1/7.49.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    | [@microsoft/api-extractor-model](https://api-extractor.com)
    ([source](https://redirect.github.com/microsoft/rushstack/tree/HEAD/libraries/api-extractor-model))
    | [`7.30.2` ->
    `7.30.3`](https://renovatebot.com/diffs/npm/@microsoft%2fapi-extractor-model/7.30.2/7.30.3)
    |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/@microsoft%2fapi-extractor-model/7.30.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@microsoft%2fapi-extractor-model/7.30.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@microsoft%2fapi-extractor-model/7.30.2/7.30.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@microsoft%2fapi-extractor-model/7.30.2/7.30.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    | [@octokit/graphql](https://redirect.github.com/octokit/graphql.js) |
    [`8.1.2` ->
    `8.2.0`](https://renovatebot.com/diffs/npm/@octokit%2fgraphql/8.1.2/8.2.0)
    |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/@octokit%2fgraphql/8.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@octokit%2fgraphql/8.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@octokit%2fgraphql/8.1.2/8.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@octokit%2fgraphql/8.1.2/8.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    | [@playwright/test](https://playwright.dev)
    ([source](https://redirect.github.com/microsoft/playwright)) | [`1.50.0`
    ->
    `1.50.1`](https://renovatebot.com/diffs/npm/@playwright%2ftest/1.50.0/1.50.1)
    |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/@playwright%2ftest/1.50.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@playwright%2ftest/1.50.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@playwright%2ftest/1.50.0/1.50.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@playwright%2ftest/1.50.0/1.50.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    | [@salesforce-ux/design-system](https://lightningdesignsystem.com)
    ([source](https://redirect.github.com/salesforce-ux/design-system)) |
    [`2.25.6` ->
    `2.26.1`](https://renovatebot.com/diffs/npm/@salesforce-ux%2fdesign-system/2.25.6/2.26.1)
    |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/@salesforce-ux%2fdesign-system/2.26.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@salesforce-ux%2fdesign-system/2.26.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@salesforce-ux%2fdesign-system/2.25.6/2.26.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@salesforce-ux%2fdesign-system/2.25.6/2.26.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    |
    [@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
    ([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node))
    | [`22.12.0` ->
    `22.13.1`](https://renovatebot.com/diffs/npm/@types%2fnode/22.12.0/22.13.1)
    |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/22.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/22.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/22.12.0/22.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/22.12.0/22.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    |
    [cypress-axe](https://redirect.github.com/component-driven/cypress-axe)
    | [`1.5.0` ->
    `1.6.0`](https://renovatebot.com/diffs/npm/cypress-axe/1.5.0/1.6.0) |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/cypress-axe/1.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/cypress-axe/1.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/cypress-axe/1.5.0/1.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/cypress-axe/1.5.0/1.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    | [dompurify](https://redirect.github.com/cure53/DOMPurify) | [`3.2.3`
    -> `3.2.4`](https://renovatebot.com/diffs/npm/dompurify/3.2.3/3.2.4) |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/dompurify/3.2.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/dompurify/3.2.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/dompurify/3.2.3/3.2.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/dompurify/3.2.3/3.2.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    | [npm](https://docs.npmjs.com/)
    ([source](https://redirect.github.com/npm/cli)) | [`11.0.0` ->
    `11.1.0`](https://renovatebot.com/diffs/npm/npm/11.0.0/11.1.0) |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/npm/11.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/npm/11.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/npm/11.0.0/11.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/npm/11.0.0/11.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    | [playwright](https://playwright.dev)
    ([source](https://redirect.github.com/microsoft/playwright)) | [`1.50.0`
    -> `1.50.1`](https://renovatebot.com/diffs/npm/playwright/1.50.0/1.50.1)
    |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/playwright/1.50.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/playwright/1.50.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/playwright/1.50.0/1.50.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/playwright/1.50.0/1.50.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    | prettier-plugin-apex | [`2.2.2` ->
    `2.2.3`](https://renovatebot.com/diffs/npm/prettier-plugin-apex/2.2.2/2.2.3)
    |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/prettier-plugin-apex/2.2.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/prettier-plugin-apex/2.2.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/prettier-plugin-apex/2.2.2/2.2.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prettier-plugin-apex/2.2.2/2.2.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    | [rollup](https://rollupjs.org/)
    ([source](https://redirect.github.com/rollup/rollup)) | [`4.31.0` ->
    `4.34.2`](https://renovatebot.com/diffs/npm/rollup/4.32.1/4.34.2) |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/rollup/4.34.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/rollup/4.34.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/rollup/4.32.1/4.34.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/rollup/4.32.1/4.34.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    | [semver](https://redirect.github.com/npm/node-semver) | [`7.6.3` ->
    `7.7.1`](https://renovatebot.com/diffs/npm/semver/7.6.3/7.7.1) |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/semver/7.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/semver/7.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/semver/7.6.3/7.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/semver/7.6.3/7.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    | [zone.js](https://redirect.github.com/angular/angular)
    ([source](https://redirect.github.com/angular/angular/tree/HEAD/packages/zone.js),
    [changelog](https://redirect.github.com/angular/angular/blob/master/packages/zone.js/CHANGELOG.md))
    | [`0.14.10` ->
    `0.15.0`](https://renovatebot.com/diffs/npm/zone.js/0.14.10/0.15.0) |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/zone.js/0.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/zone.js/0.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/zone.js/0.14.10/0.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/zone.js/0.14.10/0.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>conventional-changelog/commitlint
    (@&#8203;commitlint/config-conventional)</summary>
    
    ###
    [`v19.7.1`](https://redirect.github.com/conventional-changelog/commitlint/blob/HEAD/@&#8203;commitlint/config-conventional/CHANGELOG.md#1971-2025-02-02)
    
    [Compare
    Source](https://redirect.github.com/conventional-changelog/commitlint/compare/v19.6.0...v19.7.1)
    
    **Note:** Version bump only for package
    [@&#8203;commitlint/config-conventional](https://redirect.github.com/commitlint/config-conventional)
    
    </details>
    
    <details>
    <summary>conventional-changelog/commitlint
    (@&#8203;commitlint/lint)</summary>
    
    ###
    [`v19.7.1`](https://redirect.github.com/conventional-changelog/commitlint/blob/HEAD/@&#8203;commitlint/lint/CHANGELOG.md#1971-2025-02-02)
    
    [Compare
    Source](https://redirect.github.com/conventional-changelog/commitlint/compare/v19.6.0...v19.7.1)
    
    **Note:** Version bump only for package
    [@&#8203;commitlint/lint](https://redirect.github.com/commitlint/lint)
    
    </details>
    
    <details>
    <summary>coveo/analytics_schema
    (@&#8203;coveo/relay-event-types)</summary>
    
    ###
    [`v13.1.3`](https://redirect.github.com/coveo/analytics_schema/compare/f85559f18412b0d23358a3e6a27416c0ddf0beaa...eb45df83d2ed9a2ee163936be958548a8b96b57c)
    
    [Compare
    Source](https://redirect.github.com/coveo/analytics_schema/compare/f85559f18412b0d23358a3e6a27416c0ddf0beaa...eb45df83d2ed9a2ee163936be958548a8b96b57c)
    
    ###
    [`v13.1.2`](https://redirect.github.com/coveo/analytics_schema/compare/917f50bb27a930c7cadff20b26b12c52890074b9...f85559f18412b0d23358a3e6a27416c0ddf0beaa)
    
    [Compare
    Source](https://redirect.github.com/coveo/analytics_schema/compare/917f50bb27a930c7cadff20b26b12c52890074b9...f85559f18412b0d23358a3e6a27416c0ddf0beaa)
    
    ###
    [`v13.1.1`](https://redirect.github.com/coveo/analytics_schema/compare/ff4907218ff9cc387ea6d32939076002cc65f14f...917f50bb27a930c7cadff20b26b12c52890074b9)
    
    [Compare
    Source](https://redirect.github.com/coveo/analytics_schema/compare/ff4907218ff9cc387ea6d32939076002cc65f14f...917f50bb27a930c7cadff20b26b12c52890074b9)
    
    </details>
    
    <details>
    <summary>microsoft/rushstack (@&#8203;microsoft/api-extractor)</summary>
    
    ###
    [`v7.49.2`](https://redirect.github.com/microsoft/rushstack/blob/HEAD/apps/api-extractor/CHANGELOG.md#7492)
    
    [Compare
    Source](https://redirect.github.com/microsoft/rushstack/compare/@microsoft/api-extractor_v7.49.1...@microsoft/api-extractor_v7.49.2)
    
    Thu, 30 Jan 2025 01:11:42 GMT
    
    *Version update only*
    
    </details>
    
    <details>
    <summary>microsoft/rushstack
    (@&#8203;microsoft/api-extractor-model)</summary>
    
    ###
    [`v7.30.3`](https://redirect.github.com/microsoft/rushstack/blob/HEAD/libraries/api-extractor-model/CHANGELOG.md#7303)
    
    [Compare
    Source](https://redirect.github.com/microsoft/rushstack/compare/@microsoft/api-extractor-model_v7.30.2...@microsoft/api-extractor-model_v7.30.3)
    
    Thu, 30 Jan 2025 01:11:42 GMT
    
    *Version update only*
    
    </details>
    
    <details>
    <summary>octokit/graphql.js (@&#8203;octokit/graphql)</summary>
    
    ###
    [`v8.2.0`](https://redirect.github.com/octokit/graphql.js/releases/tag/v8.2.0)
    
    [Compare
    Source](https://redirect.github.com/octokit/graphql.js/compare/v8.1.2...v8.2.0)
    
    ##### Features
    
    - allow users to specify `operationName` in multi-operation queries
    ([#&#8203;629](https://redirect.github.com/octokit/graphql.js/issues/629))
    ([9a1787e](https://redirect.github.com/octokit/graphql.js/commit/9a1787e98d9b3c26ce266109ca298fac4b8e0d6f))
    
    </details>
    
    <details>
    <summary>microsoft/playwright (@&#8203;playwright/test)</summary>
    
    ###
    [`v1.50.1`](https://redirect.github.com/microsoft/playwright/releases/tag/v1.50.1)
    
    [Compare
    Source](https://redirect.github.com/microsoft/playwright/compare/v1.50.0...v1.50.1)
    
    ##### Highlights
    
    
    [https://github.com/microsoft/playwright/issues/34483](https://redirect.github.com/microsoft/playwright/issues/34483)
    - \[Feature]: single aria snapshot for different
    engines/browsers[https://github.com/microsoft/playwright/issues/34497](https://redirect.github.com/microsoft/playwright/issues/34497)7
    - \[Bug]: Firefox not handling keepalive: true fetch
    request[https://github.com/microsoft/playwright/issues/34504](https://redirect.github.com/microsoft/playwright/issues/34504)04
    - \[Bug]: update snapshots not creating good
    dif[https://github.com/microsoft/playwright/issues/34507](https://redirect.github.com/microsoft/playwright/issues/34507)507
    - \[Bug]: snapshotPathTemplate doesnt work when multiple
    proje[https://github.com/microsoft/playwright/issues/34462](https://redirect.github.com/microsoft/playwright/issues/34462)4462
    - \[Bug]: updateSnapshots "changed" throws an error
    
    ##### Browser Versions
    
    -   Chromium 133.0.6943.16
    -   Mozilla Firefox 134.0
    -   WebKit 18.2
    
    This version was also tested against the following stable channels:
    
    -   Google Chrome 132
    -   Microsoft Edge 132
    
    </details>
    
    <details>
    <summary>salesforce-ux/design-system
    (@&#8203;salesforce-ux/design-system)</summary>
    
    ###
    [`v2.26.1`](https://redirect.github.com/salesforce-ux/design-system/compare/v2.26.0...81d32d8586e4a2697fcd1d2139c01e96e4323117)
    
    [Compare
    Source](https://redirect.github.com/salesforce-ux/design-system/compare/v2.26.0...81d32d8586e4a2697fcd1d2139c01e96e4323117)
    
    ###
    [`v2.26.0`](https://redirect.github.com/salesforce-ux/design-system/blob/HEAD/RELEASENOTES.md#Release-2260---January-16-2025)
    
    [Compare
    Source](https://redirect.github.com/salesforce-ux/design-system/compare/v2.25.6...v2.26.0)
    
    -   Update icons to `v10.11.1`
        -   Renamed summary_usage to usage_summary
        -   Renamed summary_liable to usage_billing_period_item
        -   Renamed usage_rateable_summary to usage_ratable_summary
    -   Update icons to `v10.11.0`
        -   Standard Set:
            -   Added ad_event_action
            -   Added ad_event_cause
            -   Added ad_event_effect
            -   Added ad_event_factor
            -   Added ad_event_info
            -   Added ad_event_outcome
            -   Added ad_event_party
            -   Added adverse_event
            -   Added billing
            -   Added calculated_dimension
            -   Added calculated_measure
            -   Added disease_defintion_criteria
            -   Added disese_investigation
            -   Added disease_outbreak
            -   Added edit_form
            -   Added enrollee_status
            -   Added eval_result
            -   Added event_ext
            -   Added life_sciences
            -   Added map_line_item
            -   Added medication_administration
            -   Added member_period
            -   Updated metric
            -   Added patient_service
            -   Added procedure_output_resolution
            -   Added program_detail
            -   Added program_site
            -   Added program_status
            -   Added prospect
            -   Added replace
            -   Added reset_password
            -   Added send_log
            -   Added study
            -   Added study_candidate
            -   Added study_related
            -   Added sub_metric
            -   Added summary_liable
            -   Added summary_usage
            -   Added table
            -   Added transaction_usage_entitlement
            -   Added usage_entitlement_account
            -   Added usage_entitlement_bucket
            -   Added usage_entitlement_entry
            -   Added usage_ratable_summary
        -   Utility Set:
            -   Added agent_astro
            -   Added applied_amount
            -   Added billing
            -   Added border_all
            -   Added border_bottom
            -   Added border_left
            -   Added border_right
            -   Added border_top
            -   Added co_ins_infusion
            -   Added co_insurance
            -   Added copay
            -   Added copay_infusion
            -   Added coverage_type
            -   Added deductible
            -   Added deductible_met
            -   Added deny_access_field
            -   Added deny_access_object
            -   Added deny_access_row
            -   Added donut_chart
            -   Added emoji_above_average.svg
            -   Added emoji_average.svg
            -   Added emoji_bad.svg
            -   Added emoji_below_average.svg
            -   Added emoji_excellent.svg
            -   Added emoji_good.svg
            -   Added emoji_outstanding.svg
            -   Added emoji_very_bad.svg
            -   Added emoji_very_good.svg
            -   Added emoji_worst.svg
            -   Added expense
            -   Added expense_report
            -   Added field_currency_calc
            -   Added field_date_calc
            -   Added field_date_time_calc
            -   Added field_dimension_calc
            -   Added field_measure_calc
            -   Added list_email
            -   Added lt_max
            -   Added lt_remaining
            -   Added mask_field
            -   Added messaging_conversation
            -   Added oop_annual
            -   Added oop_applied
            -   Added oop_max
            -   Added oop_total
            -   Added partner_fund_request
            -   Added paused_call
            -   Added people_score
            -   Added policy
            -   Added pre_auth
            -   Added pro_network
            -   Added regenerate
            -   Added response_date
            -   Added sales_channel
            -   Added status_code
            -   Added suggested_for_you
            -   Updated textbox
    - Updated the deprecated hooks. This process was to update the
    deprecated component level hooks to latest ones.
    - We have added the latest hooks at the front and kept all the
    previously existed ones as fallback value to support backward
    compatibility
    - The components updated are - accordion, alert, avatar, breadcrumbs,
    buttons, card, input, modals, pills, tabs, textarea, toast, tooltips.
    
    </details>
    
    <details>
    <summary>component-driven/cypress-axe (cypress-axe)</summary>
    
    ###
    [`v1.6.0`](https://redirect.github.com/component-driven/cypress-axe/releases/tag/v1.6.0)
    
    [Compare
    Source](https://redirect.github.com/component-driven/cypress-axe/compare/v1.5.0...v1.6.0)
    
    ##### Features
    
    - add Cypress 14 as a peer dependency
    ([#&#8203;180](https://redirect.github.com/component-driven/cypress-axe/issues/180))
    ([f47688d](https://redirect.github.com/component-driven/cypress-axe/commit/f47688d11525f248b3fab0765463d4ba8a7a900f))
    
    </details>
    
    <details>
    <summary>cure53/DOMPurify (dompurify)</summary>
    
    ###
    [`v3.2.4`](https://redirect.github.com/cure53/DOMPurify/releases/tag/3.2.4):
    DOMPurify 3.2.4
    
    [Compare
    Source](https://redirect.github.com/cure53/DOMPurify/compare/3.2.3...3.2.4)
    
    - Fixed a conditional and config dependent mXSS-style
    [bypass](https://nsysean.github.io/posts/dompurify-323-bypass/) reported
    by [@&#8203;nsysean](https://redirect.github.com/nsysean)
    - Added a new feature to allow specific hook removal, thanks
    [@&#8203;davecardwell](https://redirect.github.com/davecardwell)
    - Added *purify.js* and *purify.min.js* to exports, thanks
    [@&#8203;Aetherinox](https://redirect.github.com/Aetherinox)
    - Added better logic in case no window object is president, thanks
    [@&#8203;yehuya](https://redirect.github.com/yehuya)
    -   Updated some dependencies called out by dependabot
    -   Updated license files etc to show the correct year
    
    </details>
    
    <details>
    <summary>npm/cli (npm)</summary>
    
    ###
    [`v11.1.0`](https://redirect.github.com/npm/cli/blob/HEAD/CHANGELOG.md#1110-2025-01-29)
    
    [Compare
    Source](https://redirect.github.com/npm/cli/compare/v11.0.0...v11.1.0)
    
    ##### Features
    
    -
    [`7f6c997`](https://redirect.github.com/npm/cli/commit/7f6c9973dc9a4dfebd76e52e060a9d8496b8bd98)
    [#&#8203;8009](https://redirect.github.com/npm/cli/pull/8009) add
    dry-run to deprecate/undeprecate commands
    ([@&#8203;wraithgar](https://redirect.github.com/wraithgar))
    -
    [`1764a37`](https://redirect.github.com/npm/cli/commit/1764a37f1913b6a0811a85d89e029fc1dc79da54)
    [#&#8203;8009](https://redirect.github.com/npm/cli/pull/8009) add npm
    undeprecate command
    ([@&#8203;wraithgar](https://redirect.github.com/wraithgar))
    
    ##### Bug Fixes
    
    -
    [`31455b2`](https://redirect.github.com/npm/cli/commit/31455b2e177b721292f3382726e3f5f3f2963b1d)
    [#&#8203;8054](https://redirect.github.com/npm/cli/pull/8054) publish:
    honor force for no dist tag and registry version check
    ([#&#8203;8054](https://redirect.github.com/npm/cli/issues/8054))
    ([@&#8203;reggi](https://redirect.github.com/reggi))
    -
    [`dc31c1b`](https://redirect.github.com/npm/cli/commit/dc31c1bdc6658ab69554adcf2988ee99a615c409)
    [#&#8203;8038](https://redirect.github.com/npm/cli/pull/8038) remove
    max-len linting bypasses
    ([@&#8203;wraithgar](https://redirect.github.com/wraithgar))
    -
    [`8a911ff`](https://redirect.github.com/npm/cli/commit/8a911ff895967678aa786595db3418fc28e6966a)
    [#&#8203;8038](https://redirect.github.com/npm/cli/pull/8038) publish:
    disregard deprecated versions when calculating highest version
    ([@&#8203;wraithgar](https://redirect.github.com/wraithgar))
    -
    [`7f72944`](https://redirect.github.com/npm/cli/commit/7f72944e43f009cf4d55ff4fe24c459e07f588fd)
    [#&#8203;8038](https://redirect.github.com/npm/cli/pull/8038) publish:
    accept publishConfig.tag to override highes semver check
    ([@&#8203;wraithgar](https://redirect.github.com/wraithgar))
    -
    [`ab9ddc0`](https://redirect.github.com/npm/cli/commit/ab9ddc0413374fbf4879da535f82e03bc4e62cf3)
    [#&#8203;7992](https://redirect.github.com/npm/cli/pull/7992) sbom:
    deduplicate sbom dependencies
    ([#&#8203;7992](https://redirect.github.com/npm/cli/issues/7992))
    ([@&#8203;bdehamer](https://redirect.github.com/bdehamer))
    -
    [`f7da341`](https://redirect.github.com/npm/cli/commit/f7da341322c2f860156e8144b208583596504479)
    [#&#8203;7980](https://redirect.github.com/npm/cli/pull/7980) search:
    properly display multiple search terms
    ([#&#8203;7980](https://redirect.github.com/npm/cli/issues/7980))
    ([@&#8203;wraithgar](https://redirect.github.com/wraithgar))
    
    ##### Documentation
    
    -
    [`3644e79`](https://redirect.github.com/npm/cli/commit/3644e79a73e511bc54d857bc2026b071fe18a6fe)
    [#&#8203;8055](https://redirect.github.com/npm/cli/pull/8055) update
    readme for Node.js versions, remove badges
    ([#&#8203;8055](https://redirect.github.com/npm/cli/issues/8055))
    ([@&#8203;wraithgar](https://redirect.github.com/wraithgar))
    -
    [`f1af61f`](https://redirect.github.com/npm/cli/commit/f1af61f917e58a0a45d2b15d1e5600988b2c824f)
    [#&#8203;8041](https://redirect.github.com/npm/cli/pull/8041) fix typos
    in "package-json"
    ([#&#8203;8041](https://redirect.github.com/npm/cli/issues/8041))
    ([@&#8203;maxkoryukov](https://redirect.github.com/maxkoryukov))
    -
    [`e90c6fe`](https://redirect.github.com/npm/cli/commit/e90c6feeacdf9ad010d4d73b65d7dd7d3b86efe2)
    [#&#8203;8051](https://redirect.github.com/npm/cli/pull/8051) depth flag
    default value
    ([#&#8203;8051](https://redirect.github.com/npm/cli/issues/8051))
    ([@&#8203;milaninfy](https://redirect.github.com/milaninfy))
    -
    [`866b5ee`](https://redirect.github.com/npm/cli/commit/866b5ee3ae5ed508ecbe832d01f5ebd6b00f6789)
    [#&#8203;8030](https://redirect.github.com/npm/cli/pull/8030) safer
    documentation urls, repos, packages
    ([#&#8203;8030](https://redirect.github.com/npm/cli/issues/8030))
    ([@&#8203;reggi](https://redirect.github.com/reggi))
    
    ##### Dependencies
    
    -
    [`7ddfbad`](https://redirect.github.com/npm/cli/commit/7ddfbadd1d51d07e68afbe1b91a36106d98c7bea)
    [#&#8203;8053](https://redirect.github.com/npm/cli/pull/8053)
    `@npmcli/package-json@6.1.1`
    -
    [`9473a86`](https://redirect.github.com/npm/cli/commit/9473a8638257297c420136009de567c131d2f299)
    [#&#8203;8053](https://redirect.github.com/npm/cli/pull/8053)
    `spdx-license-ids@3.0.21`
    -
    [`a65e5ce`](https://redirect.github.com/npm/cli/commit/a65e5ceb15c4aad6bde1ffdbee7da6f685caf81e)
    [#&#8203;8053](https://redirect.github.com/npm/cli/pull/8053)
    `@sigstore/protobuf-specs@0.3.3`
    -
    [`215ebe4`](https://redirect.github.com/npm/cli/commit/215ebe4d8f6c7f30d4b6a68fa11a3372c132929e)
    [#&#8203;8053](https://redirect.github.com/npm/cli/pull/8053)
    `chalk@5.4.1`
    
    ##### Chores
    
    -
    [`61f00e3`](https://redirect.github.com/npm/cli/commit/61f00e3c23211d37c7980ebd6d1cf8d1dac49f18)
    [#&#8203;8069](https://redirect.github.com/npm/cli/pull/8069) splits out
    smoke-tests from publish-dryrun tests
    ([#&#8203;8069](https://redirect.github.com/npm/cli/issues/8069))
    ([@&#8203;reggi](https://redirect.github.com/reggi))
    -
    [`6d0f46e`](https://redirect.github.com/npm/cli/commit/6d0f46e67e9673e8a2dc6edb92144a73f853950c)
    [#&#8203;8058](https://redirect.github.com/npm/cli/pull/8058) stop
    publish smoke from check git clean
    ([#&#8203;8058](https://redirect.github.com/npm/cli/issues/8058))
    ([@&#8203;reggi](https://redirect.github.com/reggi))
    -
    [`9281ebf`](https://redirect.github.com/npm/cli/commit/9281ebf8e428d40450ad75ba61bc6f040b3bf896)
    [#&#8203;8057](https://redirect.github.com/npm/cli/pull/8057) fix smoke
    tests prerelease needs separate string args
    ([#&#8203;8057](https://redirect.github.com/npm/cli/issues/8057))
    ([@&#8203;reggi](https://redirect.github.com/reggi))
    -
    [`aa202e9`](https://redirect.github.com/npm/cli/commit/aa202e9dac2f927bedcaaed4db0eef7b3415fc68)
    [#&#8203;8056](https://redirect.github.com/npm/cli/pull/8056) smoke
    tests using a preid
    ([#&#8203;8056](https://redirect.github.com/npm/cli/issues/8056))
    ([@&#8203;reggi](https://redirect.github.com/reggi))
    -
    [`18e0449`](https://redirect.github.com/npm/cli/commit/18e0449ae41703a7980cee73bae69521db6fa53e)
    [#&#8203;8053](https://redirect.github.com/npm/cli/pull/8053) dev
    dependency updates
    ([@&#8203;wraithgar](https://redirect.github.com/wraithgar))
    -
    [`859a71c`](https://redirect.github.com/npm/cli/commit/859a71c59ea5f91f21a8410db46585a2fc0a8126)
    [#&#8203;8052](https://redirect.github.com/npm/cli/pull/8052) update
    node versions for release integration tests
    ([#&#8203;8052](https://redirect.github.com/npm/cli/issues/8052))
    ([@&#8203;wraithgar](https://redirect.github.com/wraithgar))
    -
    [`7e7961d`](https://redirect.github.com/npm/cli/commit/7e7961d8936e277f3dbc8e44f9e7b07daaeb36ca)
    [#&#8203;8038](https://redirect.github.com/npm/cli/pull/8038) bump
    [@&#8203;npmcli/eslint-config](https://redirect.github.com/npmcli/eslint-config)
    to 5.1.0 ([@&#8203;wraithgar](https://redirect.github.com/wraithgar))
    -
    [workspace](https://redirect.github.com/npm/cli/releases/tag/config-v10.0.1):
    `@npmcli/config@10.0.1`
    
    </details>
    
    <details>
    <summary>rollup/rollup (rollup)</summary>
    
    ###
    [`v4.34.2`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4342)
    
    [Compare
    Source](https://redirect.github.com/rollup/rollup/compare/v4.34.1...v4.34.2)
    
    *2025-02-04*
    
    ##### Bug Fixes
    
    - Fix an issue where not all usages of a function were properly detected
    ([#&#8203;5827](https://redirect.github.com/rollup/rollup/issues/5827))
    
    ##### Pull Requests
    
    - [#&#8203;5827](https://redirect.github.com/rollup/rollup/pull/5827):
    Ensure that functions provided to a constructor are properly deoptimized
    ([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
    
    ###
    [`v4.34.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4341)
    
    [Compare
    Source](https://redirect.github.com/rollup/rollup/compare/v4.34.0...v4.34.1)
    
    *2025-02-03*
    
    ##### Bug Fixes
    
    - Ensure throwing objects includes the entire object
    ([#&#8203;5825](https://redirect.github.com/rollup/rollup/issues/5825))
    
    ##### Pull Requests
    
    - [#&#8203;5825](https://redirect.github.com/rollup/rollup/pull/5825):
    Ensure that all properties of throw statements are included
    ([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
    
    ###
    [`v4.34.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4340)
    
    [Compare
    Source](https://redirect.github.com/rollup/rollup/compare/v4.33.0...v4.34.0)
    
    *2025-02-01*
    
    ##### Features
    
    - Tree-shake unused properties in object literals (re-implements
    [#&#8203;5420](https://redirect.github.com/rollup/rollup/issues/5420))
    ([#&#8203;5737](https://redirect.github.com/rollup/rollup/issues/5737))
    
    ##### Pull Requests
    
    - [#&#8203;5737](https://redirect.github.com/rollup/rollup/pull/5737):
    Reapply object tree-shaking
    ([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert),
    [@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))
    
    ###
    [`v4.33.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4330)
    
    [Compare
    Source](https://redirect.github.com/rollup/rollup/compare/v4.32.1...v4.33.0)
    
    *2025-02-01*
    
    ##### Features
    
    - Correctly detect literal value of more negated expressions
    ([#&#8203;5812](https://redirect.github.com/rollup/rollup/issues/5812))
    
    ##### Bug Fixes
    
    - Use the correct with/assert attribute key in dynamic imports
    ([#&#8203;5818](https://redirect.github.com/rollup/rollup/issues/5818))
    - Fix an issue where logical expressions were considered to have the
    wrong value
    ([#&#8203;5819](https://redirect.github.com/rollup/rollup/issues/5819))
    
    ##### Pull Requests
    
    - [#&#8203;5812](https://redirect.github.com/rollup/rollup/pull/5812):
    feat: optimize the literal value of unary expressions
    ([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))
    - [#&#8203;5816](https://redirect.github.com/rollup/rollup/pull/5816):
    fix(deps): update swc monorepo (major)
    ([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
    [@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
    - [#&#8203;5817](https://redirect.github.com/rollup/rollup/pull/5817):
    fix(deps): lock file maintenance minor/patch updates
    ([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
    [@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
    - [#&#8203;5818](https://redirect.github.com/rollup/rollup/pull/5818):
    support for changing the attributes key for dynamic imports
    ([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))
    - [#&#8203;5819](https://redirect.github.com/rollup/rollup/pull/5819):
    Return UnknownValue if getLiteralValueAtPath is called recursively
    within logical expressions
    ([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))
    - [#&#8203;5820](https://redirect.github.com/rollup/rollup/pull/5820):
    return null
    ([@&#8203;kingma-sbw](https://redirect.github.com/kingma-sbw))
    
    </details>
    
    <details>
    <summary>npm/node-semver (semver)</summary>
    
    ###
    [`v7.7.1`](https://redirect.github.com/npm/node-semver/blob/HEAD/CHANGELOG.md#771-2025-02-03)
    
    [Compare
    Source](https://redirect.github.com/npm/node-semver/compare/v7.7.0...v7.7.1)
    
    ##### Bug Fixes
    
    -
    [`af761c0`](https://redirect.github.com/npm/node-semver/commit/af761c05bd53eef83b5e20f8b09360b0e70557dc)
    [#&#8203;764](https://redirect.github.com/npm/node-semver/pull/764) inc:
    fully capture prerelease identifier
    ([#&#8203;764](https://redirect.github.com/npm/node-semver/issues/764))
    ([@&#8203;wraithgar](https://redirect.github.com/wraithgar))
    
    ###
    [`v7.7.0`](https://redirect.github.com/npm/node-semver/blob/HEAD/CHANGELOG.md#770-2025-01-29)
    
    [Compare
    Source](https://redirect.github.com/npm/node-semver/compare/v7.6.3...v7.7.0)
    
    ##### Features
    
    -
    [`0864b3c`](https://redirect.github.com/npm/node-semver/commit/0864b3ce7932667013e0c7c5ec764777d4682883)
    [#&#8203;753](https://redirect.github.com/npm/node-semver/pull/753) add
    "release" inc type
    ([#&#8203;753](https://redirect.github.com/npm/node-semver/issues/753))
    ([@&#8203;mbtools](https://redirect.github.com/mbtools))
    
    ##### Bug Fixes
    
    -
    [`d588e37`](https://redirect.github.com/npm/node-semver/commit/d588e3782864b1cab2fe9f2452b848e8c7f609d1)
    [#&#8203;755](https://redirect.github.com/npm/node-semver/pull/755)
    diff: fix prerelease to stable version diff logic
    ([#&#8203;755](https://redirect.github.com/npm/node-semver/issues/755))
    ([@&#8203;eminberkayd](https://redirect.github.com/eminberkayd),
    berkay.daglar)
    -
    [`8a34bde`](https://redirect.github.com/npm/node-semver/commit/8a34bdecc783407f4e1a8a1ee1f67906b84a4b78)
    [#&#8203;754](https://redirect.github.com/npm/node-semver/pull/754) add
    identifier validation to `inc()`
    ([#&#8203;754](https://redirect.github.com/npm/node-semver/issues/754))
    ([@&#8203;mbtools](https://redirect.github.com/mbtools))
    
    ##### Documentation
    
    -
    [`67e5478`](https://redirect.github.com/npm/node-semver/commit/67e54785a0f871361230f84323cbb631b9b6d834)
    [#&#8203;756](https://redirect.github.com/npm/node-semver/pull/756)
    readme: added missing period for consistency
    ([#&#8203;756](https://redirect.github.com/npm/node-semver/issues/756))
    ([@&#8203;shaymolcho](https://redirect.github.com/shaymolcho))
    -
    [`868d4bb`](https://redirect.github.com/npm/node-semver/commit/868d4bbe3d318c52544f38d5f9977a1103e924c2)
    [#&#8203;749](https://redirect.github.com/npm/node-semver/pull/749)
    clarify comment about obsolete prefixes
    ([#&#8203;749](https://redirect.github.com/npm/node-semver/issues/749))
    ([@&#8203;mbtools](https://redirect.github.com/mbtools),
    [@&#8203;ljharb](https://redirect.github.com/ljharb))
    
    ##### Chores
    
    -
    [`145c554`](https://redirect.github.com/npm/node-semver/commit/145c554b8c7b7ecfcb451153ad18bdb2f24ad10d)
    [#&#8203;741](https://redirect.github.com/npm/node-semver/pull/741) bump
    [@&#8203;npmcli/eslint-config](https://redirect.github.com/npmcli/eslint-config)
    from 4.0.5 to 5.0.0
    ([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot])
    -
    [`753e02b`](https://redirect.github.com/npm/node-semver/commit/753e02b9d0cb3ac23e085dc33efcab3e08d61f2b)
    [#&#8203;747](https://redirect.github.com/npm/node-semver/pull/747) bump
    [@&#8203;npmcli/template-oss](https://redirect.github.com/npmcli/template-oss)
    from 4.23.3 to 4.23.4
    ([#&#8203;747](https://redirect.github.com/npm/node-semver/issues/747))
    ([@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot],
    [@&#8203;npm-cli-bot](https://redirect.github.com/npm-cli-bot))
    -
    [`0b812d5`](https://redirect.github.com/npm/node-semver/commit/0b812d5fb5fbb208e89dc1250e2efafeaa549437)
    [#&#8203;744](https://redirect.github.com/npm/node-semver/pull/744)
    postinstall for dependabot template-oss PR
    ([@&#8203;hashtagchris](https://redirect.github.com/hashtagchris))
    
    </details>
    
    <details>
    <summary>angular/angular (zone.js)</summary>
    
    ###
    [`v0.15.0`](https://redirect.github.com/angular/angular/blob/HEAD/packages/zone.js/CHANGELOG.md#0150-2024-08-15)
    
    [Compare
    Source](https://redirect.github.com/angular/angular/compare/zone.js-0.14.10...zone.js-0.15.0)
    
    ##### Bug Fixes
    
    - **zone.js:** Add support for addition jest functions.
    ([#&#8203;57280](https://redirect.github.com/angular/angular/issues/57280))
    ([e1240c6](https://redirect.github.com/angular/angular/commit/e1240c6f5d9a3d68ccef7ffbf0a0646ad1164cd8)),
    closes
    [#&#8203;57277](https://redirect.github.com/angular/angular/issues/57277)
    - **zone.js:** Update the default behavior of fakeAsync to flush after
    the test
    ([#&#8203;57240](https://redirect.github.com/angular/angular/issues/57240))
    ([70e8b40](https://redirect.github.com/angular/angular/commit/70e8b40750e894bc1439713cd508d8bd9fafb7a4))
    
    ##### BREAKING CHANGES
    
    -   **zone.js:** `fakeAsync` will now flush pending timers at the end of
    the given function by default. To opt-out of this, you can use `{flush:
        false}` in options parameter of `fakeAsync`
    
    ####
    [0.14.10](https://redirect.github.com/angular/angular/compare/zone.js-0.14.8...zone.js-0.14.10)
    (2024-08-05)
    
    ##### Features
    
    - **zone.js:** Add 'flush' parameter option to fakeAsync to flush after
    the test
    ([#&#8203;57137](https://redirect.github.com/angular/angular/issues/57137))
    ([99d679d](https://redirect.github.com/angular/angular/commit/99d679d6061d731a04930824e92f247bb94f21e7))
    
    ####
    [0.14.8](https://redirect.github.com/angular/angular/compare/zone.js-0.14.7...zone.js-0.14.8)
    (2024-07-17)
    
    ##### Bug Fixes
    
    - **zone.js:** allow enabling default `beforeunload` handling
    ([#&#8203;55875](https://redirect.github.com/angular/angular/issues/55875))
    ([b8d5882](https://redirect.github.com/angular/angular/commit/b8d5882127a6e9944d30a7e0c87c2e2c59b352e6)),
    closes
    [#&#8203;47579](https://redirect.github.com/angular/angular/issues/47579)
    - **zone.js:** support `Timeout.refresh` in Node.js
    ([#&#8203;56852](https://redirect.github.com/angular/angular/issues/56852))
    ([982f1b1](https://redirect.github.com/angular/angular/commit/982f1b125147e4292716f9524bef75423b70c71c)),
    closes
    [#&#8203;56586](https://redirect.github.com/angular/angular/issues/56586)
    
    ####
    [0.14.7](https://redirect.github.com/angular/angular/compare/zone.js-0.14.6...zone.js-0.14.7)
    (2024-06-06)
    
    ##### Bug Fixes
    
    - **zone.js:** do not mutate event listener options (may be readonly)
    ([#&#8203;55796](https://redirect.github.com/angular/angular/issues/55796))
    ([85c1719](https://redirect.github.com/angular/angular/commit/85c171920ae2b1861896fa6c2d5d7dc8f030a445)),
    closes
    [#&#8203;54142](https://redirect.github.com/angular/angular/issues/54142)
    - **zone.js:** store remove abort listener on the scheduled task
    ([#&#8203;56160](https://redirect.github.com/angular/angular/issues/56160))
    ([4a3800a](https://redirect.github.com/angular/angular/commit/4a3800a6a0ae9d667dd961c6e4029c01c6819988)),
    closes
    [#&#8203;56148](https://redirect.github.com/angular/angular/issues/56148)
    
    ####
    [0.14.6](https://redirect.github.com/angular/angular/compare/zone.js-0.14.4...zone.js-0.14.6)
    (2024-05-16)
    
    ##### Bug Fixes
    
    - **zone.js:** add missing APIs to Node.js `fs` patch
    ([#&#8203;54396](https://redirect.github.com/angular/angular/issues/54396))
    ([9e07b62](https://redirect.github.com/angular/angular/commit/9e07b621ead050d27d36cde0549b01ac3f1e9e73))
    - **zone.js:** correctly bundle `zone-patch-rxjs`
    ([#&#8203;55826](https://redirect.github.com/angular/angular/issues/55826))
    ([20a530a](https://redirect.github.com/angular/angular/commit/20a530acb6ca6efe73cb97c64e9d23a0f5d912c8)),
    closes
    [#&#8203;55825](https://redirect.github.com/angular/angular/issues/55825)
    - **zone.js:** remove `abort` listener on a signal when actual event is
    removed
    ([#&#8203;55339](https://redirect.github.com/angular/angular/issues/55339))
    ([a9460d0](https://redirect.github.com/angular/angular/commit/a9460d08a0e95dcd8fcd0ea7eca8470af921bfe2)),
    closes
    [#&#8203;54739](https://redirect.github.com/angular/angular/issues/54739)
    
    ####
    [0.14.5](https://redirect.github.com/angular/angular/compare/zone.js-0.14.4...zone.js-0.14.5)
    (2024-04-30)
    
    ##### Bug Fixes
    
    - **zone.js:** Add 'declare' to each interface to prevent renaming
    ([#&#8203;54966](https://redirect.github.com/angular/angular/issues/54966))
    ([b3d045b](https://redirect.github.com/angular/angular/commit/b3d045b9a4383d97ea3c5d770d9413ffed35d760))
    - **zone.js:** make sure fakeasync use the same id pool with native
    ([#&#8203;54600](https://redirect.github.com/angular/angular/issues/54600))
    ([ddbf6bb](https://redirect.github.com/angular/angular/commit/ddbf6bb038d101daf5280abbd2a0efaa0b7fd3a0)),
    closes
    [#&#8203;54323](https://redirect.github.com/angular/angular/issues/54323)
    - **zone.js:** should not clear onhandler when remove capture listener
    ([#&#8203;54602](https://redirect.github.com/angular/angular/issues/54602))
    ([e44b077](https://redirect.github.com/angular/angular/commit/e44b077cbd4fc1ac16b3edd0fea758842ce6e29f)),
    closes
    [#&#8203;54581](https://redirect.github.com/angular/angular/issues/54581)
    
    ####
    [0.14.4](https://redirect.github.com/angular/angular/compare/zone.js-0.14.3...zone.js-0.14.4)
    (2024-02-13)
    
    ##### Bug Fixes
    
    - **zone.js:** add `__Zone_ignore_on_properties` to
    `ZoneGlobalConfigurations`
    ([#&#8203;50737](https://redirect.github.com/angular/angular/issues/50737))
    ([f87f058](https://redirect.github.com/angular/angular/commit/f87f058a69443d9427530c979b39e3630190a7fd))
    - **zone.js:** patch `fs.realpath.native` as macrotask
    ([#&#8203;54208](https://redirect.github.com/angular/angular/issues/54208))
    ([19fae76](https://redirect.github.com/angular/angular/commit/19fae76bada7146e8993fb672b8d321fb08967f2)),
    closes
    [#&#8203;45546](https://redirect.github.com/angular/angular/issues/45546)
    - **zone.js:** patch `Response` methods returned by `fetch`
    ([#&#8203;50653](https://redirect.github.com/angular/angular/issues/50653))
    ([260d3ed](https://redirect.github.com/angular/angular/commit/260d3ed0d91648d3ba75d7d9896f38195093c7e4)),
    closes
    [#&#8203;50327](https://redirect.github.com/angular/angular/issues/50327)
    - **zone.js:** patch form-associated custom element callbacks
    ([#&#8203;50686](https://redirect.github.com/angular/angular/issues/50686))
    ([1c990cd](https://redirect.github.com/angular/angular/commit/1c990cdb2962fa879762d5e26f87f547a00e1795))
    
    ####
    [0.14.3](https://redirect.github.com/angular/angular/compare/zone.js-0.14.2...zone.js-0.14.3)
    (2023-12-19)
    
    ##### Bug Fixes
    
    - **zone.js:** handle fetch with AbortSignal
    ([#&#8203;49595](https://redirect.github.com/angular/angular/issues/49595))
    ([b06b24b](https://redirect.github.com/angular/angular/commit/b06b24b5049c07fbc18c76fd2a10e49fc93870be))
    - **zone.js:** Promise.resolve(subPromise) should return subPromise
    ([#&#8203;53423](https://redirect.github.com/angular/angular/issues/53423))
    ([08b0c87](https://redirect.github.com/angular/angular/commit/08b0c87a948007e086a2c5a5c17ccca5fd7a24c4)),
    closes
    [/promisesaplus.com/#point-51](https://redirect.github.com//promisesaplus.com//issues/point-51)
    - **zone.js:** support addEventListener with signal option.
    ([#&#8203;49595](https://redirect.github.com/angular/angular/issues/49595))
    ([d4973ff](https://redirect.github.com/angular/angular/commit/d4973ff9b074f4db918f71163e79b7d112c309f5)),
    closes
    [#&#8203;49591](https://redirect.github.com/angular/angular/issues/49591)
    
    ##### Features
    
    - **zone.js:** implement Promise.withResolvers()
    ([#&#8203;53514](https://redirect.github.com/angular/angular/issues/53514))
    ([7a28f50](https://redirect.github.com/angular/angular/commit/7a28f50711535fcc285c7ee9021e8e7dc34a655d))
    
    ####
    [0.14.2](https://redirect.github.com/angular/angular/compare/zone.js-0.14.1...zone.js-0.14.2)
    (2023-11-03)
    
    ##### Bug Fixes
    
    - **zone.js:** disable wrapping unhandled promise error by default
    ([6d7eb35](https://redirect.github.com/angular/angular/commit/6d7eb3548c5fc3aedb4a52ff2010141343748e90))
    
    ####
    [14.0.1](https://redirect.github.com/angular/angular/compare/zone.js-0.14.0...zone.js-14.0.1)
    (2023-10-25)
    
    ##### Bug Fixes
    
    - **zone.js:** use `globalThis` instead of `global` and `window`
    ([#&#8203;52367](https://redirect.github.com/angular/angular/issues/52367))
    ([def719e](https://redirect.github.com/angular/angular/commit/def719e2cac50bbf1cda4a2c4bf96de2d4ba4bfd))
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - "before 4:00am on Tuesday" in timezone
    America/Toronto, Automerge - "after 9:00am and before 12:00pm on
    tuesday, wednesday, thursday" in timezone America/Toronto.
    
    🚦 **Automerge**: Disabled by config. Please merge this manually once you
    are satisfied.
    
    ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
    rebase/retry checkbox.
    
    👻 **Immortal**: This PR will be recreated if closed unmerged. Get
    [config
    help](https://redirect.github.com/renovatebot/renovate/discussions) if
    that's undesired.
    
    ---
    
    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box
    
    ---
    
    This PR has been generated by [Renovate
    Bot](https://redirect.github.com/renovatebot/renovate).
    
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjEuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2MS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==-->
    
    Co-authored-by: renovate-coveo[bot] <115253437+renovate-coveo[bot]@users.noreply.github.com>
    renovate-coveo[bot] authored Feb 11, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    8302720 View commit details

Commits on Feb 12, 2025

  1. [Version Bump][skip ci]: ui-kit publish

    @coveo/headless@3.15.1
    @coveo/atomic@3.19.0
    @coveo/headless-react@2.4.6
    @coveo/atomic-react@3.2.18
    @coveo/atomic-angular@3.3.8
    @coveo/atomic-hosted-page@1.1.1
    @coveo/quantic@3.14.1
    
    **/CHANGELOG.md
    **/package.json
    CHANGELOG.md
    package.json
    package-lock.json
    developer-experience-bot[bot] authored Feb 12, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    15308ec View commit details
Showing with 2,646 additions and 2,511 deletions.
  1. +1 −1 CODEOWNERS
  2. +1,171 −2,156 package-lock.json
  3. +7 −7 package.json
  4. +6 −6 packages/atomic-angular/package.json
  5. +4 −0 packages/atomic-angular/projects/atomic-angular/CHANGELOG.md
  6. +3 −3 packages/atomic-angular/projects/atomic-angular/package.json
  7. +2 −2 packages/atomic-angular/projects/atomic-angular/src/lib/stencil-generated/components.ts
  8. +4 −0 packages/atomic-hosted-page/CHANGELOG.md
  9. +5 −5 packages/atomic-hosted-page/package.json
  10. +4 −0 packages/atomic-react/CHANGELOG.md
  11. +5 −5 packages/atomic-react/package.json
  12. +11 −0 packages/atomic/CHANGELOG.md
  13. +13 −13 packages/atomic/package.json
  14. +22 −20 packages/atomic/src/components.d.ts
  15. +1 −1 packages/atomic/src/components/commerce/atomic-commerce-breadbox/atomic-commerce-breadbox.tsx
  16. +16 −0 packages/atomic/src/components/commerce/atomic-commerce-interface/atomic-commerce-interface.ts
  17. 0 ...merce-interface/e2e/{atomic-commerce-interface.e2e.ts → stencil-atomic-commerce-interface.e2e.ts}
  18. +4 −10 ...atomic-commerce-interface/{atomic-commerce-interface.tsx → stencil-atomic-commerce-interface.tsx}
  19. +1 −1 ...src/components/commerce/atomic-commerce-load-more-products/atomic-commerce-load-more-products.tsx
  20. +2 −2 ...c/components/commerce/atomic-commerce-recommendation-list/atomic-commerce-recommendation-list.tsx
  21. +9 −3 packages/atomic/src/components/commerce/atomic-commerce-search-box/atomic-commerce-search-box.tsx
  22. +1 −1 ...s/atomic/src/components/commerce/facets/facet-number-input/atomic-commerce-facet-number-input.tsx
  23. +1 −1 ...mponents/commerce/product-template-components/atomic-product-children/atomic-product-children.tsx
  24. +1 −1 ...ts/commerce/product-template-components/atomic-product-description/atomic-product-description.tsx
  25. +1 −1 ...components/commerce/product-template-components/atomic-product-excerpt/atomic-product-excerpt.tsx
  26. +2 −2 ...uct-template-components/atomic-product-numeric-field-value/atomic-product-numeric-field-value.tsx
  27. +1 −1 packages/atomic/src/components/common/breadbox/breadcrumb-button.tsx
  28. +1 −1 packages/atomic/src/components/common/breadbox/breadcrumb-clear-all.tsx
  29. +1 −1 packages/atomic/src/components/common/breadbox/breadcrumb-show-less.tsx
  30. +1 −1 packages/atomic/src/components/common/breadbox/breadcrumb-show-more.tsx
  31. +185 −0 packages/atomic/src/components/common/button.spec.ts
  32. +74 −0 packages/atomic/src/components/common/button.ts
  33. +1 −1 packages/atomic/src/components/common/carousel.tsx
  34. +1 −1 packages/atomic/src/components/common/expandable-text/expandable-text.tsx
  35. +1 −1 packages/atomic/src/components/common/facets/category-facet/all-categories-button.tsx
  36. +1 −1 packages/atomic/src/components/common/facets/category-facet/parent-button.tsx
  37. +1 −1 packages/atomic/src/components/common/facets/category-facet/search-value.tsx
  38. +2 −2 packages/atomic/src/components/common/facets/facet-date-input/facet-date-input.tsx
  39. +1 −1 packages/atomic/src/components/common/facets/facet-guard.tsx
  40. +2 −2 packages/atomic/src/components/common/facets/facet-header/facet-header.tsx
  41. +1 −1 packages/atomic/src/components/common/facets/facet-number-input/facet-number-input.tsx
  42. +1 −1 packages/atomic/src/components/common/facets/facet-search/facet-search-input.tsx
  43. +1 −1 packages/atomic/src/components/common/facets/facet-search/facet-search-matches.tsx
  44. +1 −1 packages/atomic/src/components/common/facets/facet-show-more-less/facet-show-more-less.tsx
  45. +1 −1 packages/atomic/src/components/common/facets/facet-value-box/facet-value-box.tsx
  46. +1 −1 packages/atomic/src/components/common/facets/facet-value-link/facet-value-link.tsx
  47. +1 −1 packages/atomic/src/components/common/facets/timeframe-facet-common.tsx
  48. +1 −1 packages/atomic/src/components/common/generated-answer/atomic-citation/atomic-citation.tsx
  49. +2 −2 ...mmon/generated-answer/atomic-generated-answer-feedback/atomic-generated-answer-feedback-modal.tsx
  50. +1 −1 packages/atomic/src/components/common/generated-answer/copy-button.tsx
  51. +1 −1 packages/atomic/src/components/common/generated-answer/feedback-button.tsx
  52. +1 −1 packages/atomic/src/components/common/generated-answer/generated-answer-common.tsx
  53. +1 −1 packages/atomic/src/components/common/generated-answer/retry-prompt.tsx
  54. +1 −1 packages/atomic/src/components/common/generated-answer/show-button.tsx
  55. +71 −0 packages/atomic/src/components/common/heading.spec.ts
  56. +31 −0 packages/atomic/src/components/common/heading.ts
  57. +2 −2 packages/atomic/src/components/common/iconButton.tsx
  58. +1 −1 packages/atomic/src/components/common/image-carousel/image-carousel.tsx
  59. +27 −0 packages/atomic/src/components/common/load-more/button.ts
  60. +11 −8 packages/atomic/src/components/common/load-more/{button.tsx → stencil-button.tsx}
  61. +1 −1 packages/atomic/src/components/common/no-items/cancel.tsx
  62. +2 −2 packages/atomic/src/components/common/pager/pager-buttons.tsx
  63. +1 −1 packages/atomic/src/components/common/pager/pager-guard.tsx
  64. +1 −1 packages/atomic/src/components/common/query-error/show-more.tsx
  65. +1 −1 packages/atomic/src/components/common/refine-modal/button.tsx
  66. +1 −1 packages/atomic/src/components/common/refine-modal/filters.tsx
  67. +1 −1 packages/atomic/src/components/common/refine-modal/modal.tsx
  68. +1 −1 packages/atomic/src/components/common/result-children/show-hide-button.tsx
  69. +2 −2 packages/atomic/src/components/common/search-box/clear-button.tsx
  70. +2 −2 packages/atomic/src/components/common/search-box/submit-button.tsx
  71. +2 −2 packages/atomic/src/components/common/search-box/text-area-clear-button.tsx
  72. +1 −1 packages/atomic/src/components/common/smart-snippets/atomic-smart-snippet-feedback-banner.tsx
  73. +1 −1 ...common/smart-snippets/atomic-smart-snippet-feedback-modal/smart-snippet-feedback-modal-common.tsx
  74. +3 −3 ...nents/common/smart-snippets/atomic-smart-snippet-suggestions/smart-snippet-suggestions-common.tsx
  75. +2 −2 packages/atomic/src/components/common/smart-snippets/atomic-smart-snippet/smart-snippet-common.tsx
  76. +12 −3 packages/atomic/src/components/common/{button.tsx → stencil-button.tsx}
  77. +5 −10 packages/atomic/src/components/common/{heading.tsx → stencil-heading.tsx}
  78. 0 packages/atomic/src/components/common/{hidden.tsx → stencil-hidden.tsx}
  79. +1 −1 packages/atomic/src/components/common/tab-manager/tab-button.tsx
  80. +1 −1 packages/atomic/src/components/common/tab-manager/tab-guard.tsx
  81. +2 −2 packages/atomic/src/components/common/tab-manager/tab-manager-bar.tsx
  82. +2 −2 packages/atomic/src/components/common/tabs/tab-bar.tsx
  83. +5 −5 packages/atomic/src/components/common/tabs/tab-popover.tsx
  84. +2 −2 packages/atomic/src/components/insight/atomic-insight-refine-modal/atomic-insight-refine-modal.tsx
  85. +1 −1 packages/atomic/src/components/insight/atomic-insight-result-action/atomic-insight-result-action.tsx
  86. +9 −3 packages/atomic/src/components/insight/atomic-insight-search-box/atomic-insight-search-box.tsx
  87. +1 −1 packages/atomic/src/components/insight/atomic-insight-tab/atomic-insight-tab.tsx
  88. +1 −1 ...ents/insight/user-actions/atomic-insight-user-actions-modal/atomic-insight-user-actions-modal.tsx
  89. +1 −1 .../insight/user-actions/atomic-insight-user-actions-session/atomic-insight-user-actions-session.tsx
  90. +1 −1 ...nsight/user-actions/atomic-insight-user-actions-timeline/atomic-insight-user-actions-timeline.tsx
  91. +1 −1 packages/atomic/src/components/ipx/atomic-ipx-button/atomic-ipx-button.tsx
  92. +11 −9 packages/atomic/src/components/ipx/atomic-ipx-recs-list/atomic-recs-list/atomic-ipx-recs-list.tsx
  93. +2 −2 packages/atomic/src/components/ipx/atomic-ipx-refine-modal/atomic-ipx-refine-modal.tsx
  94. +1 −1 packages/atomic/src/components/ipx/atomic-ipx-tab/atomic-ipx-tab.tsx
  95. +1 −1 packages/atomic/src/components/recommendations/atomic-recs-list/atomic-recs-list.tsx
  96. +1 −1 packages/atomic/src/components/search/atomic-breadbox/atomic-breadbox.tsx
  97. +1 −2 packages/atomic/src/components/search/atomic-generated-answer/atomic-generated-answer.tsx
  98. +1 −1 packages/atomic/src/components/search/atomic-load-more-results/atomic-load-more-results.tsx
  99. +2 −2 packages/atomic/src/components/search/atomic-notification/atomic-notifications.tsx
  100. +1 −1 packages/atomic/src/components/search/atomic-relevance-inspector/atomic-relevance-inspector.tsx
  101. +9 −3 packages/atomic/src/components/search/atomic-search-box/atomic-search-box.tsx
  102. +1 −1 packages/atomic/src/components/search/facets/atomic-automatic-facet/atomic-automatic-facet.tsx
  103. +1 −1 packages/atomic/src/components/search/facets/atomic-color-facet/atomic-color-facet.tsx
  104. +2 −2 packages/atomic/src/components/search/facets/atomic-popover/atomic-popover.tsx
  105. +1 −1 packages/atomic/src/components/search/facets/atomic-rating-facet/atomic-rating-facet.tsx
  106. +1 −1 packages/atomic/src/components/search/facets/atomic-rating-range-facet/atomic-rating-range-facet.tsx
  107. +2 −2 .../components/search/facets/atomic-segmented-facet-scrollable/atomic-segmented-facet-scrollable.tsx
  108. +1 −1 packages/atomic/src/components/search/facets/atomic-segmented-facet/atomic-segmented-facet.tsx
  109. +1 −1 packages/atomic/src/components/search/facets/facet-segmented-value/facet-segmented-value.tsx
  110. +1 −1 ...atomic/src/components/search/result-lists/atomic-folded-result-list/atomic-folded-result-list.tsx
  111. +0 −7 packages/atomic/src/components/search/result-lists/atomic-result-list/adopted-stylesheets.d.ts
  112. +1 −1 ...rc/components/search/result-template-components/atomic-quickview-modal/atomic-quickview-modal.tsx
  113. +1 −1 ...ges/atomic/src/components/search/result-template-components/atomic-quickview/atomic-quickview.tsx
  114. +1 −1 packages/atomic/src/components/search/smart-snippets/atomic-smart-snippet/atomic-smart-snippet.tsx
  115. 0 packages/atomic/src/{components/common/hidden.lit.ts → directives/hidden.ts}
  116. +56 −2 packages/atomic/src/locales.json
  117. +1 −1 packages/atomic/src/utils/initialization-utils.tsx
  118. +1 −4 packages/atomic/src/utils/replace-breakpoint.ts
  119. +5 −0 packages/headless-react/CHANGELOG.md
  120. +3 −3 packages/headless-react/package.json
  121. +4 −0 packages/headless-react/typedoc/lib/index.tsx
  122. +25 −0 packages/headless-react/typedoc/lib/insertOneTrust.ts
  123. +9 −0 packages/headless/CHANGELOG.md
  124. +1 −1 packages/headless/doc-parser/package.json
  125. +5 −5 packages/headless/package.json
  126. +2 −0 .../headless/src/controllers/commerce/core/facets/generator/headless-commerce-facet-generator.ssr.ts
  127. +11 −0 packages/headless/src/controllers/commerce/core/facets/location/headless-commerce-location-facet.ts
  128. +8 −0 packages/headless/src/controllers/commerce/core/facets/regular/headless-commerce-regular-facet.ts
  129. +9 −1 packages/headless/src/controllers/commerce/core/pagination/headless-core-commerce-pagination.ssr.ts
  130. +3 −0 packages/headless/src/controllers/commerce/core/pagination/headless-core-commerce-pagination.ts
  131. +40 −1 packages/headless/src/features/commerce/configuration/configuration-slice.test.ts
  132. +6 −1 packages/headless/src/features/commerce/configuration/configuration-slice.ts
  133. +4 −0 packages/headless/src/ssr-commerce.index.ts
  134. +4 −0 packages/headless/typedoc/lib/index.tsx
  135. +25 −0 packages/headless/typedoc/lib/insertOneTrust.ts
  136. +7 −0 packages/quantic/CHANGELOG.md
  137. +1 −1 packages/quantic/cypress/e2e/default-2/generatedAnswer/generated-answer-selectors.ts
  138. +3 −1 packages/quantic/cypress/e2e/default-2/smart-snippet/smart-snippet-selectors.ts
  139. +1 −1 packages/quantic/force-app/main/default/lwc/quanticFeedbackModal/success.html
  140. +1 −1 packages/quantic/force-app/main/default/lwc/quanticFeedbackModalQna/templates/success.html
  141. +1 −1 packages/quantic/force-app/main/default/lwc/quanticGeneratedAnswer/quanticGeneratedAnswer.js
  142. +0 −16 ...ages/quantic/force-app/main/default/lwc/quanticSmartSnippet/__tests__/quanticSmartSnippet.test.js
  143. +8 −0 packages/quantic/force-app/main/default/lwc/quanticSmartSnippet/e2e/pageObject.ts
  144. +51 −1 packages/quantic/force-app/main/default/lwc/quanticSmartSnippet/e2e/quanticSmartSnippet.e2e.ts
  145. +218 −37 packages/quantic/force-app/main/default/lwc/quanticSort/__tests__/quanticSort.test.js
  146. +61 −0 packages/quantic/force-app/main/default/lwc/quanticSort/e2e/fixture.ts
  147. +89 −0 packages/quantic/force-app/main/default/lwc/quanticSort/e2e/pageObject.ts
  148. +91 −0 packages/quantic/force-app/main/default/lwc/quanticSort/e2e/quanticSort.e2e.ts
  149. +7 −4 packages/quantic/force-app/main/default/lwc/quanticSort/quanticSort.js
  150. +8 −8 packages/quantic/package.json
  151. +5 −5 packages/samples/angular/package.json
  152. +1 −2 packages/samples/angular/tsconfig.json
  153. +4 −4 packages/samples/atomic-next/package.json
  154. +4 −4 packages/samples/atomic-react/package.json
  155. +3 −3 packages/samples/headless-commerce-react/package.json
  156. +2 −2 packages/samples/headless-commerce-ssr-remix/package.json
  157. +3 −3 packages/samples/headless-react/package.json
  158. +3 −3 packages/samples/headless-ssr-commerce/package.json
  159. +1 −1 packages/samples/headless-ssr/app-router/package.json
  160. +3 −3 packages/samples/headless-ssr/package.json
  161. +1 −1 packages/samples/headless-ssr/pages-router/package.json
  162. +4 −4 packages/samples/iife/package.json
  163. +2 −2 packages/samples/stencil/package.json
  164. +1 −1 packages/samples/vuejs/package.json
  165. +1 −1 utils/release/package.json
2 changes: 1 addition & 1 deletion CODEOWNERS
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
/packages/atomic/cypress/ @coveo/search @coveo/search-qa

# Owners of Atomic IPX components
/packages/atomic/src/components/ipx @coveo/service-integrations
/packages/atomic/src/components/ipx @coveo/service-core

# Owners of the Commerce headless sub-package
/packages/headless/commerce/ @coveo/commerce-routemasters
Loading