@progress/kendo-theme-core 6.4.1-dev.1 → 6.5.0-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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-core",
3
3
  "description": "A collection of functions and mixins used for building themes for Kendo UI",
4
- "version": "6.4.1-dev.1",
4
+ "version": "6.5.0-dev.1",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -40,5 +40,5 @@
40
40
  "prepublishOnly": "node ../../scripts/themes-prepublish.js",
41
41
  "postpublish": "echo 'no postpublish for core theme'"
42
42
  },
43
- "gitHead": "6f485dfea68d56b41252d6545667f2839e1ac84e"
43
+ "gitHead": "6669ee878325bbdc367a4efc94ce2315e2b680e5"
44
44
  }
@@ -20,6 +20,10 @@
20
20
  /// @example scss - Usage
21
21
  /// @debug k-meta-function-exists( "k-string-replace" ); // => true
22
22
  @function k-meta-function-exists( $name ) {
23
+ @if $name == "" {
24
+ @return false;
25
+ }
26
+
23
27
  @return function-exists( $name );
24
28
  }
25
29