Implementation
1
Add HTML Container
2
Initialize Result Component
3
Mount Component
Configuration Options
Basic Properties
Basic Properties
Component Parts
Component Parts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
The Loading Screen component offers a built-in loading component that you can display when background process is happening.
Add HTML Container
<div id="form"></div>
Initialize Result Component
// Create loading form component for individual processing
const loading = oneSdkInstance.component("form", {
name: "LOADING", // Personal information form
});
Mount Component
// Mount loading form to DOM element with id "form"
loading.mount("#form");
Basic Properties
interface LoadingConfig {
name: "LOADING"; // Screen identifier
title: TitleConfig; // Title configuration
descriptions: Description[]; // Description array
}
Component Parts
interface TitleConfig {
label: string;
style?: "ff-title";
}
interface Description {
label: string;
style?: "ff-description";
}
Was this page helpful?