@progress/kendo-theme-default 6.0.3 → 6.0.4-dev.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.
- package/dist/all.scss +4 -4
- 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/dist/all.scss
CHANGED
|
@@ -472,7 +472,7 @@ $kendo-color-level-step: 8% !default;
|
|
|
472
472
|
}
|
|
473
473
|
|
|
474
474
|
@function k-try-shade( $color, $level: 1 ) {
|
|
475
|
-
$_dark-theme: if( k-meta-variable-exists( dark-theme ), $kendo-is-dark-theme, false );
|
|
475
|
+
$_dark-theme: if( k-meta-variable-exists( kendo-is-dark-theme ), $kendo-is-dark-theme, false );
|
|
476
476
|
|
|
477
477
|
@if $_dark-theme {
|
|
478
478
|
@return k-color-tint( $color, $level );
|
|
@@ -481,7 +481,7 @@ $kendo-color-level-step: 8% !default;
|
|
|
481
481
|
@return k-color-shade( $color, $level );
|
|
482
482
|
}
|
|
483
483
|
@function k-try-tint( $color, $level: 1 ) {
|
|
484
|
-
$_dark-theme: if( k-meta-variable-exists( dark-theme ), $kendo-is-dark-theme, false );
|
|
484
|
+
$_dark-theme: if( k-meta-variable-exists( kendo-is-dark-theme ), $kendo-is-dark-theme, false );
|
|
485
485
|
|
|
486
486
|
@if $_dark-theme {
|
|
487
487
|
@return k-color-shade( $color, $level );
|
|
@@ -492,7 +492,7 @@ $kendo-color-level-step: 8% !default;
|
|
|
492
492
|
|
|
493
493
|
|
|
494
494
|
@function k-try-darken( $color, $amount ) {
|
|
495
|
-
$_dark-theme: if( k-meta-variable-exists( dark-theme ), $kendo-is-dark-theme, false );
|
|
495
|
+
$_dark-theme: if( k-meta-variable-exists( kendo-is-dark-theme ), $kendo-is-dark-theme, false );
|
|
496
496
|
|
|
497
497
|
@if $_dark-theme {
|
|
498
498
|
@return k-color-lighten( $color, $amount );
|
|
@@ -501,7 +501,7 @@ $kendo-color-level-step: 8% !default;
|
|
|
501
501
|
}
|
|
502
502
|
|
|
503
503
|
@function k-try-lighten( $color, $amount ) {
|
|
504
|
-
$_dark-theme: if( k-meta-variable-exists( dark-theme ), $kendo-is-dark-theme, false );
|
|
504
|
+
$_dark-theme: if( k-meta-variable-exists( kendo-is-dark-theme ), $kendo-is-dark-theme, false );
|
|
505
505
|
|
|
506
506
|
@if $_dark-theme {
|
|
507
507
|
@return k-color-darken( $color, $amount );
|
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": "6.0.
|
|
4
|
+
"version": "6.0.4-dev.1",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@progress/kendo-font-icons": "1.2.0",
|
|
51
|
-
"@progress/kendo-theme-core": "^6.0.
|
|
52
|
-
"@progress/kendo-theme-utils": "^6.0.
|
|
51
|
+
"@progress/kendo-theme-core": "^6.0.4-dev.1",
|
|
52
|
+
"@progress/kendo-theme-utils": "^6.0.4-dev.1"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "06ad9ba31573c1384dad684f03b818ee245247a5"
|
|
55
55
|
}
|