@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/dist/all.scss +4 -0
- package/dist/meta/sassdoc-data.json +128 -128
- package/dist/meta/sassdoc-raw-data.json +128 -128
- package/package.json +2 -2
- package/scss/functions/_meta.import.scss +4 -0
package/dist/all.scss
CHANGED
|
@@ -1318,6 +1318,10 @@ $_kendo-escape-class-name: (
|
|
|
1318
1318
|
/// @example scss - Usage
|
|
1319
1319
|
/// @debug k-meta-function-exists( "k-string-replace" ); // => true
|
|
1320
1320
|
@function k-meta-function-exists( $name ) {
|
|
1321
|
+
@if $name == "" {
|
|
1322
|
+
@return false;
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1321
1325
|
@return function-exists( $name );
|
|
1322
1326
|
}
|
|
1323
1327
|
|