@progress/kendo-theme-utils 6.0.4-dev.0 → 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.
Files changed (2) hide show
  1. package/dist/all.scss +4 -4
  2. package/package.json +3 -3
package/dist/all.scss CHANGED
@@ -468,7 +468,7 @@ $kendo-color-level-step: 8% !default;
468
468
  }
469
469
 
470
470
  @function k-try-shade( $color, $level: 1 ) {
471
- $_dark-theme: if( k-meta-variable-exists( dark-theme ), $kendo-is-dark-theme, false );
471
+ $_dark-theme: if( k-meta-variable-exists( kendo-is-dark-theme ), $kendo-is-dark-theme, false );
472
472
 
473
473
  @if $_dark-theme {
474
474
  @return k-color-tint( $color, $level );
@@ -477,7 +477,7 @@ $kendo-color-level-step: 8% !default;
477
477
  @return k-color-shade( $color, $level );
478
478
  }
479
479
  @function k-try-tint( $color, $level: 1 ) {
480
- $_dark-theme: if( k-meta-variable-exists( dark-theme ), $kendo-is-dark-theme, false );
480
+ $_dark-theme: if( k-meta-variable-exists( kendo-is-dark-theme ), $kendo-is-dark-theme, false );
481
481
 
482
482
  @if $_dark-theme {
483
483
  @return k-color-shade( $color, $level );
@@ -488,7 +488,7 @@ $kendo-color-level-step: 8% !default;
488
488
 
489
489
 
490
490
  @function k-try-darken( $color, $amount ) {
491
- $_dark-theme: if( k-meta-variable-exists( dark-theme ), $kendo-is-dark-theme, false );
491
+ $_dark-theme: if( k-meta-variable-exists( kendo-is-dark-theme ), $kendo-is-dark-theme, false );
492
492
 
493
493
  @if $_dark-theme {
494
494
  @return k-color-lighten( $color, $amount );
@@ -497,7 +497,7 @@ $kendo-color-level-step: 8% !default;
497
497
  }
498
498
 
499
499
  @function k-try-lighten( $color, $amount ) {
500
- $_dark-theme: if( k-meta-variable-exists( dark-theme ), $kendo-is-dark-theme, false );
500
+ $_dark-theme: if( k-meta-variable-exists( kendo-is-dark-theme ), $kendo-is-dark-theme, false );
501
501
 
502
502
  @if $_dark-theme {
503
503
  @return k-color-darken( $color, $amount );
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-utils",
3
3
  "description": "Utility first library alongside Kendo UI",
4
- "version": "6.0.4-dev.0",
4
+ "version": "6.0.4-dev.1",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -41,7 +41,7 @@
41
41
  "postpublish": "echo 'no postpublish for utils'"
42
42
  },
43
43
  "dependencies": {
44
- "@progress/kendo-theme-core": "^6.0.4-dev.0"
44
+ "@progress/kendo-theme-core": "^6.0.4-dev.1"
45
45
  },
46
- "gitHead": "15583e94f67633d6680efd66700436332e389175"
46
+ "gitHead": "06ad9ba31573c1384dad684f03b818ee245247a5"
47
47
  }