builder-settings-types 0.0.86 → 0.0.87
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/builder-settings-types.cjs.js +24 -24
- package/dist/builder-settings-types.es.js +246 -211
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -309,6 +309,7 @@ export declare interface SelectApiSettingProps<T = any> extends SettingProps<T>
|
|
|
309
309
|
getOptions?: () => SelectApiOption[];
|
|
310
310
|
getOptionsAsync?: () => Promise<SelectApiOption[]>;
|
|
311
311
|
loadingText?: string;
|
|
312
|
+
onChange?: (value: T) => void;
|
|
312
313
|
}
|
|
313
314
|
|
|
314
315
|
export declare class SelectApiSettings<T = any> extends Setting<T, SelectApiSettingProps<T>> {
|
|
@@ -435,6 +436,7 @@ export declare interface StringSettingsProps extends SettingProps<string> {
|
|
|
435
436
|
className?: string;
|
|
436
437
|
inputClassName?: string;
|
|
437
438
|
wrapperClassName?: string;
|
|
439
|
+
onChange?: (value: string) => void;
|
|
438
440
|
}
|
|
439
441
|
|
|
440
442
|
export declare class TabsContainerGroup extends SettingGroup<Record<string, TabSettingGroup>> {
|
package/package.json
CHANGED