@progress/kendo-theme-default 12.2.1-dev.1 → 12.2.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/all.css +1 -1
- package/dist/default-blue.css +1 -1
- package/dist/default-dataviz-v4.css +1 -1
- package/dist/default-green.css +1 -1
- package/dist/default-main-dark.css +1 -1
- package/dist/default-main.css +1 -1
- package/dist/default-nordic.css +1 -1
- package/dist/default-ocean-blue-a11y.css +1 -1
- package/dist/default-ocean-blue.css +1 -1
- package/dist/default-orange.css +1 -1
- package/dist/default-purple.css +1 -1
- package/dist/default-turquoise.css +1 -1
- package/dist/default-urban.css +1 -1
- package/dist/meta/sassdoc-data.json +360 -252
- package/dist/meta/sassdoc-raw-data.json +175 -125
- package/dist/meta/variables.json +8 -0
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue-a11y.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +4 -4
- package/scss/dataviz/_variables.scss +9 -0
package/dist/meta/variables.json
CHANGED
|
@@ -14879,6 +14879,14 @@
|
|
|
14879
14879
|
"type": "List",
|
|
14880
14880
|
"value": "(left 300ms cubic-bezier(0, 0.33, 0.19, 1), top 300ms cubic-bezier(0, 0.33, 0.19, 1))"
|
|
14881
14881
|
},
|
|
14882
|
+
"kendo-chart-tooltip-color": {
|
|
14883
|
+
"type": "String",
|
|
14884
|
+
"value": "var(--kendo-color-app-surface, #ffffff)"
|
|
14885
|
+
},
|
|
14886
|
+
"kendo-chart-tooltip-color-inverse": {
|
|
14887
|
+
"type": "String",
|
|
14888
|
+
"value": "var(--kendo-color-on-app-surface, #3d3d3d)"
|
|
14889
|
+
},
|
|
14882
14890
|
"kendo-chart-bg": {
|
|
14883
14891
|
"type": "String",
|
|
14884
14892
|
"value": "var(--kendo-color-surface-alt, #ffffff)"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-default",
|
|
3
3
|
"description": "SASS resources for the default Kendo UI theme",
|
|
4
|
-
"version": "12.2.
|
|
4
|
+
"version": "12.2.2",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -53,12 +53,12 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@progress/kendo-svg-icons": "^4.5.0",
|
|
56
|
-
"@progress/kendo-theme-core": "12.2.
|
|
57
|
-
"@progress/kendo-theme-utils": "12.2.
|
|
56
|
+
"@progress/kendo-theme-core": "12.2.2",
|
|
57
|
+
"@progress/kendo-theme-utils": "12.2.2"
|
|
58
58
|
},
|
|
59
59
|
"directories": {
|
|
60
60
|
"doc": "docs",
|
|
61
61
|
"lib": "lib"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "5df749fa84adc0243e661b3b6f3477325553088b"
|
|
64
64
|
}
|
|
@@ -252,6 +252,13 @@ $kendo-chart-tooltip-padding-y: k-spacing(0.5) !default;
|
|
|
252
252
|
/// @group charts
|
|
253
253
|
$kendo-chart-tooltip-transition: left 300ms cubic-bezier(0, .33, .19, 1), top 300ms cubic-bezier(0, .33, .19, 1) !default;
|
|
254
254
|
|
|
255
|
+
/// The text color of the chart tooltip.
|
|
256
|
+
/// @group charts
|
|
257
|
+
$kendo-chart-tooltip-color: k-color(app-surface) !default;
|
|
258
|
+
/// The inverse text color of the chart tooltip.
|
|
259
|
+
/// @group charts
|
|
260
|
+
$kendo-chart-tooltip-color-inverse: k-color(on-app-surface) !default;
|
|
261
|
+
|
|
255
262
|
/// The background color of the Chart.
|
|
256
263
|
/// @group charts
|
|
257
264
|
$kendo-chart-bg: k-color(surface-alt) !default;
|
|
@@ -444,6 +451,8 @@ $kendo-gauge-track-bg: k-color(base-emphasis) !default;
|
|
|
444
451
|
$kendo-chart-tooltip-padding-x: $kendo-chart-tooltip-padding-x,
|
|
445
452
|
$kendo-chart-tooltip-padding-y: $kendo-chart-tooltip-padding-y,
|
|
446
453
|
$kendo-chart-tooltip-transition: $kendo-chart-tooltip-transition,
|
|
454
|
+
$kendo-chart-tooltip-color: $kendo-chart-tooltip-color,
|
|
455
|
+
$kendo-chart-tooltip-color-inverse: $kendo-chart-tooltip-color-inverse,
|
|
447
456
|
$kendo-chart-bg: $kendo-chart-bg,
|
|
448
457
|
$kendo-chart-text: $kendo-chart-text,
|
|
449
458
|
$kendo-chart-border: $kendo-chart-border,
|