You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the SDK, developers will be able to expose and bind config options as user-editable settings in the Settings page. They'll be able to choose the field name, description, and type of input (text, check, select). This will directly set the configuration value for the key they choose to the data the user inputs.
constplugin={onReady(sdk){sdk.exposeSetting({bind: "name",title: "Name",description: "Enter your name",type: "text",})},tile(sdk){return<p>{sdk.config.get("name")}</p>}}
interfaceExposeSettingProps{key: stringdata: {title: stringdescription?: string,type: "text"|"select"|"checkbox",options?: {// for type "select"title: stringvalue: string}[]}}}
No description provided.
The text was updated successfully, but these errors were encountered: