@qrvey/utils 1.13.0-1 → 1.13.0-2
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/cjs/themes/constants/AUTOMATIC_CSS_VARIABLES.d.ts +2 -0
- package/dist/cjs/themes/constants/AUTOMATIC_GLOBAL_CSS_VARIABLES_FOR_DARK.d.ts +1 -0
- package/dist/cjs/themes/constants/AUTOMATIC_GLOBAL_CSS_VARIABLES_FOR_DARK.js +1 -0
- package/dist/cjs/themes/constants/AUTOMATIC_GLOBAL_CSS_VARIABLES_FOR_LIGHT.d.ts +1 -0
- package/dist/cjs/themes/constants/AUTOMATIC_GLOBAL_CSS_VARIABLES_FOR_LIGHT.js +1 -0
- package/dist/cjs/themes/constants/GLOBAL_CSS_VARIABLES.d.ts +2 -1
- package/dist/cjs/themes/constants/GLOBAL_CSS_VARIABLES.js +1 -0
- package/dist/cjs/themes/helpers/getCSSVariablesByDestination.d.ts +2 -0
- package/dist/themes/constants/AUTOMATIC_CSS_VARIABLES.d.ts +2 -0
- package/dist/themes/constants/AUTOMATIC_GLOBAL_CSS_VARIABLES_FOR_DARK.d.ts +1 -0
- package/dist/themes/constants/AUTOMATIC_GLOBAL_CSS_VARIABLES_FOR_DARK.js +1 -0
- package/dist/themes/constants/AUTOMATIC_GLOBAL_CSS_VARIABLES_FOR_LIGHT.d.ts +1 -0
- package/dist/themes/constants/AUTOMATIC_GLOBAL_CSS_VARIABLES_FOR_LIGHT.js +1 -0
- package/dist/themes/constants/GLOBAL_CSS_VARIABLES.d.ts +2 -1
- package/dist/themes/constants/GLOBAL_CSS_VARIABLES.js +1 -0
- package/dist/themes/helpers/getCSSVariablesByDestination.d.ts +2 -0
- package/package.json +1 -1
|
@@ -14,6 +14,7 @@ export declare const AUTOMATIC_CANVAS_CSS_VARIABLES: {
|
|
|
14
14
|
"--qv-global-text-color": string;
|
|
15
15
|
"--qv-global-text-secondary-color": string;
|
|
16
16
|
"--qv-global-text-tertiary-color": string;
|
|
17
|
+
"--qv-global-info-color": string;
|
|
17
18
|
};
|
|
18
19
|
LIGHT: {
|
|
19
20
|
"--qv-global-header-background-color": string;
|
|
@@ -26,6 +27,7 @@ export declare const AUTOMATIC_CANVAS_CSS_VARIABLES: {
|
|
|
26
27
|
"--qv-global-text-color": any;
|
|
27
28
|
"--qv-global-text-secondary-color": string;
|
|
28
29
|
"--qv-global-text-tertiary-color": string;
|
|
30
|
+
"--qv-global-info-color": any;
|
|
29
31
|
};
|
|
30
32
|
};
|
|
31
33
|
CANVAS: {
|
|
@@ -16,4 +16,5 @@ exports.AUTOMATIC_GLOBAL_CSS_VARIABLES_FOR_DARK = {
|
|
|
16
16
|
[GLOBAL_CSS_VARIABLES_1.GLOBAL_CSS_VARIABLES.TEXT_COLOR]: "#FFFFFF",
|
|
17
17
|
[GLOBAL_CSS_VARIABLES_1.GLOBAL_CSS_VARIABLES.TEXT_SECONDARY_COLOR]: "#FFFFFF90",
|
|
18
18
|
[GLOBAL_CSS_VARIABLES_1.GLOBAL_CSS_VARIABLES.TEXT_TERTIARY_COLOR]: "#FFFFFF80",
|
|
19
|
+
[GLOBAL_CSS_VARIABLES_1.GLOBAL_CSS_VARIABLES.INFO_COLOR]: "#FFFFFFCC",
|
|
19
20
|
};
|
|
@@ -16,4 +16,5 @@ exports.AUTOMATIC_GLOBAL_CSS_VARIABLES_FOR_LIGHT = {
|
|
|
16
16
|
[GLOBAL_CSS_VARIABLES_1.GLOBAL_CSS_VARIABLES.TEXT_COLOR]: undefined,
|
|
17
17
|
[GLOBAL_CSS_VARIABLES_1.GLOBAL_CSS_VARIABLES.TEXT_SECONDARY_COLOR]: "#00000080",
|
|
18
18
|
[GLOBAL_CSS_VARIABLES_1.GLOBAL_CSS_VARIABLES.TEXT_TERTIARY_COLOR]: "#00000070",
|
|
19
|
+
[GLOBAL_CSS_VARIABLES_1.GLOBAL_CSS_VARIABLES.INFO_COLOR]: undefined,
|
|
19
20
|
};
|
|
@@ -11,5 +11,6 @@ export declare enum GLOBAL_CSS_VARIABLES {
|
|
|
11
11
|
PILLS_BACKGROUND_COLOR = "--qv-pills-background-color",
|
|
12
12
|
TEXT_COLOR = "--qv-global-text-color",
|
|
13
13
|
TEXT_SECONDARY_COLOR = "--qv-global-text-secondary-color",
|
|
14
|
-
TEXT_TERTIARY_COLOR = "--qv-global-text-tertiary-color"
|
|
14
|
+
TEXT_TERTIARY_COLOR = "--qv-global-text-tertiary-color",
|
|
15
|
+
INFO_COLOR = "--qv-global-info-color"
|
|
15
16
|
}
|
|
@@ -16,4 +16,5 @@ var GLOBAL_CSS_VARIABLES;
|
|
|
16
16
|
GLOBAL_CSS_VARIABLES["TEXT_COLOR"] = "--qv-global-text-color";
|
|
17
17
|
GLOBAL_CSS_VARIABLES["TEXT_SECONDARY_COLOR"] = "--qv-global-text-secondary-color";
|
|
18
18
|
GLOBAL_CSS_VARIABLES["TEXT_TERTIARY_COLOR"] = "--qv-global-text-tertiary-color";
|
|
19
|
+
GLOBAL_CSS_VARIABLES["INFO_COLOR"] = "--qv-global-info-color";
|
|
19
20
|
})(GLOBAL_CSS_VARIABLES || (exports.GLOBAL_CSS_VARIABLES = GLOBAL_CSS_VARIABLES = {}));
|
|
@@ -17,6 +17,7 @@ export declare function getCSSVariablesByDestination(destination?: IColorCSSVari
|
|
|
17
17
|
"--qv-global-text-color": string;
|
|
18
18
|
"--qv-global-text-secondary-color": string;
|
|
19
19
|
"--qv-global-text-tertiary-color": string;
|
|
20
|
+
"--qv-global-info-color": string;
|
|
20
21
|
};
|
|
21
22
|
LIGHT: {
|
|
22
23
|
"--qv-global-header-background-color": string;
|
|
@@ -29,6 +30,7 @@ export declare function getCSSVariablesByDestination(destination?: IColorCSSVari
|
|
|
29
30
|
"--qv-global-text-color": any;
|
|
30
31
|
"--qv-global-text-secondary-color": string;
|
|
31
32
|
"--qv-global-text-tertiary-color": string;
|
|
33
|
+
"--qv-global-info-color": any;
|
|
32
34
|
};
|
|
33
35
|
} | {
|
|
34
36
|
DARK: {
|
|
@@ -14,6 +14,7 @@ export declare const AUTOMATIC_CANVAS_CSS_VARIABLES: {
|
|
|
14
14
|
"--qv-global-text-color": string;
|
|
15
15
|
"--qv-global-text-secondary-color": string;
|
|
16
16
|
"--qv-global-text-tertiary-color": string;
|
|
17
|
+
"--qv-global-info-color": string;
|
|
17
18
|
};
|
|
18
19
|
LIGHT: {
|
|
19
20
|
"--qv-global-header-background-color": string;
|
|
@@ -26,6 +27,7 @@ export declare const AUTOMATIC_CANVAS_CSS_VARIABLES: {
|
|
|
26
27
|
"--qv-global-text-color": any;
|
|
27
28
|
"--qv-global-text-secondary-color": string;
|
|
28
29
|
"--qv-global-text-tertiary-color": string;
|
|
30
|
+
"--qv-global-info-color": any;
|
|
29
31
|
};
|
|
30
32
|
};
|
|
31
33
|
CANVAS: {
|
|
@@ -13,4 +13,5 @@ export const AUTOMATIC_GLOBAL_CSS_VARIABLES_FOR_DARK = {
|
|
|
13
13
|
[GLOBAL_CSS_VARIABLES.TEXT_COLOR]: "#FFFFFF",
|
|
14
14
|
[GLOBAL_CSS_VARIABLES.TEXT_SECONDARY_COLOR]: "#FFFFFF90",
|
|
15
15
|
[GLOBAL_CSS_VARIABLES.TEXT_TERTIARY_COLOR]: "#FFFFFF80",
|
|
16
|
+
[GLOBAL_CSS_VARIABLES.INFO_COLOR]: "#FFFFFFCC",
|
|
16
17
|
};
|
|
@@ -13,4 +13,5 @@ export const AUTOMATIC_GLOBAL_CSS_VARIABLES_FOR_LIGHT = {
|
|
|
13
13
|
[GLOBAL_CSS_VARIABLES.TEXT_COLOR]: undefined,
|
|
14
14
|
[GLOBAL_CSS_VARIABLES.TEXT_SECONDARY_COLOR]: "#00000080",
|
|
15
15
|
[GLOBAL_CSS_VARIABLES.TEXT_TERTIARY_COLOR]: "#00000070",
|
|
16
|
+
[GLOBAL_CSS_VARIABLES.INFO_COLOR]: undefined,
|
|
16
17
|
};
|
|
@@ -11,5 +11,6 @@ export declare enum GLOBAL_CSS_VARIABLES {
|
|
|
11
11
|
PILLS_BACKGROUND_COLOR = "--qv-pills-background-color",
|
|
12
12
|
TEXT_COLOR = "--qv-global-text-color",
|
|
13
13
|
TEXT_SECONDARY_COLOR = "--qv-global-text-secondary-color",
|
|
14
|
-
TEXT_TERTIARY_COLOR = "--qv-global-text-tertiary-color"
|
|
14
|
+
TEXT_TERTIARY_COLOR = "--qv-global-text-tertiary-color",
|
|
15
|
+
INFO_COLOR = "--qv-global-info-color"
|
|
15
16
|
}
|
|
@@ -13,4 +13,5 @@ export var GLOBAL_CSS_VARIABLES;
|
|
|
13
13
|
GLOBAL_CSS_VARIABLES["TEXT_COLOR"] = "--qv-global-text-color";
|
|
14
14
|
GLOBAL_CSS_VARIABLES["TEXT_SECONDARY_COLOR"] = "--qv-global-text-secondary-color";
|
|
15
15
|
GLOBAL_CSS_VARIABLES["TEXT_TERTIARY_COLOR"] = "--qv-global-text-tertiary-color";
|
|
16
|
+
GLOBAL_CSS_VARIABLES["INFO_COLOR"] = "--qv-global-info-color";
|
|
16
17
|
})(GLOBAL_CSS_VARIABLES || (GLOBAL_CSS_VARIABLES = {}));
|
|
@@ -17,6 +17,7 @@ export declare function getCSSVariablesByDestination(destination?: IColorCSSVari
|
|
|
17
17
|
"--qv-global-text-color": string;
|
|
18
18
|
"--qv-global-text-secondary-color": string;
|
|
19
19
|
"--qv-global-text-tertiary-color": string;
|
|
20
|
+
"--qv-global-info-color": string;
|
|
20
21
|
};
|
|
21
22
|
LIGHT: {
|
|
22
23
|
"--qv-global-header-background-color": string;
|
|
@@ -29,6 +30,7 @@ export declare function getCSSVariablesByDestination(destination?: IColorCSSVari
|
|
|
29
30
|
"--qv-global-text-color": any;
|
|
30
31
|
"--qv-global-text-secondary-color": string;
|
|
31
32
|
"--qv-global-text-tertiary-color": string;
|
|
33
|
+
"--qv-global-info-color": any;
|
|
32
34
|
};
|
|
33
35
|
} | {
|
|
34
36
|
DARK: {
|