builder-settings-types 0.0.273 → 0.0.275
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.
|
@@ -15,6 +15,7 @@ export declare class GradientSetting extends Setting<GradientValue, SettingProps
|
|
|
15
15
|
private isEditing;
|
|
16
16
|
private forText;
|
|
17
17
|
detectChange?: (value: GradientValue | undefined) => void;
|
|
18
|
+
private previewUpdateTimeout;
|
|
18
19
|
constructor(props?: GradientSettingProps);
|
|
19
20
|
private originalDefault;
|
|
20
21
|
private defaultValue;
|
|
@@ -30,6 +31,7 @@ export declare class GradientSetting extends Setting<GradientValue, SettingProps
|
|
|
30
31
|
private renderGradient;
|
|
31
32
|
private updateDegreeVisibility;
|
|
32
33
|
private updateGradientPreview;
|
|
34
|
+
private debouncedPreviewUpdate;
|
|
33
35
|
private createHandles;
|
|
34
36
|
private updateStopsList;
|
|
35
37
|
private addStop;
|
package/package.json
CHANGED