@progress/kendo-theme-material 8.0.0 → 8.0.1-dev.0
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 +2 -2
- package/dist/all.scss +20 -20
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +5 -5
package/dist/all.css
CHANGED
|
@@ -42131,7 +42131,7 @@ select.k-picker-lg {
|
|
|
42131
42131
|
}
|
|
42132
42132
|
|
|
42133
42133
|
.k-adaptive-actionsheet .k-actionsheet-filter {
|
|
42134
|
-
width: calc(
|
|
42134
|
+
width: calc(360px - var(--kendo-spacing-4, 1rem)*2);
|
|
42135
42135
|
}
|
|
42136
42136
|
|
|
42137
42137
|
.k-adaptive-actionsheet .k-actionsheet-content,
|
|
@@ -57033,7 +57033,7 @@ kendo-scrollview.k-scrollview .k-scrollview-nav {
|
|
|
57033
57033
|
}
|
|
57034
57034
|
|
|
57035
57035
|
.k-var--gauge-track {
|
|
57036
|
-
background-color: var(--kendo-color-base, #
|
|
57036
|
+
background-color: var(--kendo-color-base-emphasis, #adadad);
|
|
57037
57037
|
}
|
|
57038
57038
|
|
|
57039
57039
|
.k-var--chart-inactive {
|
package/dist/all.scss
CHANGED
|
@@ -15207,7 +15207,7 @@ $kendo-utils: (
|
|
|
15207
15207
|
/// @contextType css
|
|
15208
15208
|
|
|
15209
15209
|
// stylelint-disable scss/at-function-pattern
|
|
15210
|
-
@function
|
|
15210
|
+
@function _rotate( $val ) {
|
|
15211
15211
|
@return rotate( $val );
|
|
15212
15212
|
}
|
|
15213
15213
|
// stylelint-enable scss/at-function-pattern
|
|
@@ -15216,7 +15216,7 @@ $kendo-utils: (
|
|
|
15216
15216
|
|
|
15217
15217
|
// Rotate utility classes
|
|
15218
15218
|
$kendo-utils-rotate: k-map-get( $kendo-utils, "rotate" ) !default;
|
|
15219
|
-
@include generate-utils( rotate, transform, $kendo-utils-rotate,
|
|
15219
|
+
@include generate-utils( rotate, transform, $kendo-utils-rotate, _rotate );
|
|
15220
15220
|
|
|
15221
15221
|
}
|
|
15222
15222
|
|
|
@@ -15241,13 +15241,13 @@ $kendo-utils: (
|
|
|
15241
15241
|
/// @contextType css
|
|
15242
15242
|
|
|
15243
15243
|
// stylelint-disable scss/at-function-pattern
|
|
15244
|
-
@function
|
|
15244
|
+
@function _scale( $val ) {
|
|
15245
15245
|
@return scale( $val );
|
|
15246
15246
|
}
|
|
15247
|
-
@function
|
|
15247
|
+
@function _scale-x( $val ) {
|
|
15248
15248
|
@return scaleX( $val );
|
|
15249
15249
|
}
|
|
15250
|
-
@function
|
|
15250
|
+
@function _scale-y( $val ) {
|
|
15251
15251
|
@return scaleY( $val );
|
|
15252
15252
|
}
|
|
15253
15253
|
// stylelint-enable scss/at-function-pattern
|
|
@@ -15256,9 +15256,9 @@ $kendo-utils: (
|
|
|
15256
15256
|
|
|
15257
15257
|
// Scale utility classes
|
|
15258
15258
|
$kendo-utils-scale: k-map-get( $kendo-utils, "scale" ) !default;
|
|
15259
|
-
@include generate-utils( scale, transform, $kendo-utils-scale,
|
|
15260
|
-
@include generate-utils( scale-x, transform, $kendo-utils-scale,
|
|
15261
|
-
@include generate-utils( scale-y, transform, $kendo-utils-scale,
|
|
15259
|
+
@include generate-utils( scale, transform, $kendo-utils-scale, _scale );
|
|
15260
|
+
@include generate-utils( scale-x, transform, $kendo-utils-scale, _scale-x );
|
|
15261
|
+
@include generate-utils( scale-y, transform, $kendo-utils-scale, _scale-y );
|
|
15262
15262
|
|
|
15263
15263
|
}
|
|
15264
15264
|
|
|
@@ -15289,10 +15289,10 @@ $kendo-utils: (
|
|
|
15289
15289
|
/// @contextType css
|
|
15290
15290
|
|
|
15291
15291
|
// stylelint-disable scss/at-function-pattern
|
|
15292
|
-
@function
|
|
15292
|
+
@function _skew-x( $val ) {
|
|
15293
15293
|
@return skewX( $val );
|
|
15294
15294
|
}
|
|
15295
|
-
@function
|
|
15295
|
+
@function _skew-y( $val ) {
|
|
15296
15296
|
@return skewY( $val );
|
|
15297
15297
|
}
|
|
15298
15298
|
// stylelint-enable scss/at-function-pattern
|
|
@@ -15301,8 +15301,8 @@ $kendo-utils: (
|
|
|
15301
15301
|
|
|
15302
15302
|
// Transform skew utility classes
|
|
15303
15303
|
$kendo-utils-skew: k-map-get( $kendo-utils, "skew" ) !default;
|
|
15304
|
-
@include generate-utils( skew-x, transform, $kendo-utils-skew,
|
|
15305
|
-
@include generate-utils( skew-y, transform, $kendo-utils-skew,
|
|
15304
|
+
@include generate-utils( skew-x, transform, $kendo-utils-skew, _skew-x );
|
|
15305
|
+
@include generate-utils( skew-y, transform, $kendo-utils-skew, _skew-y );
|
|
15306
15306
|
|
|
15307
15307
|
}
|
|
15308
15308
|
|
|
@@ -15363,13 +15363,13 @@ $kendo-utils: (
|
|
|
15363
15363
|
/// @contextType css
|
|
15364
15364
|
|
|
15365
15365
|
// stylelint-disable scss/at-function-pattern
|
|
15366
|
-
@function
|
|
15366
|
+
@function _translate( $val ) {
|
|
15367
15367
|
@return translate( $val );
|
|
15368
15368
|
}
|
|
15369
|
-
@function
|
|
15369
|
+
@function _translate-x( $val ) {
|
|
15370
15370
|
@return translateX( $val );
|
|
15371
15371
|
}
|
|
15372
|
-
@function
|
|
15372
|
+
@function _translate-y( $val ) {
|
|
15373
15373
|
@return translateY( $val );
|
|
15374
15374
|
}
|
|
15375
15375
|
// stylelint-enable scss/at-function-pattern
|
|
@@ -15389,9 +15389,9 @@ $kendo-utils: (
|
|
|
15389
15389
|
"100-50": ( 100%, 50% ),
|
|
15390
15390
|
"100-100": ( 100%, 100% )
|
|
15391
15391
|
) !default;
|
|
15392
|
-
@include generate-utils( translate, transform, $kendo-utils-translate-xy,
|
|
15393
|
-
@include generate-utils( translate-x, transform, $kendo-utils-translate,
|
|
15394
|
-
@include generate-utils( translate-y, transform, $kendo-utils-translate,
|
|
15392
|
+
@include generate-utils( translate, transform, $kendo-utils-translate-xy, _translate );
|
|
15393
|
+
@include generate-utils( translate-x, transform, $kendo-utils-translate, _translate-x );
|
|
15394
|
+
@include generate-utils( translate-y, transform, $kendo-utils-translate, _translate-y );
|
|
15395
15395
|
|
|
15396
15396
|
}
|
|
15397
15397
|
|
|
@@ -39871,7 +39871,7 @@ $kendo-adaptive-actionsheet-footer-padding-x: k-spacing(4) !default;
|
|
|
39871
39871
|
}
|
|
39872
39872
|
|
|
39873
39873
|
.k-actionsheet-filter {
|
|
39874
|
-
width: calc(
|
|
39874
|
+
width: calc( 360px - #{$kendo-adaptive-actionsheet-titlebar-padding-x} * 2 );
|
|
39875
39875
|
}
|
|
39876
39876
|
.k-actionsheet-content,
|
|
39877
39877
|
.k-actionsheet-footer {
|
|
@@ -64582,7 +64582,7 @@ $kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
|
|
|
64582
64582
|
series-30: $kendo-series-30,
|
|
64583
64583
|
|
|
64584
64584
|
gauge-pointer: $kendo-color-primary,
|
|
64585
|
-
gauge-track: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-chart-bg ))
|
|
64585
|
+
gauge-track: if($kendo-enable-color-system, k-color( base-emphasis ), k-try-shade( $kendo-chart-bg ))
|
|
64586
64586
|
);
|
|
64587
64587
|
|
|
64588
64588
|
@each $name, $value in $exported {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-material",
|
|
3
3
|
"description": "Material theme for Kendo UI",
|
|
4
|
-
"version": "8.0.0",
|
|
4
|
+
"version": "8.0.1-dev.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -54,13 +54,13 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@progress/kendo-svg-icons": "3.0.0",
|
|
57
|
-
"@progress/kendo-theme-core": "8.0.0",
|
|
58
|
-
"@progress/kendo-theme-default": "8.0.0",
|
|
59
|
-
"@progress/kendo-theme-utils": "8.0.0"
|
|
57
|
+
"@progress/kendo-theme-core": "8.0.1-dev.0",
|
|
58
|
+
"@progress/kendo-theme-default": "8.0.1-dev.0",
|
|
59
|
+
"@progress/kendo-theme-utils": "8.0.1-dev.0"
|
|
60
60
|
},
|
|
61
61
|
"directories": {
|
|
62
62
|
"doc": "docs",
|
|
63
63
|
"lib": "lib"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "311995cf115b4f9239c891551c3f7d380eb22075"
|
|
66
66
|
}
|