builder-settings-types 0.0.208 → 0.0.209
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 +43 -43
- package/dist/builder-settings-types.es.js +418 -437
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -731,7 +731,11 @@ export declare class UploadSetting extends Setting<string, UploadSettingProps> {
|
|
|
731
731
|
private previewEl;
|
|
732
732
|
private emptyStateEl;
|
|
733
733
|
private errorContainer;
|
|
734
|
+
private messageListener;
|
|
734
735
|
constructor(props?: UploadSettingProps);
|
|
736
|
+
private setupMessageListener;
|
|
737
|
+
private cleanupMessageListener;
|
|
738
|
+
destroy(): void;
|
|
735
739
|
private showError;
|
|
736
740
|
private hideError;
|
|
737
741
|
private validateFileSize;
|
package/package.json
CHANGED