builder-settings-types 0.0.285 → 0.0.288
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.
|
@@ -12,9 +12,19 @@ export declare class EmbeddedColorPicker {
|
|
|
12
12
|
private container;
|
|
13
13
|
private recentScope;
|
|
14
14
|
private recentSectionRefresh?;
|
|
15
|
+
private colorArea;
|
|
16
|
+
private colorMarker;
|
|
17
|
+
private hueSlider;
|
|
18
|
+
private hueMarker;
|
|
19
|
+
private opacitySlider;
|
|
20
|
+
private opacityMarker;
|
|
21
|
+
private formatSelect;
|
|
22
|
+
private colorInput;
|
|
23
|
+
private inputUpdateTimeout?;
|
|
15
24
|
constructor(options: EmbeddedColorPickerOptions);
|
|
16
25
|
private createContainer;
|
|
17
26
|
private initializePicker;
|
|
27
|
+
private scheduleInputUpdate;
|
|
18
28
|
private updateOpacityBackground;
|
|
19
29
|
private updateColorInput;
|
|
20
30
|
private applyRecentColor;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const makeDraggable: (handle: HTMLElement, target: HTMLElement) => void;
|
|
1
|
+
export declare const makeDraggable: (handle: HTMLElement, target: HTMLElement, onPositionChange?: (left: number, top: number) => void) => void;
|
package/package.json
CHANGED