@devtable/dashboard 13.27.0 → 13.27.1
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.
|
@@ -5,7 +5,10 @@ export declare const DefaultDynamicColorFunc: string;
|
|
|
5
5
|
export declare function getDynamicColorRestrictions(code: string): MonacoEditorRestriction[];
|
|
6
6
|
export declare const trimDynamicColorFunc: (raw: string) => string;
|
|
7
7
|
export declare const completeDynamicColorFunc: (trimmed: string) => string;
|
|
8
|
-
export declare const
|
|
8
|
+
export declare const DynamicColorIDPrefix = "dyn_color_";
|
|
9
|
+
export declare const IDPrefixReg: RegExp;
|
|
10
|
+
export declare function ensurePrefixOnID(id: string | null): string | null;
|
|
11
|
+
export declare const getDynamicColorID: (size: number) => string;
|
|
9
12
|
export declare function getDynamicColorStyles(doc: Document, dashboardState: TDashboardState, variables: VariableValueMap): Record<string, {
|
|
10
13
|
color: string;
|
|
11
14
|
}>;
|