@@ -1460,8 +1460,9 @@ export class Clerk implements ClerkInterface {
14601460 *
14611461 * @param targetNode Target to mount the ConfigureSSO component.
14621462 * @param props Configuration parameters.
1463+ * @hidden
14631464 */
1464- public mountConfigureSSO = ( node : HTMLDivElement , props ?: ConfigureSSOProps ) => {
1465+ public __internal_mountConfigureSSO = ( node : HTMLDivElement , props ?: ConfigureSSOProps ) => {
14651466 const { isEnabled : isOrganizationsEnabled } = this . __internal_attemptToEnableEnvironmentSetting ( {
14661467 for : 'organizations' ,
14671468 caller : 'ConfigureSSO' ,
@@ -1525,25 +1526,12 @@ export class Clerk implements ClerkInterface {
15251526 * If there is no component mounted at the target node, results in a noop.
15261527 *
15271528 * @param targetNode Target node to unmount the ConfigureSSO component from.
1529+ * @hidden
15281530 */
1529- public unmountConfigureSSO = ( node : HTMLDivElement ) => {
1531+ public __internal_unmountConfigureSSO = ( node : HTMLDivElement ) => {
15301532 void this . #clerkUI?. then ( ui => ui . ensureMounted ( ) ) . then ( controls => controls . unmountComponent ( { node } ) ) ;
15311533 } ;
15321534
1533- /**
1534- * @deprecated Use `mountConfigureSSO` instead.
1535- */
1536- public __experimental_mountConfigureSSO = ( node : HTMLDivElement , props ?: ConfigureSSOProps ) => {
1537- return this . mountConfigureSSO ( node , props ) ;
1538- } ;
1539-
1540- /**
1541- * @deprecated Use `unmountConfigureSSO` instead.
1542- */
1543- public __experimental_unmountConfigureSSO = ( node : HTMLDivElement ) => {
1544- return this . unmountConfigureSSO ( node ) ;
1545- } ;
1546-
15471535 public mountTaskChooseOrganization = ( node : HTMLDivElement , props ?: TaskChooseOrganizationProps ) => {
15481536 const { isEnabled : isOrganizationsEnabled } = this . __internal_attemptToEnableEnvironmentSetting ( {
15491537 for : 'organizations' ,
0 commit comments