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/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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "builder-settings-types",
3
3
  "description": "builder settings",
4
- "version": "0.0.86",
4
+ "version": "0.0.87",
5
5
  "type": "module",
6
6
  "main": "dist/builder-settings-types.cjs.js",
7
7
  "module": "dist/builder-settings-types.es.js",