Skip to content

Releases: clerk/javascript

@clerk/[email protected]

13 Feb 13:04
5cc1c78
Compare
Choose a tag to compare

Minor Changes

  • Add support for <OrganizationProfile> custom pages and links through <OrganizationSwitcher> (#5129) by @wobsoriano

    Example:

    <script setup lang="ts">
    import { OrganizationSwitcher } from '@clerk/vue';
    import Icon from './Icon.vue';
    </script>
    
    <template>
      <header>
        <OrganizationSwitcher>
          <OrganizationSwitcher.OrganizationProfilePage
            label="Custom Page"
            url="custom"
          >
            <template #labelIcon>
              <Icon />
            </template>
            <div>
              <h1>Custom Organization Profile Page</h1>
              <p>This is the custom organization profile page</p>
            </div>
          </OrganizationSwitcher.OrganizationProfilePage>
          <OrganizationSwitcher.OrganizationProfileLink
            label="Homepage"
            url="/"
          >
            <template #labelIcon>
              <Icon />
            </template>
          </OrganizationSwitcher.OrganizationProfileLink>
        </OrganizationSwitcher>
      </header>
    </template>

Patch Changes

@clerk/[email protected]

13 Feb 13:04
5cc1c78
Compare
Choose a tag to compare

Patch Changes

  • Remove an internal function that was executed but its return value wasn't used. In some instances this function threw an error. (#5138) by @LekoArts

@clerk/[email protected]

13 Feb 13:04
5cc1c78
Compare
Choose a tag to compare

@clerk/[email protected]

13 Feb 13:04
5cc1c78
Compare
Choose a tag to compare

Minor Changes

@clerk/[email protected]

13 Feb 13:04
5cc1c78
Compare
Choose a tag to compare

@clerk/[email protected]

13 Feb 13:03
5cc1c78
Compare
Choose a tag to compare

@clerk/[email protected]

13 Feb 13:04
5cc1c78
Compare
Choose a tag to compare

@clerk/[email protected]

13 Feb 13:04
5cc1c78
Compare
Choose a tag to compare

@clerk/[email protected]

13 Feb 13:03
5cc1c78
Compare
Choose a tag to compare

@clerk/[email protected]

13 Feb 13:03
5cc1c78
Compare
Choose a tag to compare