builder-settings-types 0.0.263 → 0.0.264
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.
|
@@ -34,6 +34,7 @@ export declare class GradientSetting extends Setting<GradientValue, GradientSett
|
|
|
34
34
|
private forText;
|
|
35
35
|
constructor(props?: GradientSettingPropsWithStringDefault);
|
|
36
36
|
setValue(newValue: GradientValue | string | any): void;
|
|
37
|
+
private getDefaultGradientValue;
|
|
37
38
|
private updateUI;
|
|
38
39
|
private generateDisplayText;
|
|
39
40
|
draw(): HTMLElement;
|
|
@@ -80,7 +81,8 @@ export declare class GradientSetting extends Setting<GradientValue, GradientSett
|
|
|
80
81
|
private isValidColorFormat;
|
|
81
82
|
private triggerChange;
|
|
82
83
|
getElement(): HTMLElement | null;
|
|
83
|
-
getValue(): string
|
|
84
|
+
getValue(): string;
|
|
84
85
|
getCSSValue(): string;
|
|
86
|
+
getTextCSSProperties(): object;
|
|
85
87
|
getRawValue(): GradientValue | undefined;
|
|
86
88
|
}
|
package/package.json
CHANGED