Furo JS provides UI components that are ready to use right out of the box.
You can immediately utilize various features related to login and user management without any additional implementation.

The available UI components include:

Controlling UI Components

Once you have completed the SDK initialization, you can control the UI with simple function calls.

open

You can open a component UI using the open function of the furo object.

furo.open('login');

close

You can close a component UI using the close function of the furo object.

furo.close('login');

API

furo.open(type, options)

function open(type: string, options?: UIComponentConfigs): void;
type
string
required

Specifies the type of UI component: “login”

options
UIComponentConfigs | undefined

UIComponentConfigs may vary depending on the component type.


Please refer to each UI component for its properties.

furo.close(type)

function close(type: string): void;
type
string
required

Specifies the type of UI component: “login”